route: struct rtable can be const in rt_is_input_route and rt_is_output_route
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
618f9bc74a
commit
b8400f3718
@@ -71,12 +71,12 @@ struct rtable {
|
|||||||
struct fib_info *fi; /* for client ref to shared metrics */
|
struct fib_info *fi; /* for client ref to shared metrics */
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline bool rt_is_input_route(struct rtable *rt)
|
static inline bool rt_is_input_route(const struct rtable *rt)
|
||||||
{
|
{
|
||||||
return rt->rt_route_iif != 0;
|
return rt->rt_route_iif != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline bool rt_is_output_route(struct rtable *rt)
|
static inline bool rt_is_output_route(const struct rtable *rt)
|
||||||
{
|
{
|
||||||
return rt->rt_route_iif == 0;
|
return rt->rt_route_iif == 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user