diff options
author | Brian Atkinson <[email protected]> | 2020-05-10 13:23:52 -0600 |
---|---|---|
committer | GitHub <[email protected]> | 2020-05-10 12:23:52 -0700 |
commit | fc551d7efbbf26cc1671ddb51f2f0df57ec53ee7 (patch) | |
tree | 4e2759ebb1984272a46a46888ca7a998791369b2 /lib | |
parent | bd95f00d4b6aa185bf508f12d2cdbfbb2350b80e (diff) |
Combine OS-independent ABD Code into Common Source File
Reorganizing ABD code base so OS-independent ABD code has been placed
into a common abd.c file. OS-dependent ABD code has been left in each
OS's ABD source files, and these source files have been renamed to
abd_os.
The OS-independent ABD code is now under:
module/zfs/abd.c
With the OS-dependent code in:
module/os/linux/zfs/abd_os.c
module/os/freebsd/zfs/abd_os.c
Reviewed-by: Matthew Ahrens <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Brian Atkinson <[email protected]>
Closes #10293
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libzpool/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libzpool/Makefile.am b/lib/libzpool/Makefile.am index a9396105b..0e6a1058e 100644 --- a/lib/libzpool/Makefile.am +++ b/lib/libzpool/Makefile.am @@ -39,6 +39,7 @@ KERNEL_C = \ zpool_prop.c \ zprop_common.c \ abd.c \ + abd_os.c \ aggsum.c \ arc.c \ arc_os.c \ |