aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2004-08-20 06:52:00 +1000
committerNathan Scott <nathans@lips.borg.umn.edu>2004-08-20 06:52:00 +1000
commit03cd4ec3fb657bdcd5a9a109f92bd30c3c6d91e1 (patch)
tree591ee89538593ba18aec30d691189e12748188f4 /fs
parentfcba7f1921158593b9a348d91b272cdee858235a (diff)
downloadhistory-03cd4ec3fb657bdcd5a9a109f92bd30c3c6d91e1.tar.gz
[XFS] sparse: rework previous mods to fix warnings in DMAPI code.
From Chris Wedgwood. SGI Modid: xfs-linux:xfs-kern:174817a Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/quota/xfs_qm.c2
-rw-r--r--fs/xfs/quota/xfs_qm_syscalls.c2
-rw-r--r--fs/xfs/xfs_itable.c2
-rw-r--r--fs/xfs/xfs_itable.h4
4 files changed, 5 insertions, 5 deletions
diff --git a/fs/xfs/quota/xfs_qm.c b/fs/xfs/quota/xfs_qm.c
index c42c8d2eaaf56b..8aa9d960de892a 100644
--- a/fs/xfs/quota/xfs_qm.c
+++ b/fs/xfs/quota/xfs_qm.c
@@ -1732,7 +1732,7 @@ STATIC int
xfs_qm_dqusage_adjust(
xfs_mount_t *mp, /* mount point for filesystem */
xfs_ino_t ino, /* inode number to get data for */
- char __user *buffer, /* not used */
+ void __user *buffer, /* not used */
int ubsize, /* not used */
void *private_data, /* not used */
xfs_daddr_t bno, /* starting block of inode cluster */
diff --git a/fs/xfs/quota/xfs_qm_syscalls.c b/fs/xfs/quota/xfs_qm_syscalls.c
index a8959f7e8ea1a5..aae69f5d99d080 100644
--- a/fs/xfs/quota/xfs_qm_syscalls.c
+++ b/fs/xfs/quota/xfs_qm_syscalls.c
@@ -1299,7 +1299,7 @@ STATIC int
xfs_qm_internalqcheck_adjust(
xfs_mount_t *mp, /* mount point for filesystem */
xfs_ino_t ino, /* inode number to get data for */
- char __user *buffer, /* not used */
+ void __user *buffer, /* not used */
int ubsize, /* not used */
void *private_data, /* not used */
xfs_daddr_t bno, /* starting block of inode cluster */
diff --git a/fs/xfs/xfs_itable.c b/fs/xfs/xfs_itable.c
index 35c004bb1be61a..3ff4b9777a7af0 100644
--- a/fs/xfs/xfs_itable.c
+++ b/fs/xfs/xfs_itable.c
@@ -68,7 +68,7 @@ int /* error status */
xfs_bulkstat_one(
xfs_mount_t *mp, /* mount point for filesystem */
xfs_ino_t ino, /* inode number to get data for */
- char __user *buffer, /* buffer to place output in */
+ void __user *buffer, /* buffer to place output in */
int ubsize, /* size of buffer */
void *private_data, /* my private data */
xfs_daddr_t bno, /* starting bno of inode cluster */
diff --git a/fs/xfs/xfs_itable.h b/fs/xfs/xfs_itable.h
index 9948eb1712175a..6bbeacc7116587 100644
--- a/fs/xfs/xfs_itable.h
+++ b/fs/xfs/xfs_itable.h
@@ -40,7 +40,7 @@
*/
typedef int (*bulkstat_one_pf)(struct xfs_mount *mp,
xfs_ino_t ino,
- char __user *buffer,
+ void __user *buffer,
int ubsize,
void *private_data,
xfs_daddr_t bno,
@@ -88,7 +88,7 @@ int
xfs_bulkstat_one(
xfs_mount_t *mp,
xfs_ino_t ino,
- char __user *buffer,
+ void __user *buffer,
int ubsize,
void *private_data,
xfs_daddr_t bno,