summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-05-31 10:40:52 -0400
committerChristoph Hellwig <hch@lst.de>2017-06-05 10:56:38 -0400
commit12ce5f8c5c56fcd027bb9d12d17d2628d7dd9882 (patch)
treec625e2b09d5b4c6bf9a2f0f41d430fe775e1a894
parente6fd2093a85d3be874c47d4f43bea5bdf0770955 (diff)
nfsd: namespace-prefix uuid_parse
Signed-off-by: Christoph Hellwig <hch@lst.de>
-rw-r--r--fs/nfsd/export.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c
index e71f11b1a180..3bc08c394a3f 100644
--- a/fs/nfsd/export.c
+++ b/fs/nfsd/export.c
@@ -486,7 +486,7 @@ secinfo_parse(char **mesg, char *buf, struct svc_export *exp) { return 0; }
486#endif 486#endif
487 487
488static inline int 488static inline int
489uuid_parse(char **mesg, char *buf, unsigned char **puuid) 489nfsd_uuid_parse(char **mesg, char *buf, unsigned char **puuid)
490{ 490{
491 int len; 491 int len;
492 492
@@ -586,7 +586,7 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen)
586 if (strcmp(buf, "fsloc") == 0) 586 if (strcmp(buf, "fsloc") == 0)
587 err = fsloc_parse(&mesg, buf, &exp.ex_fslocs); 587 err = fsloc_parse(&mesg, buf, &exp.ex_fslocs);
588 else if (strcmp(buf, "uuid") == 0) 588 else if (strcmp(buf, "uuid") == 0)
589 err = uuid_parse(&mesg, buf, &exp.ex_uuid); 589 err = nfsd_uuid_parse(&mesg, buf, &exp.ex_uuid);
590 else if (strcmp(buf, "secinfo") == 0) 590 else if (strcmp(buf, "secinfo") == 0)
591 err = secinfo_parse(&mesg, buf, &exp); 591 err = secinfo_parse(&mesg, buf, &exp);
592 else 592 else