Message ID | 20210324194332.153658-1-idosch@idosch.org |
---|---|
State | New |
Headers | show |
Series | [net] psample: Fix user API breakage | expand |
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Wed, 24 Mar 2021 21:43:32 +0200 you wrote: > From: Ido Schimmel <idosch@nvidia.com> > > Cited commit added a new attribute before the existing group reference > count attribute, thereby changing its value and breaking existing > applications on new kernels. > > Before: > > [...] Here is the summary with links: - [net] psample: Fix user API breakage https://git.kernel.org/netdev/net/c/e43accba9b07 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/include/uapi/linux/psample.h b/include/uapi/linux/psample.h index aea26ab1431c..bff5032c98df 100644 --- a/include/uapi/linux/psample.h +++ b/include/uapi/linux/psample.h @@ -3,7 +3,6 @@ #define __UAPI_PSAMPLE_H enum { - /* sampled packet metadata */ PSAMPLE_ATTR_IIFINDEX, PSAMPLE_ATTR_OIFINDEX, PSAMPLE_ATTR_ORIGSIZE, @@ -11,10 +10,8 @@ enum { PSAMPLE_ATTR_GROUP_SEQ, PSAMPLE_ATTR_SAMPLE_RATE, PSAMPLE_ATTR_DATA, - PSAMPLE_ATTR_TUNNEL, - - /* commands attributes */ PSAMPLE_ATTR_GROUP_REFCOUNT, + PSAMPLE_ATTR_TUNNEL, __PSAMPLE_ATTR_MAX };