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_attr.h | |
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_attr.h')
-rw-r--r-- | fs/xfs/xfs_attr.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/xfs_attr.h b/fs/xfs/xfs_attr.h index 45ab1c542baf..42648b4f75b3 100644 --- a/fs/xfs/xfs_attr.h +++ b/fs/xfs/xfs_attr.h | |||
@@ -172,15 +172,15 @@ struct xfs_da_args; | |||
172 | /* | 172 | /* |
173 | * Overall external interface routines. | 173 | * Overall external interface routines. |
174 | */ | 174 | */ |
175 | int xfs_attr_get(bhv_desc_t *, char *, char *, int *, int, struct cred *); | 175 | int xfs_attr_get(bhv_desc_t *, const char *, char *, int *, int, struct cred *); |
176 | int xfs_attr_set(bhv_desc_t *, char *, char *, int, int, struct cred *); | 176 | int xfs_attr_set(bhv_desc_t *, const char *, char *, int, int, struct cred *); |
177 | int xfs_attr_remove(bhv_desc_t *, char *, int, struct cred *); | 177 | int xfs_attr_remove(bhv_desc_t *, const char *, int, struct cred *); |
178 | int xfs_attr_list(bhv_desc_t *, char *, int, int, | 178 | int xfs_attr_list(bhv_desc_t *, char *, int, int, |
179 | struct attrlist_cursor_kern *, struct cred *); | 179 | struct attrlist_cursor_kern *, struct cred *); |
180 | int xfs_attr_inactive(struct xfs_inode *dp); | 180 | int xfs_attr_inactive(struct xfs_inode *dp); |
181 | 181 | ||
182 | int xfs_attr_shortform_getvalue(struct xfs_da_args *); | 182 | int xfs_attr_shortform_getvalue(struct xfs_da_args *); |
183 | int xfs_attr_fetch(struct xfs_inode *, char *, int, | 183 | int xfs_attr_fetch(struct xfs_inode *, const char *, int, |
184 | char *, int *, int, struct cred *); | 184 | char *, int *, int, struct cred *); |
185 | 185 | ||
186 | #endif /* __XFS_ATTR_H__ */ | 186 | #endif /* __XFS_ATTR_H__ */ |