nfsd: Fix memleak in svc_export_put
authormajianpeng <majianpeng@gmail.com>
Tue, 29 Jan 2013 05:16:01 +0000 (13:16 +0800)
committerJ. Bruce Fields <bfields@redhat.com>
Tue, 29 Jan 2013 21:50:03 +0000 (16:50 -0500)
commit885c91f74662404dc179b8775494df383479311c
tree7ec009e3704fb201ab518a22954cd2951420270e
parentff89be87c70247ffe3a72271e02eb7765cdd12c4
nfsd: Fix memleak in svc_export_put

In func svc_export_parse, the uuid which used kmemdup to alloc will be
changed in func export_update.So the later kfree don't free this memory.
And it can't be free in func svc_export_parse because other place still
used.So put this operation in func svc_export_put.

Signed-off-by: Jianpeng Ma <majianpeng@gmail.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/nfsd/export.c