search for: btrfs_symlink_inode_operations

Displaying 2 results from an estimated 2 matches for "btrfs_symlink_inode_operations".

2007 Jun 29
2
Mknod: Operation not permitted
When trying to move my root to a btrfs filesystem, I found a missing feature (or a bug). It's not possible to create device files. To reproduce, run this on a btrfs filesystem: mknod test c 1 1 result: mknod: `test': Operation not permitted Frank
2009 Oct 02
0
[PATCH] btrfs: constify dentry_operations
...ry_operations btrfs_dentry_operations; +extern const struct dentry_operations btrfs_dentry_operations; /* ioctl.c */ long btrfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg); --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -5805,6 +5805,6 @@ static const struct inode_operations btrfs_symlink_inode_operations = { .removexattr = btrfs_removexattr, }; -struct dentry_operations btrfs_dentry_operations = { +const struct dentry_operations btrfs_dentry_operations = { .d_delete = btrfs_dentry_delete, }; -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a...