bpf: fix whitespace for ENCAP_L2 defines in bpf.h
authorAlan Maguire <alan.maguire@oracle.com>
Fri, 12 Apr 2019 11:27:34 +0000 (12:27 +0100)
committerDaniel Borkmann <daniel@iogearbox.net>
Tue, 16 Apr 2019 07:54:21 +0000 (09:54 +0200)
replace tab after #define with space in line with rest of definitions

Signed-off-by: Alan Maguire <alan.maguire@oracle.com>
Acked-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
include/uapi/linux/bpf.h
tools/include/uapi/linux/bpf.h

index c26be24..704bb69 100644 (file)
@@ -2792,14 +2792,14 @@ enum bpf_func_id {
 /* BPF_FUNC_skb_adjust_room flags. */
 #define BPF_F_ADJ_ROOM_FIXED_GSO       (1ULL << 0)
 
-#define        BPF_ADJ_ROOM_ENCAP_L2_MASK      0xff
-#define        BPF_ADJ_ROOM_ENCAP_L2_SHIFT     56
+#define BPF_ADJ_ROOM_ENCAP_L2_MASK     0xff
+#define BPF_ADJ_ROOM_ENCAP_L2_SHIFT    56
 
 #define BPF_F_ADJ_ROOM_ENCAP_L3_IPV4   (1ULL << 1)
 #define BPF_F_ADJ_ROOM_ENCAP_L3_IPV6   (1ULL << 2)
 #define BPF_F_ADJ_ROOM_ENCAP_L4_GRE    (1ULL << 3)
 #define BPF_F_ADJ_ROOM_ENCAP_L4_UDP    (1ULL << 4)
-#define        BPF_F_ADJ_ROOM_ENCAP_L2(len)    (((__u64)len & \
+#define BPF_F_ADJ_ROOM_ENCAP_L2(len)   (((__u64)len & \
                                          BPF_ADJ_ROOM_ENCAP_L2_MASK) \
                                         << BPF_ADJ_ROOM_ENCAP_L2_SHIFT)
 
index c26be24..704bb69 100644 (file)
@@ -2792,14 +2792,14 @@ enum bpf_func_id {
 /* BPF_FUNC_skb_adjust_room flags. */
 #define BPF_F_ADJ_ROOM_FIXED_GSO       (1ULL << 0)
 
-#define        BPF_ADJ_ROOM_ENCAP_L2_MASK      0xff
-#define        BPF_ADJ_ROOM_ENCAP_L2_SHIFT     56
+#define BPF_ADJ_ROOM_ENCAP_L2_MASK     0xff
+#define BPF_ADJ_ROOM_ENCAP_L2_SHIFT    56
 
 #define BPF_F_ADJ_ROOM_ENCAP_L3_IPV4   (1ULL << 1)
 #define BPF_F_ADJ_ROOM_ENCAP_L3_IPV6   (1ULL << 2)
 #define BPF_F_ADJ_ROOM_ENCAP_L4_GRE    (1ULL << 3)
 #define BPF_F_ADJ_ROOM_ENCAP_L4_UDP    (1ULL << 4)
-#define        BPF_F_ADJ_ROOM_ENCAP_L2(len)    (((__u64)len & \
+#define BPF_F_ADJ_ROOM_ENCAP_L2(len)   (((__u64)len & \
                                          BPF_ADJ_ROOM_ENCAP_L2_MASK) \
                                         << BPF_ADJ_ROOM_ENCAP_L2_SHIFT)