diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-06 22:56:03 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-06 22:56:03 -0700 |
commit | c2f340a69cabe0fb7b9f02d1a2495927db225a06 (patch) | |
tree | dd9bc3125f833adf163c47542917ebc18b1acc56 /fs/exofs/Kbuild | |
parent | 3ddcd0569cd68f00f3beae9a7959b72918bb91f4 (diff) | |
parent | cf283ade08c454e884394a4720f22421dd33a715 (diff) | |
download | op-kernel-dev-c2f340a69cabe0fb7b9f02d1a2495927db225a06.zip op-kernel-dev-c2f340a69cabe0fb7b9f02d1a2495927db225a06.tar.gz |
Merge branch 'for-linus' of git://git.open-osd.org/linux-open-osd
* 'for-linus' of git://git.open-osd.org/linux-open-osd:
ore: Make ore its own module
exofs: Rename raid engine from exofs/ios.c => ore
exofs: ios: Move to a per inode components & device-table
exofs: Move exofs specific osd operations out of ios.c
exofs: Add offset/length to exofs_get_io_state
exofs: Fix truncate for the raid-groups case
exofs: Small cleanup of exofs_fill_super
exofs: BUG: Avoid sbi realloc
exofs: Remove pnfs-osd private definitions
nfs_xdr: Move nfs4_string definition out of #ifdef CONFIG_NFS_V4
Diffstat (limited to 'fs/exofs/Kbuild')
-rw-r--r-- | fs/exofs/Kbuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/exofs/Kbuild b/fs/exofs/Kbuild index 2d0f757..c5a5855 100644 --- a/fs/exofs/Kbuild +++ b/fs/exofs/Kbuild @@ -12,5 +12,8 @@ # Kbuild - Gets included from the Kernels Makefile and build system # -exofs-y := ios.o inode.o file.o symlink.o namei.o dir.o super.o +# ore module library +obj-$(CONFIG_ORE) += ore.o + +exofs-y := inode.o file.o symlink.o namei.o dir.o super.o obj-$(CONFIG_EXOFS_FS) += exofs.o |