diff options
author | Stanislav Fomichev <sdf@google.com> | 2019-05-31 14:05:06 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-06-03 14:56:35 -0700 |
commit | 1cc26450a855aa35a6d515be14c539944d5f9648 (patch) | |
tree | 7dd93ed0fb6182d082b7a8e92193612e88d5e83a /include | |
parent | 6c018b738a11eb6e56b20e21e362af28dc19e0a6 (diff) | |
download | linux-1cc26450a855aa35a6d515be14c539944d5f9648.tar.bz2 |
flow_dissector: remove unused FLOW_DISSECTOR_F_STOP_AT_L3 flag
This flag is not used by any caller, remove it.
Signed-off-by: Stanislav Fomichev <sdf@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/flow_dissector.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/net/flow_dissector.h b/include/net/flow_dissector.h index 7c5a8d9a8d2a..797e19c2fc40 100644 --- a/include/net/flow_dissector.h +++ b/include/net/flow_dissector.h @@ -229,9 +229,8 @@ enum flow_dissector_key_id { }; #define FLOW_DISSECTOR_F_PARSE_1ST_FRAG BIT(0) -#define FLOW_DISSECTOR_F_STOP_AT_L3 BIT(1) -#define FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL BIT(2) -#define FLOW_DISSECTOR_F_STOP_AT_ENCAP BIT(3) +#define FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL BIT(1) +#define FLOW_DISSECTOR_F_STOP_AT_ENCAP BIT(2) struct flow_dissector_key { enum flow_dissector_key_id key_id; |