summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_da_btree.c
diff options
context:
space:
mode:
authorDave Chinner2010-01-20 00:47:17 +0100
committerDave Chinner2010-01-20 00:47:17 +0100
commit2bc754213d40d67c39ddd58cf240f2b948e1951e (patch)
treecbb289ab5f17d3d65dfca5df5fbe65066d90c1ee /fs/xfs/xfs_da_btree.c
parentxfs: convert DM ops to use unsigned char names (diff)
downloadkernel-qcow2-linux-2bc754213d40d67c39ddd58cf240f2b948e1951e.tar.gz
kernel-qcow2-linux-2bc754213d40d67c39ddd58cf240f2b948e1951e.tar.xz
kernel-qcow2-linux-2bc754213d40d67c39ddd58cf240f2b948e1951e.zip
xfs: convert dirnameops to unsigned char names
To be consistent across the codebase, convert the dirnameops to pass the directory names by unsigned char strings. Signed-off-by: Dave Chinner <david@fromorbit.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_da_btree.c')
-rw-r--r--fs/xfs/xfs_da_btree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_da_btree.c b/fs/xfs/xfs_da_btree.c
index c0c8869115b1..0ca556b4bf31 100644
--- a/fs/xfs/xfs_da_btree.c
+++ b/fs/xfs/xfs_da_btree.c
@@ -1534,8 +1534,8 @@ xfs_da_hashname(const __uint8_t *name, int namelen)
enum xfs_dacmp
xfs_da_compname(
struct xfs_da_args *args,
- const char *name,
- int len)
+ const unsigned char *name,
+ int len)
{
return (args->namelen == len && memcmp(args->name, name, len) == 0) ?
XFS_CMP_EXACT : XFS_CMP_DIFFERENT;