diff options
author | Paul Dagnelie <[email protected]> | 2018-10-09 14:05:13 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-10-09 14:05:13 -0700 |
commit | 0391690583a8c5129477cbdac476130abe4af776 (patch) | |
tree | 7e38f5c23407d26f7f19b86f04e0cea7049d5b26 /lib | |
parent | 5e8ff25644dfed600b4bdfb201ea6db003b4ad2c (diff) |
Refactor dmu_recv into its own file
This change moves the bottom half of dmu_send.c (where the receive
logic is kept) into a new file, dmu_recv.c, and does similarly
for receive-related changes in header files.
Reviewed by: Matthew Ahrens <[email protected]>
Reviewed by: Brian Behlendorf <[email protected]>
Signed-off-by: Paul Dagnelie <[email protected]>
Closes #7982
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 149706a27..e10f20dd9 100644 --- a/lib/libzpool/Makefile.am +++ b/lib/libzpool/Makefile.am @@ -58,6 +58,7 @@ KERNEL_C = \ dmu_diff.c \ dmu_object.c \ dmu_objset.c \ + dmu_recv.c \ dmu_send.c \ dmu_traverse.c \ dmu_tx.c \ |