diff options
author | Benny Halevy <bhalevy@panasas.com> | 2011-05-22 18:49:06 +0200 |
---|---|---|
committer | Boaz Harrosh <bharrosh@panasas.com> | 2011-05-29 19:52:35 +0200 |
commit | c93407d03c3ccf60b33a309e5fcd41cd98969901 (patch) | |
tree | 9ef9cfb8a2c8dd7ae05960469bfef0d396363dc4 /fs/nfs/objlayout/Kbuild | |
parent | pnfs: client stats (diff) | |
download | linux-c93407d03c3ccf60b33a309e5fcd41cd98969901.tar.xz linux-c93407d03c3ccf60b33a309e5fcd41cd98969901.zip |
pnfs-obj: objlayoutdriver module skeleton
* Define the PNFS_OBJLAYOUT Kconfig option in the nfs
master Kconfig file.
* Add the objlayout driver to the Kernel's Kbuild system.
* Add the fs/nfs/objlayout/Kbuild file for building the
objlayoutdriver.ko driver
* Define fs/nfs/objlayout/objio_osd.c, register the driver on module
initialization and unregister on exit.
[pnfs-obj: remove of CONFIG_PNFS fallout]
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
[added "unsure" clause]
[depend on NFS_V4_1]
Signed-off-by: Benny Halevy <bhalevy@panasas.com>
Diffstat (limited to 'fs/nfs/objlayout/Kbuild')
-rw-r--r-- | fs/nfs/objlayout/Kbuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/nfs/objlayout/Kbuild b/fs/nfs/objlayout/Kbuild new file mode 100644 index 000000000000..2e5b9a44773c --- /dev/null +++ b/fs/nfs/objlayout/Kbuild @@ -0,0 +1,5 @@ +# +# Makefile for the pNFS Objects Layout Driver kernel module +# +objlayoutdriver-y := objio_osd.o +obj-$(CONFIG_PNFS_OBJLAYOUT) += objlayoutdriver.o |