diff options
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_ioctl.h')
| -rw-r--r-- | fs/xfs/linux-2.6/xfs_ioctl.h | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/xfs/linux-2.6/xfs_ioctl.h b/fs/xfs/linux-2.6/xfs_ioctl.h index 7bd7c6afc1e..d56173b34a2 100644 --- a/fs/xfs/linux-2.6/xfs_ioctl.h +++ b/fs/xfs/linux-2.6/xfs_ioctl.h @@ -45,23 +45,23 @@ xfs_readlink_by_handle(  extern int  xfs_attrmulti_attr_get(  	struct inode		*inode, -	char			*name, -	char			__user *ubuf, +	unsigned char		*name, +	unsigned char		__user *ubuf,  	__uint32_t		*len,  	__uint32_t		flags);  extern int -	xfs_attrmulti_attr_set( +xfs_attrmulti_attr_set(  	struct inode		*inode, -	char			*name, -	const char		__user *ubuf, +	unsigned char		*name, +	const unsigned char	__user *ubuf,  	__uint32_t		len,  	__uint32_t		flags);  extern int  xfs_attrmulti_attr_remove(  	struct inode		*inode, -	char			*name, +	unsigned char		*name,  	__uint32_t		flags);  extern struct dentry *  |