mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
xfrm: Mark flowi arg to ->get_tos() const.
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e8a4e37716
commit
05d8402576
@ -273,7 +273,7 @@ struct xfrm_policy_afinfo {
|
|||||||
void (*decode_session)(struct sk_buff *skb,
|
void (*decode_session)(struct sk_buff *skb,
|
||||||
struct flowi *fl,
|
struct flowi *fl,
|
||||||
int reverse);
|
int reverse);
|
||||||
int (*get_tos)(struct flowi *fl);
|
int (*get_tos)(const struct flowi *fl);
|
||||||
int (*init_path)(struct xfrm_dst *path,
|
int (*init_path)(struct xfrm_dst *path,
|
||||||
struct dst_entry *dst,
|
struct dst_entry *dst,
|
||||||
int nfheader_len);
|
int nfheader_len);
|
||||||
|
@ -56,7 +56,7 @@ static int xfrm4_get_saddr(struct net *net,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int xfrm4_get_tos(struct flowi *fl)
|
static int xfrm4_get_tos(const struct flowi *fl)
|
||||||
{
|
{
|
||||||
return IPTOS_RT_MASK & fl->fl4_tos; /* Strip ECN bits */
|
return IPTOS_RT_MASK & fl->fl4_tos; /* Strip ECN bits */
|
||||||
}
|
}
|
||||||
|
@ -67,7 +67,7 @@ static int xfrm6_get_saddr(struct net *net,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int xfrm6_get_tos(struct flowi *fl)
|
static int xfrm6_get_tos(const struct flowi *fl)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -1256,7 +1256,7 @@ xfrm_tmpl_resolve(struct xfrm_policy **pols, int npols, struct flowi *fl,
|
|||||||
* still valid.
|
* still valid.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static inline int xfrm_get_tos(struct flowi *fl, int family)
|
static inline int xfrm_get_tos(const struct flowi *fl, int family)
|
||||||
{
|
{
|
||||||
struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
|
struct xfrm_policy_afinfo *afinfo = xfrm_policy_get_afinfo(family);
|
||||||
int tos;
|
int tos;
|
||||||
|
Loading…
Reference in New Issue
Block a user