After commit a97c9bf33f4612e2aed6f000f6b1d268b6814f3c (fix cramfs making duplicate entries in inode cache) in kernel 2.6.14, named-pipe on cramfs does not work properly. It seems the commit make all named-pipe on cramfs share their inode (and named-pipe buffer). Is this fix correct? diff --git a/fs/cramfs/inode.c b/fs/cramfs/inode.c index 0c3b618..87754ff 100644 --- a/fs/cramfs/inode.c +++ b/fs/cramfs/inode.c @@ -61,6 +61,9 @@ static int cramfs_iget5_test(struct inode *inode, void *opaque) (inode->i_rdev != old_decode_dev(cramfs_inode->size))) return 0; /* does not match */ + if (S_ISFIFO(inode->i_mode)) + return 0; /* does not match */ + return 1; /* matches */ } -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html