]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commit
neigh: allow admin to set NUD_STALE
authorJulian Anastasov <ja@ssi.bg>
Wed, 27 Jul 2016 06:56:50 +0000 (09:56 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 8 Aug 2016 22:36:38 +0000 (15:36 -0700)
commit0e7bbcc104baaade4f64205e9706b7d43c46db7d
tree5ff5e163b9e7e221a85df4aab53f58d44606bf97
parent1fe323aa1b2390a0c57fb0b06a782f128d49094c
neigh: allow admin to set NUD_STALE

Admin should be able to set any state. Currently, this fails
when lladdr is not changed and state is changed from
NUD_CONNECTED to NUD_STALE:

ip neigh add 192.168.8.1 lladdr 00:11:22:33:44:55 nud perm dev wlan0
ip neigh show to 192.168.8.1
192.168.8.1 dev wlan0 lladdr 00:11:22:33:44:55 PERMANENT
ip neigh change 192.168.8.1 lladdr 00:11:22:33:44:55 nud stale dev wlan0
ip neigh show to 192.168.8.1
192.168.8.1 dev wlan0 lladdr 00:11:22:33:44:55 PERMANENT

Problem may be from 2.1.X days.

Signed-off-by: Julian Anastasov <ja@ssi.bg>
Reviewed-by: Chunhui He <hchunhui@mail.ustc.edu.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/neighbour.c