Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
8920b3cc
Commit
8920b3cc
authored
Dec 20, 2002
by
Nathan Scott
Committed by
Christoph Hellwig
Dec 20, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[XFS] Fix some setxattr compiler warnings (const).
SGI Modid: 2.5.x-xfs:slinx:135453a
parent
82079c70
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
fs/xfs/linux/xfs_iops.c
fs/xfs/linux/xfs_iops.c
+8
-6
No files found.
fs/xfs/linux/xfs_iops.c
View file @
8920b3cc
...
@@ -575,7 +575,7 @@ STATIC int
...
@@ -575,7 +575,7 @@ STATIC int
linvfs_setxattr
(
linvfs_setxattr
(
struct
dentry
*
dentry
,
struct
dentry
*
dentry
,
const
char
*
name
,
const
char
*
name
,
void
*
data
,
const
void
*
data
,
size_t
size
,
size_t
size
,
int
flags
)
int
flags
)
{
{
...
@@ -593,13 +593,15 @@ linvfs_setxattr(
...
@@ -593,13 +593,15 @@ linvfs_setxattr(
error
=
-
ENOATTR
;
error
=
-
ENOATTR
;
p
+=
xfs_namespaces
[
SYSTEM_NAMES
].
namelen
;
p
+=
xfs_namespaces
[
SYSTEM_NAMES
].
namelen
;
if
(
strcmp
(
p
,
POSIXACL_ACCESS
)
==
0
)
{
if
(
strcmp
(
p
,
POSIXACL_ACCESS
)
==
0
)
{
error
=
xfs_acl_vset
(
vp
,
data
,
size
,
_ACL_TYPE_ACCESS
);
error
=
xfs_acl_vset
(
vp
,
(
void
*
)
data
,
size
,
_ACL_TYPE_ACCESS
);
}
}
else
if
(
strcmp
(
p
,
POSIXACL_DEFAULT
)
==
0
)
{
else
if
(
strcmp
(
p
,
POSIXACL_DEFAULT
)
==
0
)
{
error
=
xfs_acl_vset
(
vp
,
data
,
size
,
_ACL_TYPE_DEFAULT
);
error
=
xfs_acl_vset
(
vp
,
(
void
*
)
data
,
size
,
_ACL_TYPE_DEFAULT
);
}
}
else
if
(
strcmp
(
p
,
POSIXCAP
)
==
0
)
{
else
if
(
strcmp
(
p
,
POSIXCAP
)
==
0
)
{
error
=
xfs_cap_vset
(
vp
,
data
,
size
);
error
=
xfs_cap_vset
(
vp
,
(
void
*
)
data
,
size
);
}
}
if
(
!
error
)
{
if
(
!
error
)
{
error
=
vn_revalidate
(
vp
);
error
=
vn_revalidate
(
vp
);
...
@@ -619,7 +621,7 @@ linvfs_setxattr(
...
@@ -619,7 +621,7 @@ linvfs_setxattr(
return
-
EPERM
;
return
-
EPERM
;
xflags
|=
ATTR_ROOT
;
xflags
|=
ATTR_ROOT
;
p
+=
xfs_namespaces
[
ROOT_NAMES
].
namelen
;
p
+=
xfs_namespaces
[
ROOT_NAMES
].
namelen
;
VOP_ATTR_SET
(
vp
,
p
,
data
,
size
,
xflags
,
NULL
,
error
);
VOP_ATTR_SET
(
vp
,
p
,
(
void
*
)
data
,
size
,
xflags
,
NULL
,
error
);
return
-
error
;
return
-
error
;
}
}
if
(
strncmp
(
name
,
xfs_namespaces
[
USER_NAMES
].
name
,
if
(
strncmp
(
name
,
xfs_namespaces
[
USER_NAMES
].
name
,
...
@@ -627,7 +629,7 @@ linvfs_setxattr(
...
@@ -627,7 +629,7 @@ linvfs_setxattr(
if
(
!
capable_user_xattr
(
inode
))
if
(
!
capable_user_xattr
(
inode
))
return
-
EPERM
;
return
-
EPERM
;
p
+=
xfs_namespaces
[
USER_NAMES
].
namelen
;
p
+=
xfs_namespaces
[
USER_NAMES
].
namelen
;
VOP_ATTR_SET
(
vp
,
p
,
data
,
size
,
xflags
,
NULL
,
error
);
VOP_ATTR_SET
(
vp
,
p
,
(
void
*
)
data
,
size
,
xflags
,
NULL
,
error
);
return
-
error
;
return
-
error
;
}
}
return
-
ENOATTR
;
return
-
ENOATTR
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment