summaryrefslogtreecommitdiffstats
path: root/sys/fs/tmpfs/tmpfs_subr.c
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2013-03-21 22:44:33 +0000
committerpjd <pjd@FreeBSD.org>2013-03-21 22:44:33 +0000
commit2a3cf7f364f936c42d03f20e3517e2213372b6bd (patch)
tree1c36abb6f394391f7fb768b78ab2d383820e11cb /sys/fs/tmpfs/tmpfs_subr.c
parentc966fdfb31aaad19afdaeaa7727b7f658662f433 (diff)
downloadFreeBSD-src-2a3cf7f364f936c42d03f20e3517e2213372b6bd.zip
FreeBSD-src-2a3cf7f364f936c42d03f20e3517e2213372b6bd.tar.gz
- Make 'flags' argument to chflags(2), fchflags(2) and lchflags(2) of type
u_long. Before this change it was of type int for syscalls, but prototypes in sys/stat.h and documentation for chflags(2) and fchflags(2) (but not for lchflags(2)) stated that it was u_long. Now some related functions use u_long type for flags (strtofflags(3), fflagstostr(3)). - Make path argument of type 'const char *' for consistency. Discussed on: arch Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sys/fs/tmpfs/tmpfs_subr.c')
-rw-r--r--sys/fs/tmpfs/tmpfs_subr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/fs/tmpfs/tmpfs_subr.c b/sys/fs/tmpfs/tmpfs_subr.c
index b003b2c..4739f85 100644
--- a/sys/fs/tmpfs/tmpfs_subr.c
+++ b/sys/fs/tmpfs/tmpfs_subr.c
@@ -1355,7 +1355,8 @@ retry:
* The vnode must be locked on entry and remain locked on exit.
*/
int
-tmpfs_chflags(struct vnode *vp, int flags, struct ucred *cred, struct thread *p)
+tmpfs_chflags(struct vnode *vp, u_long flags, struct ucred *cred,
+ struct thread *p)
{
int error;
struct tmpfs_node *node;
OpenPOWER on IntegriCloud