Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

pkt_sched: remove bogus block (cleanup)

...Last block local var got just deleted.

Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Ilpo Järvinen and committed by
David S. Miller
e5befbd9 9f593653

+6 -7
+6 -7
net/sched/sch_api.c
··· 1088 1088 } 1089 1089 1090 1090 graft: 1091 - if (1) { 1092 - err = qdisc_graft(dev, p, skb, n, clid, q, NULL); 1093 - if (err) { 1094 - if (q) 1095 - qdisc_destroy(q); 1096 - return err; 1097 - } 1091 + err = qdisc_graft(dev, p, skb, n, clid, q, NULL); 1092 + if (err) { 1093 + if (q) 1094 + qdisc_destroy(q); 1095 + return err; 1098 1096 } 1097 + 1099 1098 return 0; 1100 1099 } 1101 1100