]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blobdiff - samples/bpf/sockex2_kern.c
Merge tag 'pci-v4.20-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaa...
[mirror_ubuntu-eoan-kernel.git] / samples / bpf / sockex2_kern.c
index f58acfc9255612d985664ff884c80c440b43880d..f2f9dbc021b0d48c8c66d23cdee444076c25a43d 100644 (file)
@@ -14,7 +14,7 @@ struct vlan_hdr {
        __be16 h_vlan_encapsulated_proto;
 };
 
-struct bpf_flow_keys {
+struct flow_key_record {
        __be32 src;
        __be32 dst;
        union {
@@ -59,7 +59,7 @@ static inline __u32 ipv6_addr_hash(struct __sk_buff *ctx, __u64 off)
 }
 
 static inline __u64 parse_ip(struct __sk_buff *skb, __u64 nhoff, __u64 *ip_proto,
-                            struct bpf_flow_keys *flow)
+                            struct flow_key_record *flow)
 {
        __u64 verlen;
 
@@ -83,7 +83,7 @@ static inline __u64 parse_ip(struct __sk_buff *skb, __u64 nhoff, __u64 *ip_proto
 }
 
 static inline __u64 parse_ipv6(struct __sk_buff *skb, __u64 nhoff, __u64 *ip_proto,
-                              struct bpf_flow_keys *flow)
+                              struct flow_key_record *flow)
 {
        *ip_proto = load_byte(skb,
                              nhoff + offsetof(struct ipv6hdr, nexthdr));
@@ -96,7 +96,8 @@ static inline __u64 parse_ipv6(struct __sk_buff *skb, __u64 nhoff, __u64 *ip_pro
        return nhoff;
 }
 
-static inline bool flow_dissector(struct __sk_buff *skb, struct bpf_flow_keys *flow)
+static inline bool flow_dissector(struct __sk_buff *skb,
+                                 struct flow_key_record *flow)
 {
        __u64 nhoff = ETH_HLEN;
        __u64 ip_proto;
@@ -198,7 +199,7 @@ struct bpf_map_def SEC("maps") hash_map = {
 SEC("socket2")
 int bpf_prog2(struct __sk_buff *skb)
 {
-       struct bpf_flow_keys flow = {};
+       struct flow_key_record flow = {};
        struct pair *value;
        u32 key;