]> git.proxmox.com Git - mirror_zfs.git/commit
Cleanup linux module kbuild files
authorArvind Sankar <nivedita@alum.mit.edu>
Sun, 7 Jun 2020 21:03:12 +0000 (17:03 -0400)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 10 Jun 2020 16:24:15 +0000 (09:24 -0700)
commit71504277ae5537007a99864e53a3b5ceb211a660
tree7bd3dacc2432c27ce0a60516c795a38477adcfd8
parentdd4bc569b9f73e8c2445bed90d82c92d98aada03
Cleanup linux module kbuild files

The linux module can be built either as an external module, or compiled
into the kernel, using copy-builtin. The source and build directories
are slightly different between the two cases, and currently, compiling
into the kernel still refers to some files from the configured ZFS
source tree, instead of the copies inside the kernel source tree. There
is also duplication between copy-builtin, which creates a Kbuild file to
build ZFS inside the kernel tree, and the top-level module/Makefile.in.

Fix this by moving the list of modules and the CFLAGS settings into a
new module/Kbuild.in, which will be used by the kernel kbuild
infrastructure, and using KBUILD_EXTMOD to distinguish the two cases
within the Makefiles, in order to choose appropriate include
directories etc.

Module CFLAGS setting is simplified by using subdir-ccflags-y (available
since 2.6.30) to set them in the top-level Kbuild instead of each
individual module. The disabling of -Wunused-but-set-variable is removed
from the lua and zfs modules. The variable that the Makefile uses is
actually not defined, so this has no effect; and the warning has long
been disabled by the kernel Makefile itself.

The target_cpu definition in module/{zfs,zcommon} is removed as it was
replaced by use of CONFIG_SPARC64 in
  commit 70835c5b755e ("Unify target_cpu handling")

os/linux/{spl,zfs} are removed from obj-m, as they are not modules in
themselves, but are included by the Makefile in the spl and zfs module
directories. The vestigial Makefiles in os and os/linux are removed.

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu>
Closes #10379
Closes #10421
16 files changed:
configure.ac
copy-builtin
module/.gitignore
module/Kbuild.in [new file with mode: 0644]
module/Makefile.in
module/avl/Makefile.in
module/icp/Makefile.in
module/lua/Makefile.in
module/nvpair/Makefile.in
module/os/Makefile.in [deleted file]
module/os/linux/Makefile.in [deleted file]
module/os/linux/zfs/Makefile.in
module/spl/Makefile.in
module/unicode/Makefile.in
module/zcommon/Makefile.in
module/zfs/Makefile.in