diff options
author | sandeen@sandeen.net <sandeen@sandeen.net> | 2008-11-25 21:20:15 -0600 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-12-02 17:17:07 +1100 |
commit | 28750975ace79c547407a84d3969cbed516be8f8 (patch) | |
tree | 79707c1e3c304ec7a11ea920cda38760d0248d5c /fs/xfs/linux-2.6/xfs_ioctl.c | |
parent | ebeecd2b04645a4b79e1bc00d69cf4f98e03a684 (diff) | |
download | kernel_samsung_tuna-28750975ace79c547407a84d3969cbed516be8f8.zip kernel_samsung_tuna-28750975ace79c547407a84d3969cbed516be8f8.tar.gz kernel_samsung_tuna-28750975ace79c547407a84d3969cbed516be8f8.tar.bz2 |
[XFS] Hook up compat XFS_IOC_ATTRMULTI_BY_HANDLE ioctl handler
Add a compat handler for XFS_IOC_ATTRMULTI_BY_HANDLE
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_ioctl.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_ioctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/linux-2.6/xfs_ioctl.c b/fs/xfs/linux-2.6/xfs_ioctl.c index 498d3e1..c8f1e63 100644 --- a/fs/xfs/linux-2.6/xfs_ioctl.c +++ b/fs/xfs/linux-2.6/xfs_ioctl.c @@ -490,7 +490,7 @@ xfs_attrlist_by_handle( return -error; } -STATIC int +int xfs_attrmulti_attr_get( struct inode *inode, char *name, @@ -519,7 +519,7 @@ xfs_attrmulti_attr_get( return error; } -STATIC int +int xfs_attrmulti_attr_set( struct inode *inode, char *name, @@ -549,7 +549,7 @@ xfs_attrmulti_attr_set( return error; } -STATIC int +int xfs_attrmulti_attr_remove( struct inode *inode, char *name, |