-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 252899 b: refs/heads/master c: 09f5bf4 h: refs/heads/master i: 252897: 83791f8 252895: fb879d0 v: v3
- Loading branch information
Boaz Harrosh
committed
May 29, 2011
1 parent
f8d2ced
commit b5a3bad
Showing
5 changed files
with
342 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: f1bc893a89d012649e4e7f43575b2c290e08ee42 | ||
refs/heads/master: 09f5bf4e6d0607399c16ec7a2d8d166f31086686 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# | ||
# Makefile for the pNFS Objects Layout Driver kernel module | ||
# | ||
objlayoutdriver-y := objio_osd.o pnfs_osd_xdr_cli.o | ||
objlayoutdriver-y := objio_osd.o pnfs_osd_xdr_cli.o objlayout.o | ||
obj-$(CONFIG_PNFS_OBJLAYOUT) += objlayoutdriver.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* | ||
* pNFS Objects layout driver high level definitions | ||
* | ||
* Copyright (C) 2007 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 <scsi/osd_initiator.h> | ||
#include "objlayout.h" | ||
|
||
#define NFSDBG_FACILITY NFSDBG_PNFS_LD | ||
/* | ||
* Unmarshall layout and store it in pnfslay. | ||
*/ | ||
struct pnfs_layout_segment * | ||
objlayout_alloc_lseg(struct pnfs_layout_hdr *pnfslay, | ||
struct nfs4_layoutget_res *lgr, | ||
gfp_t gfp_flags) | ||
{ | ||
int status = -ENOMEM; | ||
struct xdr_stream stream; | ||
struct xdr_buf buf = { | ||
.pages = lgr->layoutp->pages, | ||
.page_len = lgr->layoutp->len, | ||
.buflen = lgr->layoutp->len, | ||
.len = lgr->layoutp->len, | ||
}; | ||
struct page *scratch; | ||
struct pnfs_layout_segment *lseg; | ||
|
||
dprintk("%s: Begin pnfslay %p\n", __func__, pnfslay); | ||
|
||
scratch = alloc_page(gfp_flags); | ||
if (!scratch) | ||
goto err_nofree; | ||
|
||
xdr_init_decode(&stream, &buf, NULL); | ||
xdr_set_scratch_buffer(&stream, page_address(scratch), PAGE_SIZE); | ||
|
||
status = objio_alloc_lseg(&lseg, pnfslay, &lgr->range, &stream, gfp_flags); | ||
if (unlikely(status)) { | ||
dprintk("%s: objio_alloc_lseg Return err %d\n", __func__, | ||
status); | ||
goto err; | ||
} | ||
|
||
__free_page(scratch); | ||
|
||
dprintk("%s: Return %p\n", __func__, lseg); | ||
return lseg; | ||
|
||
err: | ||
__free_page(scratch); | ||
err_nofree: | ||
dprintk("%s: Err Return=>%d\n", __func__, status); | ||
return ERR_PTR(status); | ||
} | ||
|
||
/* | ||
* Free a layout segement | ||
*/ | ||
void | ||
objlayout_free_lseg(struct pnfs_layout_segment *lseg) | ||
{ | ||
dprintk("%s: freeing layout segment %p\n", __func__, lseg); | ||
|
||
if (unlikely(!lseg)) | ||
return; | ||
|
||
objio_free_lseg(lseg); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Data types and function declerations for interfacing with the | ||
* pNFS standard object layout driver. | ||
* | ||
* Copyright (C) 2007 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. | ||
*/ | ||
|
||
#ifndef _OBJLAYOUT_H | ||
#define _OBJLAYOUT_H | ||
|
||
#include <linux/nfs_fs.h> | ||
#include <linux/pnfs_osd_xdr.h> | ||
#include "../pnfs.h" | ||
|
||
/* | ||
* Raid engine I/O API | ||
*/ | ||
extern 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); | ||
extern void objio_free_lseg(struct pnfs_layout_segment *lseg); | ||
|
||
/* | ||
* exported generic objects function vectors | ||
*/ | ||
extern struct pnfs_layout_segment *objlayout_alloc_lseg( | ||
struct pnfs_layout_hdr *, | ||
struct nfs4_layoutget_res *, | ||
gfp_t gfp_flags); | ||
extern void objlayout_free_lseg(struct pnfs_layout_segment *); | ||
|
||
#endif /* _OBJLAYOUT_H */ |