fs: fix sysctls.c built
authorKefeng Wang <wangkefeng.wang@huawei.com>
Fri, 31 Mar 2023 08:45:02 +0000 (16:45 +0800)
committerLuis Chamberlain <mcgrof@kernel.org>
Thu, 13 Apr 2023 19:39:44 +0000 (12:39 -0700)
commite3184de9d46c2eebdb776face2e2662c6733331d
treefc01744dacefbc80f93e21b1b4c1942f1b418d33
parentb3f312c4815d7acf6c7f88f921544626c31bd24a
fs: fix sysctls.c built

'obj-$(CONFIG_SYSCTL) += sysctls.o' must be moved after "obj-y :=",
or it won't be built as it is overwrited.

Note that there is nothing that is going to break by linking
sysctl.o later, we were just being way to cautious and patches
have been updated to reflect these considerations and sent for
stable as well with the whole "base" stuff needing to be linked
prior to child sysctl tables that use that directory. All of
the kernel sysctl APIs always share the same directory, and races
against using it should end up re-using the same single created
directory.

And so something we can do eventually is do away with all the base stuff.
For now it's fine, it's not creating an issue. It is just a bit pedantic
and careful.

Fixes: ab171b952c6e ("fs: move namespace sysctls and declare fs base directory")
Cc: stable@vger.kernel.org # v5.17
Cc: Christian Brauner <brauner@kernel.org>
Cc: Kefeng Wang <wangkefeng.wang@huawei.com>
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
[mcgrof: enhanced commit log for stable criteria and clarify base stuff ]
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
fs/Makefile