diff options
author | David S. Miller <davem@davemloft.net> | 2011-03-07 18:01:10 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-03-07 18:19:39 -0500 |
commit | 3be0686b6e2f953afe83626e871b4a7b0ceae49b (patch) | |
tree | 6591cba7d393d6b0bc7b2c647a5a5f1f5d8728e8 /net/ipv4/fib_lookup.h | |
parent | 4c8237cd76a0510677dc2e3dd0f8866ec8e0b1e5 (diff) |
ipv4: Inline fib_semantic_match into check_leaf
This elimiates a lot of pure overhead due to parameter
passing.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/fib_lookup.h')
-rw-r--r-- | net/ipv4/fib_lookup.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/ipv4/fib_lookup.h b/net/ipv4/fib_lookup.h index d5c40d8f6632..84db2da5c848 100644 --- a/net/ipv4/fib_lookup.h +++ b/net/ipv4/fib_lookup.h | |||
@@ -51,4 +51,11 @@ static inline void fib_result_assign(struct fib_result *res, | |||
51 | res->fi = fi; | 51 | res->fi = fi; |
52 | } | 52 | } |
53 | 53 | ||
54 | struct fib_prop { | ||
55 | int error; | ||
56 | u8 scope; | ||
57 | }; | ||
58 | |||
59 | extern const struct fib_prop fib_props[RTN_MAX + 1]; | ||
60 | |||
54 | #endif /* _FIB_LOOKUP_H */ | 61 | #endif /* _FIB_LOOKUP_H */ |