aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfsd
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nfsd')
-rw-r--r--fs/nfsd/export.c2
-rw-r--r--fs/nfsd/nfs4callback.c2
-rw-r--r--fs/nfsd/nfs4proc.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c
index 01bc68c628ad..340c31a4f3fe 100644
--- a/fs/nfsd/export.c
+++ b/fs/nfsd/export.c
@@ -370,7 +370,7 @@ static int check_export(struct inode *inode, int flags)
370 */ 370 */
371 if (!(inode->i_sb->s_type->fs_flags & FS_REQUIRES_DEV) && 371 if (!(inode->i_sb->s_type->fs_flags & FS_REQUIRES_DEV) &&
372 !(flags & NFSEXP_FSID)) { 372 !(flags & NFSEXP_FSID)) {
373 dprintk("exp_export: export of non-dev fs without fsid"); 373 dprintk("exp_export: export of non-dev fs without fsid\n");
374 return -EINVAL; 374 return -EINVAL;
375 } 375 }
376 if (!inode->i_sb->s_export_op) { 376 if (!inode->i_sb->s_export_op) {
diff --git a/fs/nfsd/nfs4callback.c b/fs/nfsd/nfs4callback.c
index 8583d99ee740..f6ca9fb3fc63 100644
--- a/fs/nfsd/nfs4callback.c
+++ b/fs/nfsd/nfs4callback.c
@@ -131,7 +131,7 @@ xdr_error: \
131#define READ_BUF(nbytes) do { \ 131#define READ_BUF(nbytes) do { \
132 p = xdr_inline_decode(xdr, nbytes); \ 132 p = xdr_inline_decode(xdr, nbytes); \
133 if (!p) { \ 133 if (!p) { \
134 dprintk("NFSD: %s: reply buffer overflowed in line %d.", \ 134 dprintk("NFSD: %s: reply buffer overflowed in line %d.\n", \
135 __FUNCTION__, __LINE__); \ 135 __FUNCTION__, __LINE__); \
136 return -EIO; \ 136 return -EIO; \
137 } \ 137 } \
diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c
index ee4eff27aedc..15ded7a30a72 100644
--- a/fs/nfsd/nfs4proc.c
+++ b/fs/nfsd/nfs4proc.c
@@ -600,7 +600,7 @@ nfsd4_setattr(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_se
600 &setattr->sa_stateid, CHECK_FH | WR_STATE, NULL); 600 &setattr->sa_stateid, CHECK_FH | WR_STATE, NULL);
601 nfs4_unlock_state(); 601 nfs4_unlock_state();
602 if (status) { 602 if (status) {
603 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!"); 603 dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n");
604 return status; 604 return status;
605 } 605 }
606 } 606 }