Lines Matching +full:max +full:- +full:reason
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
122 FNe(MAX)
125 * enum skb_drop_reason - the reasons of skb drops
127 * The reason of skb drop, which is used in kfree_skb_reason().
131 * @SKB_NOT_DROPPED_YET: skb is not dropped yet (used for no-drop case)
136 /** @SKB_DROP_REASON_NOT_SPECIFIED: drop reason is not specified */
140 * Reason could be one of three cases:
154 * or SOCK_SEQPACKET socket re-connect()s to another socket or notices
159 * @SKB_DROP_REASON_UNIX_SKIP_OOB: Out-Of-Band data is skipped by
185 * document for rp_filter in ip-sysctl.rst for more information
203 * @SKB_DROP_REASON_TCP_AUTH_HDR: TCP-MD5 or TCP-AO hashes are met
223 * @SKB_DROP_REASON_TCP_AONOTFOUND: no TCP-AO hash and one was expected,
228 * @SKB_DROP_REASON_TCP_AOUNEXPECTED: TCP-AO hash is present and it
233 * @SKB_DROP_REASON_TCP_AOKEYNOTFOUND: TCP-AO key is unknown,
238 * @SKB_DROP_REASON_TCP_AOFAILURE: TCP-AO hash is wrong,
409 * e.g., the IFF_UP is not set, or driver specific tun->tfiles[txq]
514 * @SKB_DROP_REASON_TC_RECLASSIFY_LOOP: tc exceeded max reclassify loop
568 * shouldn't be used as a real 'reason' - only for tracing code gen
581 #define SKB_DR_INIT(name, reason) \ argument
582 enum skb_drop_reason name = SKB_DROP_REASON_##reason
585 #define SKB_DR_SET(name, reason) \ argument
586 (name = SKB_DROP_REASON_##reason)
587 #define SKB_DR_OR(name, reason) \ argument
591 SKB_DR_SET(name, reason); \