On Thu, 2018-09-20 at 16:56 +0200, Johannes Berg wrote: > > > > > @@ -172,7 +172,6 @@ enum { > > > NLA_FLAG, > > > NLA_MSECS, > > > NLA_NESTED, > > > - NLA_NESTED_COMPAT, > > > NLA_NUL_STRING, > > > NLA_BINARY, > > > NLA_S8, > > > > ... > > > > Is it safe to remove an item from this emun ? > > I believe it is, since it's not part of uapi. At least as long as you > recompile all netlink policies afterwards. That came out confusing. It isn't UAPI, so the renumbering doesn't matter, at least as long as you don't try to load a module compiled with one version of the enum into a kernel compiled with the other, or something strange like that. johannes