Lines Matching +full:max +full:- +full:reason
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
120 FNe(MAX)
123 * enum skb_drop_reason - the reasons of skb drops
125 * The reason of skb drop, which is used in kfree_skb_reason().
129 * @SKB_NOT_DROPPED_YET: skb is not dropped yet (used for no-drop case)
134 /** @SKB_DROP_REASON_NOT_SPECIFIED: drop reason is not specified */
138 * Reason could be one of three cases:
152 * or SOCK_SEQPACKET socket re-connect()s to another socket or notices
157 * @SKB_DROP_REASON_UNIX_SKIP_OOB: Out-Of-Band data is skipped by
183 * document for rp_filter in ip-sysctl.rst for more information
201 * @SKB_DROP_REASON_TCP_AUTH_HDR: TCP-MD5 or TCP-AO hashes are met
221 * @SKB_DROP_REASON_TCP_AONOTFOUND: no TCP-AO hash and one was expected,
226 * @SKB_DROP_REASON_TCP_AOUNEXPECTED: TCP-AO hash is present and it
231 * @SKB_DROP_REASON_TCP_AOKEYNOTFOUND: TCP-AO key is unknown,
236 * @SKB_DROP_REASON_TCP_AOFAILURE: TCP-AO hash is wrong,
400 * e.g., the IFF_UP is not set, or driver specific tun->tfiles[txq]
505 * @SKB_DROP_REASON_TC_RECLASSIFY_LOOP: tc exceeded max reclassify loop
559 * shouldn't be used as a real 'reason' - only for tracing code gen
572 #define SKB_DR_INIT(name, reason) \ argument
573 enum skb_drop_reason name = SKB_DROP_REASON_##reason
576 #define SKB_DR_SET(name, reason) \ argument
577 (name = SKB_DROP_REASON_##reason)
578 #define SKB_DR_OR(name, reason) \ argument
582 SKB_DR_SET(name, reason); \