search for: generic_drop_inode

Displaying 3 results from an estimated 3 matches for "generic_drop_inode".

2005 Jul 18
2
RH4 EL and the latest ocfs2 source
it would seem that the future ocfs2 (0.99.16>) builds will not support =< 2.6.12 kernels "out of the box" or am i missing something? 0.99.13 will build with a RHEL4 kernel, but later vers fail with the configure check on generic_drop_inode. the patch to fix it seems simple enough, however it seems that even if this was an rpm, youd have to rebuild your kernel before proceeding. Network/Systems Engineer www.g1.com Here is a really great OS www.freebsd.org checkout also: www.openbsd.org www.dragonflybsd.org www.netbsd.org NOT...
2013 Feb 20
1
[PATCH] Btrfs: fix cleaner thread not working with inode cache option
...uct inode *inode) { struct btrfs_root *root = BTRFS_I(inode)->root; + /* the snap/subvol tree is on deleting */ if (btrfs_root_refs(&root->root_item) == 0 && - !btrfs_is_free_space_inode(inode)) + root != root->fs_info->tree_root) return 1; else return generic_drop_inode(inode); diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index a31cd93..375f31f 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -2171,6 +2171,12 @@ out_unlock: shrink_dcache_sb(root->fs_info->sb); btrfs_invalidate_inodes(dest); d_delete(dentry); + + /* the last ref */ + if...
2007 Apr 15
0
[PATCH] Fix configure script to allow split build/source directories
...kernel. When I specify ./configure --with-kernel=/usr/src/linux-obj/x86_64/smp \ --with-kernel-source=/usr/src/linux it fails, since /usr/src/linux doesn't contain a configured kernel. I used KERNELBUILD, rather than just switching KERNELINC, because other tests (like the one for generic_drop_inode being exported) actually need to look at the full includes for the kernel. - -Jeff diff -ruNpX dontdiff scratch/trees/ocfs2-1.2/configure.in ocfs2-1.2.5.devel/configure.in - --- scratch/trees/ocfs2-1.2/configure.in 2007-03-27 16:22:52.000000000 -0400 +++ ocfs2-1.2.5.devel/configure.in 2007-04-15...