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

Commit b672083e authored by Shan Wei's avatar Shan Wei Committed by David S. Miller
Browse files

ipv6: use ND_REACHABLE_TIME and ND_RETRANS_TIMER instead of magic number



ND_REACHABLE_TIME and ND_RETRANS_TIMER have defined
since v2.6.12-rc2, but never been used.
So use them instead of magic number.

This patch also changes original code style to read comfortably .

Thank YOSHIFUJI Hideaki for pointing it out.

Signed-off-by: default avatarShan Wei <shanwei@cn.fujitsu.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 97b1ce25
Loading
Loading
Loading
Loading
+12 −12
Original line number Diff line number Diff line
@@ -142,10 +142,10 @@ struct neigh_table nd_tbl = {
	.id =		"ndisc_cache",
	.parms = {
		.tbl			= &nd_tbl,
		.base_reachable_time =	30 * HZ,
		.retrans_time =	 1 * HZ,
		.base_reachable_time	= ND_REACHABLE_TIME,
		.retrans_time		= ND_RETRANS_TIMER,
		.gc_staletime		= 60 * HZ,
		.reachable_time =		30 * HZ,
		.reachable_time		= ND_REACHABLE_TIME,
		.delay_probe_time	= 5 * HZ,
		.queue_len		= 3,
		.ucast_probes		= 3,