A silly little incremental fix to this, so I follow the rules and keep the enumeration in sysctl.h in ascending order. Who knows maintaining this property might improve the readability of sysctl.h. This is one more issue caught in the review. Signed-off-by: Andrew Morton --- include/linux/sysctl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN include/linux/sysctl.h~sysctl-s390-move-sysctl-definitions-to-sysctlh-fix include/linux/sysctl.h --- a/include/linux/sysctl.h~sysctl-s390-move-sysctl-definitions-to-sysctlh-fix +++ a/include/linux/sysctl.h @@ -70,11 +70,11 @@ enum CTL_BUS=8, /* Busses */ CTL_ABI=9, /* Binary emulation */ CTL_CPU=10, /* CPU stuff (speed scaling, etc) */ + CTL_APPLDATA=2120, /* s390 appldata */ + CTL_S390DBF=5677, /* s390 debug */ CTL_SUNRPC=7249, /* sunrpc debug */ CTL_PM=9899, /* frv power management */ CTL_FRV=9898, /* frv specific sysctls */ - CTL_S390DBF=5677, /* s390 debug */ - CTL_APPLDATA=2120, /* s390 appldata */ }; /* CTL_BUS names: */ _