Home
last modified time | relevance | path

Searched refs:o_flags (Results 1 – 17 of 17) sorted by relevance

/linux-5.19.10/include/linux/
Dfile.h94 unsigned int o_flags);
96 extern int receive_fd(struct file *file, unsigned int o_flags);
99 unsigned int o_flags) in receive_fd_user() argument
103 return __receive_fd(file, ufd, o_flags); in receive_fd_user()
105 int receive_fd_replace(int new_fd, struct file *file, unsigned int o_flags);
/linux-5.19.10/include/net/
Dgre.h52 static inline int gre_calc_hlen(__be16 o_flags) in gre_calc_hlen() argument
56 if (o_flags & TUNNEL_CSUM) in gre_calc_hlen()
58 if (o_flags & TUNNEL_KEY) in gre_calc_hlen()
60 if (o_flags & TUNNEL_SEQ) in gre_calc_hlen()
Dip6_tunnel.h34 __be16 o_flags; member
/linux-5.19.10/net/ipv4/
Dip_gre.c462 __be16 flags = tunnel->parms.o_flags; in __gre_xmit()
658 if (gre_handle_offloads(skb, !!(tunnel->parms.o_flags & TUNNEL_CSUM))) in ipgre_xmit()
699 tunnel->parms.o_flags &= ~TUNNEL_SEQ; in erspan_xmit()
714 tunnel->parms.o_flags &= ~TUNNEL_KEY; in erspan_xmit()
737 if (gre_handle_offloads(skb, !!(tunnel->parms.o_flags & TUNNEL_CSUM))) in gre_tap_xmit()
759 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags); in ipgre_link_update()
771 flags = tunnel->parms.o_flags; in ipgre_link_update()
791 ((p->i_flags | p->o_flags) & (GRE_VERSION | GRE_ROUTING))) in ipgre_tunnel_ctl()
796 p->o_flags = gre_flags_to_tnl_flags(p->o_flags); in ipgre_tunnel_ctl()
806 t->parms.o_flags = p->o_flags; in ipgre_tunnel_ctl()
[all …]
Dip_vti.c388 if (!(p->o_flags & GRE_KEY)) in vti_tunnel_ctl()
399 p->o_flags |= GRE_KEY; in vti_tunnel_ctl()
Dipip.c342 p->i_flags = p->o_flags = 0; in ipip_tunnel_ctl()
Dip_tunnel.c888 if (!(p->o_flags & TUNNEL_KEY)) in ip_tunnel_ctl()
/linux-5.19.10/net/ipv6/
Dip6_gre.c771 flags = tunnel->parms.o_flags; in __gre6_xmit()
798 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM)); in ip6gre_xmit_ipv4()
832 if (gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM))) in ip6gre_xmit_ipv6()
880 err = gre_handle_offloads(skb, !!(t->parms.o_flags & TUNNEL_CSUM)); in ip6gre_xmit_other()
976 t->parms.o_flags &= ~TUNNEL_KEY; in ip6erspan_tunnel_xmit()
1169 tunnel->tun_hlen = gre_calc_hlen(tunnel->parms.o_flags); in ip6gre_calc_hlen()
1202 t->parms.o_flags = p->o_flags; in ip6gre_tnl_copy_tnl_parm()
1232 p->o_flags = gre_flags_to_tnl_flags(u->o_flags); in ip6gre_tnl_parm_from_user()
1250 u->o_flags = gre_tnl_flags_to_gre_flags(p->o_flags); in ip6gre_tnl_parm_to_user()
1296 if ((p.i_flags|p.o_flags)&(GRE_VERSION|GRE_ROUTING)) in ip6gre_tunnel_siocdevprivate()
[all …]
Dip6_vti.c767 u->o_flags |= GRE_KEY; in vti6_parm_to_user()
/linux-5.19.10/include/uapi/linux/
Dip6_tunnel.h51 __be16 o_flags; member
Dif_tunnel.h52 __be16 o_flags; member
/linux-5.19.10/drivers/net/ethernet/mellanox/mlxsw/
Dspectrum_ipip.c39 return !!(parms->o_flags & TUNNEL_KEY); in mlxsw_sp_ipip_parms4_has_okey()
44 return !!(parms->o_flags & TUNNEL_KEY); in mlxsw_sp_ipip_parms6_has_okey()
246 (tunnel->parms.o_flags & ~okflags) == 0 && in mlxsw_sp_ipip_can_offload_gre4()
531 (tparm.o_flags & ~okflags) == 0 && in mlxsw_sp2_ipip_can_offload_gre6()
Dspectrum_span.c464 tparm.i_flags || tparm.o_flags || in mlxsw_sp_span_entry_gretap4_parms()
568 tparm.i_flags || tparm.o_flags || in mlxsw_sp_span_entry_gretap6_parms()
/linux-5.19.10/fs/
Dfile.c1159 int __receive_fd(struct file *file, int __user *ufd, unsigned int o_flags) in __receive_fd() argument
1168 new_fd = get_unused_fd_flags(o_flags); in __receive_fd()
1185 int receive_fd_replace(int new_fd, struct file *file, unsigned int o_flags) in receive_fd_replace() argument
1192 error = replace_fd(new_fd, file, o_flags); in receive_fd_replace()
1199 int receive_fd(struct file *file, unsigned int o_flags) in receive_fd() argument
1201 return __receive_fd(file, NULL, o_flags); in receive_fd()
Dfsopen.c87 static int fscontext_create_fd(struct fs_context *fc, unsigned int o_flags) in fscontext_create_fd() argument
92 O_RDWR | o_flags); in fscontext_create_fd()
/linux-5.19.10/net/core/
Dscm.c301 unsigned int o_flags = (msg->msg_flags & MSG_CMSG_CLOEXEC) ? O_CLOEXEC : 0; in scm_detach_fds() local
316 err = receive_fd_user(scm->fp->fp[i], cmsg_data + i, o_flags); in scm_detach_fds()
/linux-5.19.10/net/
Dcompat.c295 unsigned int o_flags = (msg->msg_flags & MSG_CMSG_CLOEXEC) ? O_CLOEXEC : 0; in scm_detach_fds_compat() local
301 err = receive_fd_user(scm->fp->fp[i], cmsg_data + i, o_flags); in scm_detach_fds_compat()