Skip to content

Commit

Permalink
netfilter: remove the unused user argument to do_update_counters
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Christoph Hellwig authored and David S. Miller committed Jul 24, 2020
1 parent c6d1b26 commit 7e4b9db
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions net/bridge/netfilter/ebtables.c
Original file line number Diff line number Diff line change
Expand Up @@ -1242,9 +1242,8 @@ void ebt_unregister_table(struct net *net, struct ebt_table *table,

/* userspace just supplied us with counters */
static int do_update_counters(struct net *net, const char *name,
struct ebt_counter __user *counters,
unsigned int num_counters,
const void __user *user, unsigned int len)
struct ebt_counter __user *counters,
unsigned int num_counters, unsigned int len)
{
int i, ret;
struct ebt_counter *tmp;
Expand Down Expand Up @@ -1299,7 +1298,7 @@ static int update_counters(struct net *net, const void __user *user,
return -EINVAL;

return do_update_counters(net, hlp.name, hlp.counters,
hlp.num_counters, user, len);
hlp.num_counters, len);
}

static inline int ebt_obj_to_user(char __user *um, const char *_name,
Expand Down Expand Up @@ -2231,7 +2230,7 @@ static int compat_update_counters(struct net *net, void __user *user,
return update_counters(net, user, len);

return do_update_counters(net, hlp.name, compat_ptr(hlp.counters),
hlp.num_counters, user, len);
hlp.num_counters, len);
}

static int compat_do_ebt_get_ctl(struct sock *sk, int cmd,
Expand Down

0 comments on commit 7e4b9db

Please sign in to comment.