diff options
author | David S. Miller <davem@davemloft.net> | 2011-03-04 21:47:09 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-04 21:55:31 -0800 |
commit | 5e2b61f78411be25f0b84f97d5b5d312f184dfd1 (patch) | |
tree | 6a5faa5fb7a2242bebacba4cdb5722b988d3e909 /net/sched/cls_route.c | |
parent | 1018b5c01636c7c6bda31a719bda34fc631db29a (diff) | |
download | kernel_samsung_tuna-5e2b61f78411be25f0b84f97d5b5d312f184dfd1.zip kernel_samsung_tuna-5e2b61f78411be25f0b84f97d5b5d312f184dfd1.tar.gz kernel_samsung_tuna-5e2b61f78411be25f0b84f97d5b5d312f184dfd1.tar.bz2 |
ipv4: Remove flowi from struct rtable.
The only necessary parts are the src/dst addresses, the
interface indexes, the TOS, and the mark.
The rest is unnecessary bloat, which amounts to nearly
50 bytes on 64-bit.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/cls_route.c')
-rw-r--r-- | net/sched/cls_route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/cls_route.c b/net/sched/cls_route.c index d580cdf..a9079053 100644 --- a/net/sched/cls_route.c +++ b/net/sched/cls_route.c @@ -143,7 +143,7 @@ static int route4_classify(struct sk_buff *skb, struct tcf_proto *tp, if (head == NULL) goto old_method; - iif = ((struct rtable *)dst)->fl.iif; + iif = ((struct rtable *)dst)->rt_iif; h = route4_fastmap_hash(id, iif); if (id == head->fastmap[h].id && |