mirror of
https://github.com/LineageOS/android_kernel_fxtec_sm6115.git
synced 2026-08-18 12:51:13 +00:00
UPSTREAM: net: ipv4: Pass fib_rt_info as const to fib_dump_info()
fib_dump_info() does not change 'fri', so pass it as 'const'. It will later allow us to invoke fib_dump_info() from fib_alias_hw_flags_set(). Change-Id: I2919abd01b95d62ef2a3cf982b7e77bbd8f3aa39 Signed-off-by: Amit Cohen <amcohen@nvidia.com> Signed-off-by: Ido Schimmel <idosch@nvidia.com> Reviewed-by: David Ahern <dsahern@kernel.org> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Thomas Turner
parent
3b3a552747
commit
f28d2aa4de
@ -42,7 +42,7 @@ int fib_nh_match(struct net *net, struct fib_config *cfg, struct fib_info *fi,
|
||||
struct netlink_ext_ack *extack);
|
||||
bool fib_metrics_match(struct fib_config *cfg, struct fib_info *fi);
|
||||
int fib_dump_info(struct sk_buff *skb, u32 pid, u32 seq, int event,
|
||||
struct fib_rt_info *fri, unsigned int flags);
|
||||
const struct fib_rt_info *fri, unsigned int flags);
|
||||
void rtmsg_fib(int event, __be32 key, struct fib_alias *fa, int dst_len,
|
||||
u32 tb_id, const struct nl_info *info, unsigned int nlm_flags);
|
||||
size_t fib_nlmsg_size(struct fib_info *fi);
|
||||
|
||||
@ -1669,7 +1669,7 @@ static int fib_add_multipath(struct sk_buff *skb, struct fib_info *fi)
|
||||
#endif
|
||||
|
||||
int fib_dump_info(struct sk_buff *skb, u32 portid, u32 seq, int event,
|
||||
struct fib_rt_info *fri, unsigned int flags)
|
||||
const struct fib_rt_info *fri, unsigned int flags)
|
||||
{
|
||||
unsigned int nhs = fib_info_num_path(fri->fi);
|
||||
struct fib_info *fi = fri->fi;
|
||||
|
||||
Reference in New Issue
Block a user