diff options
author | Subodh Nijsure <snijsure@grid-net.com> | 2014-10-31 13:50:29 -0500 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2015-01-28 16:08:46 +0100 |
commit | 895d9db253a0b0b1f8a6e635fb2460d80bf72d5a (patch) | |
tree | f45c151964dbe8b7b192f435d0ba09bddbff56b2 /fs/ubifs/file.c | |
parent | ff1f48ee3bb3af226f1f8993af0103794b4d4eab (diff) | |
download | op-kernel-dev-895d9db253a0b0b1f8a6e635fb2460d80bf72d5a.zip op-kernel-dev-895d9db253a0b0b1f8a6e635fb2460d80bf72d5a.tar.gz |
UBIFS: Add xattr support for symlinks
Artem: rename the __ubifs_setxattr() functions to just 'setxattr()'.
Signed-off-by: Subodh Nijsure <snijsure@grid-net.com>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Ben Shelton <ben.shelton@ni.com>
Acked-by: Terry Wilcox <terry.wilcox@ni.com>
Acked-by: Gratian Crisan <gratian.crisan@ni.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'fs/ubifs/file.c')
-rw-r--r-- | fs/ubifs/file.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/ubifs/file.c b/fs/ubifs/file.c index 538519e..4855abcfe 100644 --- a/fs/ubifs/file.c +++ b/fs/ubifs/file.c @@ -1574,6 +1574,10 @@ const struct inode_operations ubifs_symlink_inode_operations = { .follow_link = ubifs_follow_link, .setattr = ubifs_setattr, .getattr = ubifs_getattr, + .setxattr = ubifs_setxattr, + .getxattr = ubifs_getxattr, + .listxattr = ubifs_listxattr, + .removexattr = ubifs_removexattr, }; const struct file_operations ubifs_file_operations = { |