projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d3797d
)
jfs: fix sparse warning in fs/jfs/xattr.c
author
Dave Kleikamp
<dave.kleikamp@oracle.com>
Wed, 5 Jun 2013 19:32:08 +0000
(14:32 -0500)
committer
Dave Kleikamp
<dave.kleikamp@oracle.com>
Wed, 5 Jun 2013 19:47:16 +0000
(14:47 -0500)
CHECK fs/jfs/xattr.c
fs/jfs/xattr.c:1092:5: warning: symbol 'jfs_initxattrs' was not declared. Should it be static?
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
fs/jfs/xattr.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/jfs/xattr.c
b/fs/jfs/xattr.c
index 42d67f9757bf641d316b07e78a3fb1a698f76409..86ce028f2566c450fd76120ee9693e259f70629c 100644
(file)
--- a/
fs/jfs/xattr.c
+++ b/
fs/jfs/xattr.c
@@
-1089,8
+1089,8
@@
int jfs_removexattr(struct dentry *dentry, const char *name)
}
#ifdef CONFIG_JFS_SECURITY
-int jfs_initxattrs(struct inode *inode, const struct xattr *xattr_array,
- void *fs_info)
+
static
int jfs_initxattrs(struct inode *inode, const struct xattr *xattr_array,
+
void *fs_info)
{
const struct xattr *xattr;
tid_t *tid = fs_info;