Lines Matching +full:max +full:- +full:reason
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
92 FNe(MAX)
95 * enum skb_drop_reason - the reasons of skb drops
97 * The reason of skb drop, which is used in kfree_skb_reason().
101 * @SKB_NOT_DROPPED_YET: skb is not dropped yet (used for no-drop case)
106 /** @SKB_DROP_REASON_NOT_SPECIFIED: drop reason is not specified */
134 * document for rp_filter in ip-sysctl.rst for more information
154 * @SKB_DROP_REASON_TCP_AUTH_HDR: TCP-MD5 or TCP-AO hashes are met
174 * @SKB_DROP_REASON_TCP_AONOTFOUND: no TCP-AO hash and one was expected,
179 * @SKB_DROP_REASON_TCP_AOUNEXPECTED: TCP-AO hash is present and it
184 * @SKB_DROP_REASON_TCP_AOKEYNOTFOUND: TCP-AO key is unknown,
189 * @SKB_DROP_REASON_TCP_AOFAILURE: TCP-AO hash is wrong,
305 * e.g., the IFF_UP is not set, or driver specific tun->tfiles[txq]
395 * @SKB_DROP_REASON_TC_RECLASSIFY_LOOP: tc exceeded max reclassify loop
401 * shouldn't be used as a real 'reason' - only for tracing code gen
414 #define SKB_DR_INIT(name, reason) \ argument
415 enum skb_drop_reason name = SKB_DROP_REASON_##reason
418 #define SKB_DR_SET(name, reason) \ argument
419 (name = SKB_DROP_REASON_##reason)
420 #define SKB_DR_OR(name, reason) \ argument
424 SKB_DR_SET(name, reason); \