2011-05-23 00:49:06 +08:00
|
|
|
/*
|
|
|
|
* pNFS Objects layout implementation over open-osd initiator library
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Panasas Inc. [year of first publication]
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Benny Halevy <bhalevy@panasas.com>
|
|
|
|
* Boaz Harrosh <bharrosh@panasas.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2
|
|
|
|
* See the file COPYING included with this distribution for more details.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the Panasas company nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
|
|
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
2011-11-01 06:04:19 +08:00
|
|
|
#include <scsi/osd_ore.h>
|
2011-05-23 00:50:20 +08:00
|
|
|
|
|
|
|
#include "objlayout.h"
|
2012-09-25 14:55:57 +08:00
|
|
|
#include "../internal.h"
|
2011-05-23 00:50:20 +08:00
|
|
|
|
|
|
|
#define NFSDBG_FACILITY NFSDBG_PNFS_LD
|
|
|
|
|
2011-05-27 02:45:34 +08:00
|
|
|
struct objio_dev_ent {
|
|
|
|
struct nfs4_deviceid_node id_node;
|
2011-11-01 06:04:19 +08:00
|
|
|
struct ore_dev od;
|
2011-05-27 02:45:34 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
objio_free_deviceid_node(struct nfs4_deviceid_node *d)
|
|
|
|
{
|
|
|
|
struct objio_dev_ent *de = container_of(d, struct objio_dev_ent, id_node);
|
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
dprintk("%s: free od=%p\n", __func__, de->od.od);
|
|
|
|
osduld_put_device(de->od.od);
|
2011-05-27 02:45:34 +08:00
|
|
|
kfree(de);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct objio_dev_ent *_dev_list_find(const struct nfs_server *nfss,
|
|
|
|
const struct nfs4_deviceid *d_id)
|
|
|
|
{
|
|
|
|
struct nfs4_deviceid_node *d;
|
|
|
|
struct objio_dev_ent *de;
|
|
|
|
|
|
|
|
d = nfs4_find_get_deviceid(nfss->pnfs_curr_ld, nfss->nfs_client, d_id);
|
|
|
|
if (!d)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
de = container_of(d, struct objio_dev_ent, id_node);
|
|
|
|
return de;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct objio_dev_ent *
|
|
|
|
_dev_list_add(const struct nfs_server *nfss,
|
|
|
|
const struct nfs4_deviceid *d_id, struct osd_dev *od,
|
|
|
|
gfp_t gfp_flags)
|
|
|
|
{
|
|
|
|
struct nfs4_deviceid_node *d;
|
|
|
|
struct objio_dev_ent *de = kzalloc(sizeof(*de), gfp_flags);
|
|
|
|
struct objio_dev_ent *n;
|
|
|
|
|
|
|
|
if (!de) {
|
|
|
|
dprintk("%s: -ENOMEM od=%p\n", __func__, od);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
dprintk("%s: Adding od=%p\n", __func__, od);
|
|
|
|
nfs4_init_deviceid_node(&de->id_node,
|
|
|
|
nfss->pnfs_curr_ld,
|
|
|
|
nfss->nfs_client,
|
|
|
|
d_id);
|
2011-11-01 06:04:19 +08:00
|
|
|
de->od.od = od;
|
2011-05-27 02:45:34 +08:00
|
|
|
|
|
|
|
d = nfs4_insert_deviceid_node(&de->id_node);
|
|
|
|
n = container_of(d, struct objio_dev_ent, id_node);
|
|
|
|
if (n != de) {
|
2011-11-01 06:04:19 +08:00
|
|
|
dprintk("%s: Race with other n->od=%p\n", __func__, n->od.od);
|
2011-05-27 02:45:34 +08:00
|
|
|
objio_free_deviceid_node(&de->id_node);
|
|
|
|
de = n;
|
|
|
|
}
|
|
|
|
|
|
|
|
return de;
|
|
|
|
}
|
|
|
|
|
2011-05-23 00:50:20 +08:00
|
|
|
struct objio_segment {
|
|
|
|
struct pnfs_layout_segment lseg;
|
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
struct ore_layout layout;
|
|
|
|
struct ore_components oc;
|
2011-05-23 00:50:20 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct objio_segment *
|
|
|
|
OBJIO_LSEG(struct pnfs_layout_segment *lseg)
|
|
|
|
{
|
|
|
|
return container_of(lseg, struct objio_segment, lseg);
|
|
|
|
}
|
|
|
|
|
2011-05-23 00:52:19 +08:00
|
|
|
struct objio_state {
|
|
|
|
/* Generic layer */
|
2011-11-01 06:03:35 +08:00
|
|
|
struct objlayout_io_res oir;
|
2011-05-23 00:52:19 +08:00
|
|
|
|
2011-11-01 05:47:32 +08:00
|
|
|
bool sync;
|
2011-11-01 06:15:38 +08:00
|
|
|
/*FIXME: Support for extra_bytes at ore_get_rw_state() */
|
|
|
|
struct ore_io_state *ios;
|
2011-05-23 00:52:19 +08:00
|
|
|
};
|
|
|
|
|
2011-05-27 02:45:34 +08:00
|
|
|
/* Send and wait for a get_device_info of devices in the layout,
|
|
|
|
then look them up with the osd_initiator library */
|
2011-11-01 06:04:19 +08:00
|
|
|
static int objio_devices_lookup(struct pnfs_layout_hdr *pnfslay,
|
|
|
|
struct objio_segment *objio_seg, unsigned c, struct nfs4_deviceid *d_id,
|
|
|
|
gfp_t gfp_flags)
|
2011-05-27 02:45:34 +08:00
|
|
|
{
|
|
|
|
struct pnfs_osd_deviceaddr *deviceaddr;
|
|
|
|
struct objio_dev_ent *ode;
|
|
|
|
struct osd_dev *od;
|
|
|
|
struct osd_dev_info odi;
|
2012-03-20 11:47:58 +08:00
|
|
|
bool retry_flag = true;
|
2011-05-27 02:45:34 +08:00
|
|
|
int err;
|
|
|
|
|
|
|
|
ode = _dev_list_find(NFS_SERVER(pnfslay->plh_inode), d_id);
|
2011-11-01 06:04:19 +08:00
|
|
|
if (ode) {
|
|
|
|
objio_seg->oc.ods[c] = &ode->od; /* must use container_of */
|
|
|
|
return 0;
|
|
|
|
}
|
2011-05-27 02:45:34 +08:00
|
|
|
|
|
|
|
err = objlayout_get_deviceinfo(pnfslay, d_id, &deviceaddr, gfp_flags);
|
|
|
|
if (unlikely(err)) {
|
|
|
|
dprintk("%s: objlayout_get_deviceinfo dev(%llx:%llx) =>%d\n",
|
|
|
|
__func__, _DEVID_LO(d_id), _DEVID_HI(d_id), err);
|
2011-11-01 06:04:19 +08:00
|
|
|
return err;
|
2011-05-27 02:45:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
odi.systemid_len = deviceaddr->oda_systemid.len;
|
|
|
|
if (odi.systemid_len > sizeof(odi.systemid)) {
|
2011-11-01 06:04:19 +08:00
|
|
|
dprintk("%s: odi.systemid_len > sizeof(systemid=%zd)\n",
|
|
|
|
__func__, sizeof(odi.systemid));
|
2011-05-27 02:45:34 +08:00
|
|
|
err = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
} else if (odi.systemid_len)
|
|
|
|
memcpy(odi.systemid, deviceaddr->oda_systemid.data,
|
|
|
|
odi.systemid_len);
|
|
|
|
odi.osdname_len = deviceaddr->oda_osdname.len;
|
|
|
|
odi.osdname = (u8 *)deviceaddr->oda_osdname.data;
|
|
|
|
|
|
|
|
if (!odi.osdname_len && !odi.systemid_len) {
|
|
|
|
dprintk("%s: !odi.osdname_len && !odi.systemid_len\n",
|
|
|
|
__func__);
|
|
|
|
err = -ENODEV;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2012-03-20 11:47:58 +08:00
|
|
|
retry_lookup:
|
2011-05-27 02:45:34 +08:00
|
|
|
od = osduld_info_lookup(&odi);
|
|
|
|
if (unlikely(IS_ERR(od))) {
|
|
|
|
err = PTR_ERR(od);
|
|
|
|
dprintk("%s: osduld_info_lookup => %d\n", __func__, err);
|
2012-03-20 11:47:58 +08:00
|
|
|
if (err == -ENODEV && retry_flag) {
|
|
|
|
err = objlayout_autologin(deviceaddr);
|
|
|
|
if (likely(!err)) {
|
|
|
|
retry_flag = false;
|
|
|
|
goto retry_lookup;
|
|
|
|
}
|
|
|
|
}
|
2011-05-27 02:45:34 +08:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ode = _dev_list_add(NFS_SERVER(pnfslay->plh_inode), d_id, od,
|
|
|
|
gfp_flags);
|
2011-11-01 06:04:19 +08:00
|
|
|
objio_seg->oc.ods[c] = &ode->od; /* must use container_of */
|
|
|
|
dprintk("Adding new dev_id(%llx:%llx)\n",
|
|
|
|
_DEVID_LO(d_id), _DEVID_HI(d_id));
|
2011-05-27 02:45:34 +08:00
|
|
|
out:
|
|
|
|
objlayout_put_deviceinfo(deviceaddr);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
static void copy_single_comp(struct ore_components *oc, unsigned c,
|
|
|
|
struct pnfs_osd_object_cred *src_comp)
|
2011-05-23 00:50:20 +08:00
|
|
|
{
|
2011-11-01 06:04:19 +08:00
|
|
|
struct ore_comp *ocomp = &oc->comps[c];
|
2011-05-23 00:50:20 +08:00
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
WARN_ON(src_comp->oc_cap_key.cred_len > 0); /* libosd is NO_SEC only */
|
|
|
|
WARN_ON(src_comp->oc_cap.cred_len > sizeof(ocomp->cred));
|
2011-05-23 00:50:20 +08:00
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
ocomp->obj.partition = src_comp->oc_object_id.oid_partition_id;
|
|
|
|
ocomp->obj.id = src_comp->oc_object_id.oid_object_id;
|
2011-05-23 00:50:20 +08:00
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
memcpy(ocomp->cred, src_comp->oc_cap.cred, sizeof(ocomp->cred));
|
|
|
|
}
|
|
|
|
|
2012-05-05 01:54:24 +08:00
|
|
|
static int __alloc_objio_seg(unsigned numdevs, gfp_t gfp_flags,
|
2011-11-01 06:04:19 +08:00
|
|
|
struct objio_segment **pseg)
|
|
|
|
{
|
pnfs-obj: Uglify objio_segment allocation for the sake of the principle :-(
At some past instance Linus Trovalds wrote:
> From: Linus Torvalds <torvalds@linux-foundation.org>
> commit a84a79e4d369a73c0130b5858199e949432da4c6 upstream.
>
> The size is always valid, but variable-length arrays generate worse code
> for no good reason (unless the function happens to be inlined and the
> compiler sees the length for the simple constant it is).
>
> Also, there seems to be some code generation problem on POWER, where
> Henrik Bakken reports that register r28 can get corrupted under some
> subtle circumstances (interrupt happening at the wrong time?). That all
> indicates some seriously broken compiler issues, but since variable
> length arrays are bad regardless, there's little point in trying to
> chase it down.
>
> "Just don't do that, then".
Since then any use of "variable length arrays" has become blasphemous.
Even in perfectly good, beautiful, perfectly safe code like the one
below where the variable length arrays are only used as a sizeof()
parameter, for type-safe dynamic structure allocations. GCC is not
executing any stack allocation code.
I have produced a small file which defines two functions main1(unsigned numdevs)
and main2(unsigned numdevs). main1 uses code as before with call to malloc
and main2 uses code as of after this patch. I compiled it as:
gcc -O2 -S see_asm.c
and here is what I get:
<see_asm.s>
main1:
.LFB7:
.cfi_startproc
mov %edi, %edi
leaq 4(%rdi,%rdi), %rdi
salq $3, %rdi
jmp malloc
.cfi_endproc
.LFE7:
.size main1, .-main1
.p2align 4,,15
.globl main2
.type main2, @function
main2:
.LFB8:
.cfi_startproc
mov %edi, %edi
addq $2, %rdi
salq $4, %rdi
jmp malloc
.cfi_endproc
.LFE8:
.size main2, .-main2
.section .text.startup,"ax",@progbits
.p2align 4,,15
</see_asm.s>
*Exact* same code !!!
So please seriously consider not accepting this patch and leave the
perfectly good code intact.
CC: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2012-03-14 11:44:26 +08:00
|
|
|
/* This is the in memory structure of the objio_segment
|
|
|
|
*
|
|
|
|
* struct __alloc_objio_segment {
|
|
|
|
* struct objio_segment olseg;
|
|
|
|
* struct ore_dev *ods[numdevs];
|
|
|
|
* struct ore_comp comps[numdevs];
|
|
|
|
* } *aolseg;
|
|
|
|
* NOTE: The code as above compiles and runs perfectly. It is elegant,
|
|
|
|
* type safe and compact. At some Past time Linus has decided he does not
|
|
|
|
* like variable length arrays, For the sake of this principal we uglify
|
|
|
|
* the code as below.
|
|
|
|
*/
|
|
|
|
struct objio_segment *lseg;
|
|
|
|
size_t lseg_size = sizeof(*lseg) +
|
|
|
|
numdevs * sizeof(lseg->oc.ods[0]) +
|
|
|
|
numdevs * sizeof(*lseg->oc.comps);
|
|
|
|
|
|
|
|
lseg = kzalloc(lseg_size, gfp_flags);
|
|
|
|
if (unlikely(!lseg)) {
|
2011-11-01 06:04:19 +08:00
|
|
|
dprintk("%s: Faild allocation numdevs=%d size=%zd\n", __func__,
|
pnfs-obj: Uglify objio_segment allocation for the sake of the principle :-(
At some past instance Linus Trovalds wrote:
> From: Linus Torvalds <torvalds@linux-foundation.org>
> commit a84a79e4d369a73c0130b5858199e949432da4c6 upstream.
>
> The size is always valid, but variable-length arrays generate worse code
> for no good reason (unless the function happens to be inlined and the
> compiler sees the length for the simple constant it is).
>
> Also, there seems to be some code generation problem on POWER, where
> Henrik Bakken reports that register r28 can get corrupted under some
> subtle circumstances (interrupt happening at the wrong time?). That all
> indicates some seriously broken compiler issues, but since variable
> length arrays are bad regardless, there's little point in trying to
> chase it down.
>
> "Just don't do that, then".
Since then any use of "variable length arrays" has become blasphemous.
Even in perfectly good, beautiful, perfectly safe code like the one
below where the variable length arrays are only used as a sizeof()
parameter, for type-safe dynamic structure allocations. GCC is not
executing any stack allocation code.
I have produced a small file which defines two functions main1(unsigned numdevs)
and main2(unsigned numdevs). main1 uses code as before with call to malloc
and main2 uses code as of after this patch. I compiled it as:
gcc -O2 -S see_asm.c
and here is what I get:
<see_asm.s>
main1:
.LFB7:
.cfi_startproc
mov %edi, %edi
leaq 4(%rdi,%rdi), %rdi
salq $3, %rdi
jmp malloc
.cfi_endproc
.LFE7:
.size main1, .-main1
.p2align 4,,15
.globl main2
.type main2, @function
main2:
.LFB8:
.cfi_startproc
mov %edi, %edi
addq $2, %rdi
salq $4, %rdi
jmp malloc
.cfi_endproc
.LFE8:
.size main2, .-main2
.section .text.startup,"ax",@progbits
.p2align 4,,15
</see_asm.s>
*Exact* same code !!!
So please seriously consider not accepting this patch and leave the
perfectly good code intact.
CC: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2012-03-14 11:44:26 +08:00
|
|
|
numdevs, lseg_size);
|
2011-11-01 06:04:19 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
pnfs-obj: Uglify objio_segment allocation for the sake of the principle :-(
At some past instance Linus Trovalds wrote:
> From: Linus Torvalds <torvalds@linux-foundation.org>
> commit a84a79e4d369a73c0130b5858199e949432da4c6 upstream.
>
> The size is always valid, but variable-length arrays generate worse code
> for no good reason (unless the function happens to be inlined and the
> compiler sees the length for the simple constant it is).
>
> Also, there seems to be some code generation problem on POWER, where
> Henrik Bakken reports that register r28 can get corrupted under some
> subtle circumstances (interrupt happening at the wrong time?). That all
> indicates some seriously broken compiler issues, but since variable
> length arrays are bad regardless, there's little point in trying to
> chase it down.
>
> "Just don't do that, then".
Since then any use of "variable length arrays" has become blasphemous.
Even in perfectly good, beautiful, perfectly safe code like the one
below where the variable length arrays are only used as a sizeof()
parameter, for type-safe dynamic structure allocations. GCC is not
executing any stack allocation code.
I have produced a small file which defines two functions main1(unsigned numdevs)
and main2(unsigned numdevs). main1 uses code as before with call to malloc
and main2 uses code as of after this patch. I compiled it as:
gcc -O2 -S see_asm.c
and here is what I get:
<see_asm.s>
main1:
.LFB7:
.cfi_startproc
mov %edi, %edi
leaq 4(%rdi,%rdi), %rdi
salq $3, %rdi
jmp malloc
.cfi_endproc
.LFE7:
.size main1, .-main1
.p2align 4,,15
.globl main2
.type main2, @function
main2:
.LFB8:
.cfi_startproc
mov %edi, %edi
addq $2, %rdi
salq $4, %rdi
jmp malloc
.cfi_endproc
.LFE8:
.size main2, .-main2
.section .text.startup,"ax",@progbits
.p2align 4,,15
</see_asm.s>
*Exact* same code !!!
So please seriously consider not accepting this patch and leave the
perfectly good code intact.
CC: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2012-03-14 11:44:26 +08:00
|
|
|
lseg->oc.numdevs = numdevs;
|
|
|
|
lseg->oc.single_comp = EC_MULTPLE_COMPS;
|
|
|
|
lseg->oc.ods = (void *)(lseg + 1);
|
|
|
|
lseg->oc.comps = (void *)(lseg->oc.ods + numdevs);
|
2011-11-01 06:04:19 +08:00
|
|
|
|
pnfs-obj: Uglify objio_segment allocation for the sake of the principle :-(
At some past instance Linus Trovalds wrote:
> From: Linus Torvalds <torvalds@linux-foundation.org>
> commit a84a79e4d369a73c0130b5858199e949432da4c6 upstream.
>
> The size is always valid, but variable-length arrays generate worse code
> for no good reason (unless the function happens to be inlined and the
> compiler sees the length for the simple constant it is).
>
> Also, there seems to be some code generation problem on POWER, where
> Henrik Bakken reports that register r28 can get corrupted under some
> subtle circumstances (interrupt happening at the wrong time?). That all
> indicates some seriously broken compiler issues, but since variable
> length arrays are bad regardless, there's little point in trying to
> chase it down.
>
> "Just don't do that, then".
Since then any use of "variable length arrays" has become blasphemous.
Even in perfectly good, beautiful, perfectly safe code like the one
below where the variable length arrays are only used as a sizeof()
parameter, for type-safe dynamic structure allocations. GCC is not
executing any stack allocation code.
I have produced a small file which defines two functions main1(unsigned numdevs)
and main2(unsigned numdevs). main1 uses code as before with call to malloc
and main2 uses code as of after this patch. I compiled it as:
gcc -O2 -S see_asm.c
and here is what I get:
<see_asm.s>
main1:
.LFB7:
.cfi_startproc
mov %edi, %edi
leaq 4(%rdi,%rdi), %rdi
salq $3, %rdi
jmp malloc
.cfi_endproc
.LFE7:
.size main1, .-main1
.p2align 4,,15
.globl main2
.type main2, @function
main2:
.LFB8:
.cfi_startproc
mov %edi, %edi
addq $2, %rdi
salq $4, %rdi
jmp malloc
.cfi_endproc
.LFE8:
.size main2, .-main2
.section .text.startup,"ax",@progbits
.p2align 4,,15
</see_asm.s>
*Exact* same code !!!
So please seriously consider not accepting this patch and leave the
perfectly good code intact.
CC: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
2012-03-14 11:44:26 +08:00
|
|
|
*pseg = lseg;
|
2011-11-01 06:04:19 +08:00
|
|
|
return 0;
|
2011-05-23 00:50:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int objio_alloc_lseg(struct pnfs_layout_segment **outp,
|
|
|
|
struct pnfs_layout_hdr *pnfslay,
|
|
|
|
struct pnfs_layout_range *range,
|
|
|
|
struct xdr_stream *xdr,
|
|
|
|
gfp_t gfp_flags)
|
|
|
|
{
|
|
|
|
struct objio_segment *objio_seg;
|
|
|
|
struct pnfs_osd_xdr_decode_layout_iter iter;
|
|
|
|
struct pnfs_osd_layout layout;
|
2011-11-01 06:04:19 +08:00
|
|
|
struct pnfs_osd_object_cred src_comp;
|
|
|
|
unsigned cur_comp;
|
2011-05-23 00:50:20 +08:00
|
|
|
int err;
|
|
|
|
|
|
|
|
err = pnfs_osd_xdr_decode_layout_map(&layout, &iter, xdr);
|
|
|
|
if (unlikely(err))
|
|
|
|
return err;
|
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
err = __alloc_objio_seg(layout.olo_num_comps, gfp_flags, &objio_seg);
|
2011-05-23 00:50:20 +08:00
|
|
|
if (unlikely(err))
|
|
|
|
return err;
|
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
objio_seg->layout.stripe_unit = layout.olo_map.odm_stripe_unit;
|
|
|
|
objio_seg->layout.group_width = layout.olo_map.odm_group_width;
|
|
|
|
objio_seg->layout.group_depth = layout.olo_map.odm_group_depth;
|
|
|
|
objio_seg->layout.mirrors_p1 = layout.olo_map.odm_mirror_cnt + 1;
|
|
|
|
objio_seg->layout.raid_algorithm = layout.olo_map.odm_raid_algorithm;
|
2011-05-23 00:50:20 +08:00
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
err = ore_verify_layout(layout.olo_map.odm_num_comps,
|
|
|
|
&objio_seg->layout);
|
2011-05-23 00:50:20 +08:00
|
|
|
if (unlikely(err))
|
|
|
|
goto err;
|
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
objio_seg->oc.first_dev = layout.olo_comps_index;
|
|
|
|
cur_comp = 0;
|
|
|
|
while (pnfs_osd_xdr_decode_layout_comp(&src_comp, &iter, xdr, &err)) {
|
|
|
|
copy_single_comp(&objio_seg->oc, cur_comp, &src_comp);
|
|
|
|
err = objio_devices_lookup(pnfslay, objio_seg, cur_comp,
|
|
|
|
&src_comp.oc_object_id.oid_device_id,
|
|
|
|
gfp_flags);
|
|
|
|
if (err)
|
|
|
|
goto err;
|
|
|
|
++cur_comp;
|
2011-05-23 00:50:20 +08:00
|
|
|
}
|
2011-11-01 06:04:19 +08:00
|
|
|
/* pnfs_osd_xdr_decode_layout_comp returns false on error */
|
|
|
|
if (unlikely(err))
|
|
|
|
goto err;
|
2011-05-26 02:25:29 +08:00
|
|
|
|
2011-05-23 00:50:20 +08:00
|
|
|
*outp = &objio_seg->lseg;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
|
|
|
kfree(objio_seg);
|
|
|
|
dprintk("%s: Error: return %d\n", __func__, err);
|
|
|
|
*outp = NULL;
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
void objio_free_lseg(struct pnfs_layout_segment *lseg)
|
|
|
|
{
|
2011-05-27 02:45:34 +08:00
|
|
|
int i;
|
2011-05-23 00:50:20 +08:00
|
|
|
struct objio_segment *objio_seg = OBJIO_LSEG(lseg);
|
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
for (i = 0; i < objio_seg->oc.numdevs; i++) {
|
|
|
|
struct ore_dev *od = objio_seg->oc.ods[i];
|
|
|
|
struct objio_dev_ent *ode;
|
|
|
|
|
|
|
|
if (!od)
|
2011-05-27 02:45:34 +08:00
|
|
|
break;
|
2011-11-01 06:04:19 +08:00
|
|
|
ode = container_of(od, typeof(*ode), od);
|
|
|
|
nfs4_put_deviceid_node(&ode->id_node);
|
2011-05-27 02:45:34 +08:00
|
|
|
}
|
2011-05-23 00:50:20 +08:00
|
|
|
kfree(objio_seg);
|
|
|
|
}
|
|
|
|
|
2011-11-01 05:47:32 +08:00
|
|
|
static int
|
2011-11-01 06:15:38 +08:00
|
|
|
objio_alloc_io_state(struct pnfs_layout_hdr *pnfs_layout_type, bool is_reading,
|
2011-11-01 05:47:32 +08:00
|
|
|
struct pnfs_layout_segment *lseg, struct page **pages, unsigned pgbase,
|
|
|
|
loff_t offset, size_t count, void *rpcdata, gfp_t gfp_flags,
|
|
|
|
struct objio_state **outp)
|
2011-05-23 00:52:19 +08:00
|
|
|
{
|
|
|
|
struct objio_segment *objio_seg = OBJIO_LSEG(lseg);
|
2011-11-01 06:15:38 +08:00
|
|
|
struct ore_io_state *ios;
|
|
|
|
int ret;
|
2011-11-01 05:47:32 +08:00
|
|
|
struct __alloc_objio_state {
|
|
|
|
struct objio_state objios;
|
2011-11-01 06:04:19 +08:00
|
|
|
struct pnfs_osd_ioerr ioerrs[objio_seg->oc.numdevs];
|
2011-11-01 05:47:32 +08:00
|
|
|
} *aos;
|
|
|
|
|
|
|
|
aos = kzalloc(sizeof(*aos), gfp_flags);
|
|
|
|
if (unlikely(!aos))
|
2011-05-23 00:52:19 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2011-11-01 06:04:19 +08:00
|
|
|
objlayout_init_ioerrs(&aos->objios.oir, objio_seg->oc.numdevs,
|
2011-11-01 05:47:32 +08:00
|
|
|
aos->ioerrs, rpcdata, pnfs_layout_type);
|
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
ret = ore_get_rw_state(&objio_seg->layout, &objio_seg->oc, is_reading,
|
|
|
|
offset, count, &ios);
|
|
|
|
if (unlikely(ret)) {
|
|
|
|
kfree(aos);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-11-01 05:47:32 +08:00
|
|
|
ios->pages = pages;
|
|
|
|
ios->pgbase = pgbase;
|
2011-11-01 06:15:38 +08:00
|
|
|
ios->private = aos;
|
2011-11-01 05:47:32 +08:00
|
|
|
BUG_ON(ios->nr_pages > (pgbase + count + PAGE_SIZE - 1) >> PAGE_SHIFT);
|
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
aos->objios.sync = 0;
|
|
|
|
aos->objios.ios = ios;
|
|
|
|
*outp = &aos->objios;
|
2011-05-23 00:52:19 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-11-01 06:03:35 +08:00
|
|
|
void objio_free_result(struct objlayout_io_res *oir)
|
2011-05-23 00:52:19 +08:00
|
|
|
{
|
2011-11-01 06:15:38 +08:00
|
|
|
struct objio_state *objios = container_of(oir, struct objio_state, oir);
|
2011-05-23 00:52:19 +08:00
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
ore_put_io_state(objios->ios);
|
|
|
|
kfree(objios);
|
2011-05-23 00:52:19 +08:00
|
|
|
}
|
|
|
|
|
2011-05-27 02:49:46 +08:00
|
|
|
enum pnfs_osd_errno osd_pri_2_pnfs_err(enum osd_err_priority oep)
|
|
|
|
{
|
|
|
|
switch (oep) {
|
|
|
|
case OSD_ERR_PRI_NO_ERROR:
|
|
|
|
return (enum pnfs_osd_errno)0;
|
|
|
|
|
|
|
|
case OSD_ERR_PRI_CLEAR_PAGES:
|
|
|
|
BUG_ON(1);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case OSD_ERR_PRI_RESOURCE:
|
|
|
|
return PNFS_OSD_ERR_RESOURCE;
|
|
|
|
case OSD_ERR_PRI_BAD_CRED:
|
|
|
|
return PNFS_OSD_ERR_BAD_CRED;
|
|
|
|
case OSD_ERR_PRI_NO_ACCESS:
|
|
|
|
return PNFS_OSD_ERR_NO_ACCESS;
|
|
|
|
case OSD_ERR_PRI_UNREACHABLE:
|
|
|
|
return PNFS_OSD_ERR_UNREACHABLE;
|
|
|
|
case OSD_ERR_PRI_NOT_FOUND:
|
|
|
|
return PNFS_OSD_ERR_NOT_FOUND;
|
|
|
|
case OSD_ERR_PRI_NO_SPACE:
|
|
|
|
return PNFS_OSD_ERR_NO_SPACE;
|
|
|
|
default:
|
|
|
|
WARN_ON(1);
|
|
|
|
/* fallthrough */
|
|
|
|
case OSD_ERR_PRI_EIO:
|
|
|
|
return PNFS_OSD_ERR_EIO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
static void __on_dev_error(struct ore_io_state *ios,
|
2011-11-01 06:04:19 +08:00
|
|
|
struct ore_dev *od, unsigned dev_index, enum osd_err_priority oep,
|
|
|
|
u64 dev_offset, u64 dev_len)
|
|
|
|
{
|
|
|
|
struct objio_state *objios = ios->private;
|
|
|
|
struct pnfs_osd_objid pooid;
|
|
|
|
struct objio_dev_ent *ode = container_of(od, typeof(*ode), od);
|
|
|
|
/* FIXME: what to do with more-then-one-group layouts. We need to
|
|
|
|
* translate from ore_io_state index to oc->comps index
|
|
|
|
*/
|
|
|
|
unsigned comp = dev_index;
|
|
|
|
|
|
|
|
pooid.oid_device_id = ode->id_node.deviceid;
|
|
|
|
pooid.oid_partition_id = ios->oc->comps[comp].obj.partition;
|
|
|
|
pooid.oid_object_id = ios->oc->comps[comp].obj.id;
|
|
|
|
|
|
|
|
objlayout_io_set_result(&objios->oir, comp,
|
|
|
|
&pooid, osd_pri_2_pnfs_err(oep),
|
2011-11-01 06:15:38 +08:00
|
|
|
dev_offset, dev_len, !ios->reading);
|
2011-11-01 06:04:19 +08:00
|
|
|
}
|
|
|
|
|
2011-05-23 00:52:19 +08:00
|
|
|
/*
|
|
|
|
* read
|
|
|
|
*/
|
2011-11-01 06:15:38 +08:00
|
|
|
static void _read_done(struct ore_io_state *ios, void *private)
|
2011-05-23 00:52:19 +08:00
|
|
|
{
|
2011-11-01 06:15:38 +08:00
|
|
|
struct objio_state *objios = private;
|
2011-05-23 00:52:19 +08:00
|
|
|
ssize_t status;
|
2011-11-01 06:15:38 +08:00
|
|
|
int ret = ore_check_io(ios, &__on_dev_error);
|
2011-05-23 00:52:19 +08:00
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
/* FIXME: _io_free(ios) can we dealocate the libosd resources; */
|
2011-05-23 00:52:19 +08:00
|
|
|
|
|
|
|
if (likely(!ret))
|
|
|
|
status = ios->length;
|
|
|
|
else
|
|
|
|
status = ret;
|
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
objlayout_read_done(&objios->oir, status, objios->sync);
|
2011-05-23 00:52:19 +08:00
|
|
|
}
|
|
|
|
|
2011-11-01 05:47:32 +08:00
|
|
|
int objio_read_pagelist(struct nfs_read_data *rdata)
|
2011-05-23 00:52:19 +08:00
|
|
|
{
|
2012-04-21 02:47:44 +08:00
|
|
|
struct nfs_pgio_header *hdr = rdata->header;
|
2011-11-01 06:15:38 +08:00
|
|
|
struct objio_state *objios;
|
2011-05-23 00:52:19 +08:00
|
|
|
int ret;
|
|
|
|
|
2012-04-21 02:47:44 +08:00
|
|
|
ret = objio_alloc_io_state(NFS_I(hdr->inode)->layout, true,
|
|
|
|
hdr->lseg, rdata->args.pages, rdata->args.pgbase,
|
2011-11-01 05:47:32 +08:00
|
|
|
rdata->args.offset, rdata->args.count, rdata,
|
2011-11-01 06:15:38 +08:00
|
|
|
GFP_KERNEL, &objios);
|
2011-05-23 00:52:19 +08:00
|
|
|
if (unlikely(ret))
|
|
|
|
return ret;
|
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
objios->ios->done = _read_done;
|
|
|
|
dprintk("%s: offset=0x%llx length=0x%x\n", __func__,
|
|
|
|
rdata->args.offset, rdata->args.count);
|
2012-06-08 10:29:40 +08:00
|
|
|
ret = ore_read(objios->ios);
|
|
|
|
if (unlikely(ret))
|
|
|
|
objio_free_result(&objios->oir);
|
|
|
|
return ret;
|
2011-05-23 00:52:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* write
|
|
|
|
*/
|
2011-11-01 06:15:38 +08:00
|
|
|
static void _write_done(struct ore_io_state *ios, void *private)
|
2011-05-23 00:52:19 +08:00
|
|
|
{
|
2011-11-01 06:15:38 +08:00
|
|
|
struct objio_state *objios = private;
|
2011-05-23 00:52:19 +08:00
|
|
|
ssize_t status;
|
2011-11-01 06:15:38 +08:00
|
|
|
int ret = ore_check_io(ios, &__on_dev_error);
|
2011-05-23 00:52:19 +08:00
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
/* FIXME: _io_free(ios) can we dealocate the libosd resources; */
|
2011-05-23 00:52:19 +08:00
|
|
|
|
|
|
|
if (likely(!ret)) {
|
|
|
|
/* FIXME: should be based on the OSD's persistence model
|
|
|
|
* See OSD2r05 Section 4.13 Data persistence model */
|
2011-11-01 06:15:38 +08:00
|
|
|
objios->oir.committed = NFS_FILE_SYNC;
|
2011-05-23 00:52:19 +08:00
|
|
|
status = ios->length;
|
|
|
|
} else {
|
|
|
|
status = ret;
|
|
|
|
}
|
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
objlayout_write_done(&objios->oir, status, objios->sync);
|
2011-05-23 00:52:19 +08:00
|
|
|
}
|
|
|
|
|
2011-11-01 06:16:54 +08:00
|
|
|
static struct page *__r4w_get_page(void *priv, u64 offset, bool *uptodate)
|
|
|
|
{
|
|
|
|
struct objio_state *objios = priv;
|
|
|
|
struct nfs_write_data *wdata = objios->oir.rpcdata;
|
2012-04-21 02:47:44 +08:00
|
|
|
struct address_space *mapping = wdata->header->inode->i_mapping;
|
2011-11-01 06:16:54 +08:00
|
|
|
pgoff_t index = offset / PAGE_SIZE;
|
2012-06-08 07:02:30 +08:00
|
|
|
struct page *page;
|
|
|
|
loff_t i_size = i_size_read(wdata->header->inode);
|
2011-11-01 06:16:54 +08:00
|
|
|
|
2012-06-08 07:02:30 +08:00
|
|
|
if (offset >= i_size) {
|
|
|
|
*uptodate = true;
|
|
|
|
dprintk("%s: g_zero_page index=0x%lx\n", __func__, index);
|
|
|
|
return ZERO_PAGE(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
page = find_get_page(mapping, index);
|
2011-11-01 06:16:54 +08:00
|
|
|
if (!page) {
|
2012-04-21 02:47:44 +08:00
|
|
|
page = find_or_create_page(mapping, index, GFP_NOFS);
|
2011-11-01 06:16:54 +08:00
|
|
|
if (unlikely(!page)) {
|
|
|
|
dprintk("%s: grab_cache_page Failed index=0x%lx\n",
|
|
|
|
__func__, index);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
unlock_page(page);
|
|
|
|
}
|
|
|
|
if (PageDirty(page) || PageWriteback(page))
|
|
|
|
*uptodate = true;
|
|
|
|
else
|
|
|
|
*uptodate = PageUptodate(page);
|
|
|
|
dprintk("%s: index=0x%lx uptodate=%d\n", __func__, index, *uptodate);
|
|
|
|
return page;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __r4w_put_page(void *priv, struct page *page)
|
|
|
|
{
|
2012-06-08 07:02:30 +08:00
|
|
|
dprintk("%s: index=0x%lx\n", __func__,
|
|
|
|
(page == ZERO_PAGE(0)) ? -1UL : page->index);
|
|
|
|
if (ZERO_PAGE(0) != page)
|
|
|
|
page_cache_release(page);
|
2011-11-01 06:16:54 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct _ore_r4w_op _r4w_op = {
|
|
|
|
.get_page = &__r4w_get_page,
|
|
|
|
.put_page = &__r4w_put_page,
|
|
|
|
};
|
|
|
|
|
2011-11-01 05:47:32 +08:00
|
|
|
int objio_write_pagelist(struct nfs_write_data *wdata, int how)
|
2011-05-23 00:52:19 +08:00
|
|
|
{
|
2012-04-21 02:47:44 +08:00
|
|
|
struct nfs_pgio_header *hdr = wdata->header;
|
2011-11-01 06:15:38 +08:00
|
|
|
struct objio_state *objios;
|
2011-05-23 00:52:19 +08:00
|
|
|
int ret;
|
|
|
|
|
2012-04-21 02:47:44 +08:00
|
|
|
ret = objio_alloc_io_state(NFS_I(hdr->inode)->layout, false,
|
|
|
|
hdr->lseg, wdata->args.pages, wdata->args.pgbase,
|
2011-11-01 05:47:32 +08:00
|
|
|
wdata->args.offset, wdata->args.count, wdata, GFP_NOFS,
|
2011-11-01 06:15:38 +08:00
|
|
|
&objios);
|
2011-11-01 05:47:32 +08:00
|
|
|
if (unlikely(ret))
|
|
|
|
return ret;
|
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
objios->sync = 0 != (how & FLUSH_SYNC);
|
2011-11-01 06:16:54 +08:00
|
|
|
objios->ios->r4w = &_r4w_op;
|
2011-11-01 05:47:32 +08:00
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
if (!objios->sync)
|
|
|
|
objios->ios->done = _write_done;
|
|
|
|
|
|
|
|
dprintk("%s: offset=0x%llx length=0x%x\n", __func__,
|
|
|
|
wdata->args.offset, wdata->args.count);
|
|
|
|
ret = ore_write(objios->ios);
|
2012-06-08 10:29:40 +08:00
|
|
|
if (unlikely(ret)) {
|
|
|
|
objio_free_result(&objios->oir);
|
2011-05-23 00:52:19 +08:00
|
|
|
return ret;
|
2012-06-08 10:29:40 +08:00
|
|
|
}
|
2011-05-23 00:52:19 +08:00
|
|
|
|
2011-11-01 06:15:38 +08:00
|
|
|
if (objios->sync)
|
|
|
|
_write_done(objios->ios, objios);
|
|
|
|
|
|
|
|
return 0;
|
2011-05-23 00:52:19 +08:00
|
|
|
}
|
|
|
|
|
2011-05-26 02:25:29 +08:00
|
|
|
static bool objio_pg_test(struct nfs_pageio_descriptor *pgio,
|
|
|
|
struct nfs_page *prev, struct nfs_page *req)
|
|
|
|
{
|
|
|
|
if (!pnfs_generic_pg_test(pgio, prev, req))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return pgio->pg_count + req->wb_bytes <=
|
2012-08-02 20:38:23 +08:00
|
|
|
(unsigned long)pgio->pg_layout_private;
|
|
|
|
}
|
|
|
|
|
|
|
|
void objio_init_read(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
|
|
|
|
{
|
|
|
|
pnfs_generic_pg_init_read(pgio, req);
|
|
|
|
if (unlikely(pgio->pg_lseg == NULL))
|
|
|
|
return; /* Not pNFS */
|
|
|
|
|
|
|
|
pgio->pg_layout_private = (void *)
|
|
|
|
OBJIO_LSEG(pgio->pg_lseg)->layout.max_io_length;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool aligned_on_raid_stripe(u64 offset, struct ore_layout *layout,
|
|
|
|
unsigned long *stripe_end)
|
|
|
|
{
|
|
|
|
u32 stripe_off;
|
|
|
|
unsigned stripe_size;
|
|
|
|
|
|
|
|
if (layout->raid_algorithm == PNFS_OSD_RAID_0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
stripe_size = layout->stripe_unit *
|
|
|
|
(layout->group_width - layout->parity);
|
|
|
|
|
|
|
|
div_u64_rem(offset, stripe_size, &stripe_off);
|
|
|
|
if (!stripe_off)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
*stripe_end = stripe_size - stripe_off;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void objio_init_write(struct nfs_pageio_descriptor *pgio, struct nfs_page *req)
|
|
|
|
{
|
|
|
|
unsigned long stripe_end = 0;
|
2012-09-25 14:55:57 +08:00
|
|
|
u64 wb_size;
|
2012-08-02 20:38:23 +08:00
|
|
|
|
2012-09-25 14:55:57 +08:00
|
|
|
if (pgio->pg_dreq == NULL)
|
|
|
|
wb_size = i_size_read(pgio->pg_inode) - req_offset(req);
|
|
|
|
else
|
|
|
|
wb_size = nfs_dreq_bytes_left(pgio->pg_dreq);
|
|
|
|
|
|
|
|
pnfs_generic_pg_init_write(pgio, req, wb_size);
|
2012-08-02 20:38:23 +08:00
|
|
|
if (unlikely(pgio->pg_lseg == NULL))
|
|
|
|
return; /* Not pNFS */
|
|
|
|
|
|
|
|
if (req->wb_offset ||
|
|
|
|
!aligned_on_raid_stripe(req->wb_index * PAGE_SIZE,
|
|
|
|
&OBJIO_LSEG(pgio->pg_lseg)->layout,
|
|
|
|
&stripe_end)) {
|
|
|
|
pgio->pg_layout_private = (void *)stripe_end;
|
|
|
|
} else {
|
|
|
|
pgio->pg_layout_private = (void *)
|
|
|
|
OBJIO_LSEG(pgio->pg_lseg)->layout.max_io_length;
|
|
|
|
}
|
2011-05-26 02:25:29 +08:00
|
|
|
}
|
|
|
|
|
2011-06-11 01:30:23 +08:00
|
|
|
static const struct nfs_pageio_ops objio_pg_read_ops = {
|
2012-08-02 20:38:23 +08:00
|
|
|
.pg_init = objio_init_read,
|
2011-06-11 01:30:23 +08:00
|
|
|
.pg_test = objio_pg_test,
|
2011-07-14 03:58:28 +08:00
|
|
|
.pg_doio = pnfs_generic_pg_readpages,
|
2011-06-11 01:30:23 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct nfs_pageio_ops objio_pg_write_ops = {
|
2012-08-02 20:38:23 +08:00
|
|
|
.pg_init = objio_init_write,
|
2011-06-11 01:30:23 +08:00
|
|
|
.pg_test = objio_pg_test,
|
2011-07-14 03:59:19 +08:00
|
|
|
.pg_doio = pnfs_generic_pg_writepages,
|
2011-06-11 01:30:23 +08:00
|
|
|
};
|
|
|
|
|
2011-05-23 00:49:06 +08:00
|
|
|
static struct pnfs_layoutdriver_type objlayout_type = {
|
|
|
|
.id = LAYOUT_OSD2_OBJECTS,
|
|
|
|
.name = "LAYOUT_OSD2_OBJECTS",
|
2012-01-06 15:31:20 +08:00
|
|
|
.flags = PNFS_LAYOUTRET_ON_SETATTR |
|
|
|
|
PNFS_LAYOUTRET_ON_ERROR,
|
2011-05-23 00:50:20 +08:00
|
|
|
|
2011-05-23 00:51:48 +08:00
|
|
|
.alloc_layout_hdr = objlayout_alloc_layout_hdr,
|
|
|
|
.free_layout_hdr = objlayout_free_layout_hdr,
|
|
|
|
|
2011-05-23 00:50:20 +08:00
|
|
|
.alloc_lseg = objlayout_alloc_lseg,
|
|
|
|
.free_lseg = objlayout_free_lseg,
|
2011-05-27 02:45:34 +08:00
|
|
|
|
2011-05-23 00:52:19 +08:00
|
|
|
.read_pagelist = objlayout_read_pagelist,
|
|
|
|
.write_pagelist = objlayout_write_pagelist,
|
2011-06-11 01:30:23 +08:00
|
|
|
.pg_read_ops = &objio_pg_read_ops,
|
|
|
|
.pg_write_ops = &objio_pg_write_ops,
|
2011-05-23 00:52:19 +08:00
|
|
|
|
2011-05-27 02:45:34 +08:00
|
|
|
.free_deviceid_node = objio_free_deviceid_node,
|
2011-05-27 02:49:46 +08:00
|
|
|
|
2011-05-23 00:54:13 +08:00
|
|
|
.encode_layoutcommit = objlayout_encode_layoutcommit,
|
2011-05-27 02:49:46 +08:00
|
|
|
.encode_layoutreturn = objlayout_encode_layoutreturn,
|
2011-05-23 00:49:06 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("pNFS Layout Driver for OSD2 objects");
|
|
|
|
MODULE_AUTHOR("Benny Halevy <bhalevy@panasas.com>");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
|
|
|
static int __init
|
|
|
|
objlayout_init(void)
|
|
|
|
{
|
|
|
|
int ret = pnfs_register_layoutdriver(&objlayout_type);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
printk(KERN_INFO
|
2012-01-27 02:32:23 +08:00
|
|
|
"NFS: %s: Registering OSD pNFS Layout Driver failed: error=%d\n",
|
2011-05-23 00:49:06 +08:00
|
|
|
__func__, ret);
|
|
|
|
else
|
2012-01-27 02:32:23 +08:00
|
|
|
printk(KERN_INFO "NFS: %s: Registered OSD pNFS Layout Driver\n",
|
2011-05-23 00:49:06 +08:00
|
|
|
__func__);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit
|
|
|
|
objlayout_exit(void)
|
|
|
|
{
|
|
|
|
pnfs_unregister_layoutdriver(&objlayout_type);
|
2012-01-27 02:32:23 +08:00
|
|
|
printk(KERN_INFO "NFS: %s: Unregistered OSD pNFS Layout Driver\n",
|
2011-05-23 00:49:06 +08:00
|
|
|
__func__);
|
|
|
|
}
|
|
|
|
|
2011-07-16 07:18:42 +08:00
|
|
|
MODULE_ALIAS("nfs-layouttype4-2");
|
|
|
|
|
2011-05-23 00:49:06 +08:00
|
|
|
module_init(objlayout_init);
|
|
|
|
module_exit(objlayout_exit);
|