On Tue, 2024-10-08 at 09:23 +0200, Felix Fietkau wrote: > This can be used to indicate that the user is not interested in receiving > locally sent packets on the monitor interface. > > Signed-off-by: Felix Fietkau <nbd@xxxxxxxx> > --- > include/net/cfg80211.h | 1 + > include/uapi/linux/nl80211.h | 2 ++ > net/wireless/nl80211.c | 1 + > 3 files changed, 4 insertions(+) > > diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h > index 4dd537da0873..de6c585fb1c2 100644 > --- a/include/net/cfg80211.h > +++ b/include/net/cfg80211.h > @@ -2278,6 +2278,7 @@ enum monitor_flags { > MONITOR_FLAG_OTHER_BSS = BIT(NL80211_MNTR_FLAG_OTHER_BSS), > MONITOR_FLAG_COOK_FRAMES = BIT(NL80211_MNTR_FLAG_COOK_FRAMES), > MONITOR_FLAG_ACTIVE = BIT(NL80211_MNTR_FLAG_ACTIVE), > + MONITOR_FLAG_SKIP_TX = BIT(NL80211_MNTR_FLAG_SKIP_TX), > You forgot the documentation for this. johannes