Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b93196dc authored by Cong Wang's avatar Cong Wang Committed by David S. Miller
Browse files

net: fix some compiler warning in net/core/neighbour.c



net/core/neighbour.c:65:12: warning: 'zero' defined but not used [-Wunused-variable]
net/core/neighbour.c:66:12: warning: 'unres_qlen_max' defined but not used [-Wunused-variable]

These variables are only used when CONFIG_SYSCTL is defined,
so move them under #ifdef CONFIG_SYSCTL.

Reported-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarCong Wang <amwang@redhat.com>
Acked-by: default avatarShan Wei <davidshan@tencent.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c2d3babf
Loading
Loading
Loading
Loading
+2 −3
Original line number Original line Diff line number Diff line
@@ -62,9 +62,6 @@ static void __neigh_notify(struct neighbour *n, int type, int flags);
static void neigh_update_notify(struct neighbour *neigh);
static void neigh_update_notify(struct neighbour *neigh);
static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev);
static int pneigh_ifdown(struct neigh_table *tbl, struct net_device *dev);


static int zero;
static int unres_qlen_max = INT_MAX / SKB_TRUESIZE(ETH_FRAME_LEN);

static struct neigh_table *neigh_tables;
static struct neigh_table *neigh_tables;
#ifdef CONFIG_PROC_FS
#ifdef CONFIG_PROC_FS
static const struct file_operations neigh_stat_seq_fops;
static const struct file_operations neigh_stat_seq_fops;
@@ -2772,6 +2769,8 @@ EXPORT_SYMBOL(neigh_app_ns);
#endif /* CONFIG_ARPD */
#endif /* CONFIG_ARPD */


#ifdef CONFIG_SYSCTL
#ifdef CONFIG_SYSCTL
static int zero;
static int unres_qlen_max = INT_MAX / SKB_TRUESIZE(ETH_FRAME_LEN);


static int proc_unres_qlen(ctl_table *ctl, int write, void __user *buffer,
static int proc_unres_qlen(ctl_table *ctl, int write, void __user *buffer,
			   size_t *lenp, loff_t *ppos)
			   size_t *lenp, loff_t *ppos)