Commit 8e70bf27 authored by Colin Ian King's avatar Colin Ian King Committed by J. Bruce Fields

NFSD: Initialize pointer ni with NULL and not plain integer 0

Pointer ni is being initialized with plain integer zero. Fix
this by initializing with NULL.
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent d8b26071
...@@ -1178,7 +1178,7 @@ extern void nfs_sb_deactive(struct super_block *sb); ...@@ -1178,7 +1178,7 @@ extern void nfs_sb_deactive(struct super_block *sb);
static __be32 nfsd4_ssc_setup_dul(struct nfsd_net *nn, char *ipaddr, static __be32 nfsd4_ssc_setup_dul(struct nfsd_net *nn, char *ipaddr,
struct nfsd4_ssc_umount_item **retwork, struct vfsmount **ss_mnt) struct nfsd4_ssc_umount_item **retwork, struct vfsmount **ss_mnt)
{ {
struct nfsd4_ssc_umount_item *ni = 0; struct nfsd4_ssc_umount_item *ni = NULL;
struct nfsd4_ssc_umount_item *work = NULL; struct nfsd4_ssc_umount_item *work = NULL;
struct nfsd4_ssc_umount_item *tmp; struct nfsd4_ssc_umount_item *tmp;
DEFINE_WAIT(wait); DEFINE_WAIT(wait);
......
...@@ -5531,7 +5531,7 @@ static void nfsd4_ssc_shutdown_umount(struct nfsd_net *nn) ...@@ -5531,7 +5531,7 @@ static void nfsd4_ssc_shutdown_umount(struct nfsd_net *nn)
static void nfsd4_ssc_expire_umount(struct nfsd_net *nn) static void nfsd4_ssc_expire_umount(struct nfsd_net *nn)
{ {
bool do_wakeup = false; bool do_wakeup = false;
struct nfsd4_ssc_umount_item *ni = 0; struct nfsd4_ssc_umount_item *ni = NULL;
struct nfsd4_ssc_umount_item *tmp; struct nfsd4_ssc_umount_item *tmp;
spin_lock(&nn->nfsd_ssc_lock); spin_lock(&nn->nfsd_ssc_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment