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:
a254b24
)
nfsd: fix sparse warning in vfs.c
author
Harvey Harrison
<harvey.harrison@gmail.com>
Wed, 20 Feb 2008 20:49:02 +0000
(12:49 -0800)
committer
J. Bruce Fields
<bfields@citi.umich.edu>
Wed, 23 Apr 2008 20:13:39 +0000
(16:13 -0400)
fs/nfsd/vfs.c:991:27: warning: Using plain integer as NULL pointer
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/nfsd/vfs.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/nfsd/vfs.c
b/fs/nfsd/vfs.c
index d5a238e6e6ed433a92b819cedee752d09394a0da..832e2b86c541497a3b5f288233cfb7b217c8778a 100644
(file)
--- a/
fs/nfsd/vfs.c
+++ b/
fs/nfsd/vfs.c
@@
-988,7
+988,7
@@
nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
* flushing the data to disk is handled separately below.
*/
- if (
file->f_op->fsync == 0
) {/* COMMIT3 cannot work */
+ if (
!file->f_op->fsync
) {/* COMMIT3 cannot work */
stable = 2;
*stablep = 2; /* FILE_SYNC */
}