diff options
author | Nathan Scott <nathans@sgi.com> | 2005-11-01 19:43:04 -0500 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2005-11-01 19:43:04 -0500 |
commit | 80cce77980c645b1c129d0e90159c1b1bb78f6a6 (patch) | |
tree | 1c7174a77f4b1fa6dee5b2384e137a62fa29cf1c /fs/xfs/xfs_da_btree.c | |
parent | f74dee42765db1c2ed584de7ac66aa619c40c79e (diff) |
[XFS] Make some extended attributes routines take const parameters, for
the FreeBSD porters.
SGI-PV: 942906
SGI-Modid: xfs-linux:xfs-kern:23845a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_da_btree.c')
-rw-r--r-- | fs/xfs/xfs_da_btree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_da_btree.c b/fs/xfs/xfs_da_btree.c index 8e2597b1a029..7e086c60485f 100644 --- a/fs/xfs/xfs_da_btree.c +++ b/fs/xfs/xfs_da_btree.c | |||
@@ -1604,7 +1604,7 @@ xfs_da_path_shift(xfs_da_state_t *state, xfs_da_state_path_t *path, | |||
1604 | * This is implemented with some source-level loop unrolling. | 1604 | * This is implemented with some source-level loop unrolling. |
1605 | */ | 1605 | */ |
1606 | xfs_dahash_t | 1606 | xfs_dahash_t |
1607 | xfs_da_hashname(uchar_t *name, int namelen) | 1607 | xfs_da_hashname(const uchar_t *name, int namelen) |
1608 | { | 1608 | { |
1609 | xfs_dahash_t hash; | 1609 | xfs_dahash_t hash; |
1610 | 1610 | ||