The patch titled Subject: mm: export add_swap_extent() has been added to the -mm tree. Its filename is mm-export-add_swap_extent.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-export-add_swap_extent.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-export-add_swap_extent.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Omar Sandoval <osandov@xxxxxx> Subject: mm: export add_swap_extent() Btrfs currently does not support swap files because swap's use of bmap does not work with copy-on-write and multiple devices. See 35054394c4b3 ("Btrfs: stop providing a bmap operation to avoid swapfile corruptions"). However, the swap code has a mechanism for the filesystem to manually add swap extents using add_swap_extent() from the ->swap_activate() aop. iomap has done this since 67482129cdab ("iomap: add a swapfile activation function"). Btrfs will do the same in a later patch, so export add_swap_extent(). Link: http://lkml.kernel.org/r/bb1208575e02829aae51b538709476964f97b1ea.1536704650.git.osandov@xxxxxx Signed-off-by: Omar Sandoval <osandov@xxxxxx> Reviewed-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Cc: David Sterba <dsterba@xxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Nikolay Borisov <nborisov@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/swapfile.c | 1 + 1 file changed, 1 insertion(+) --- a/mm/swapfile.c~mm-export-add_swap_extent +++ a/mm/swapfile.c @@ -2354,6 +2354,7 @@ add_swap_extent(struct swap_info_struct list_add_tail(&new_se->list, &sis->first_swap_extent.list); return 1; } +EXPORT_SYMBOL_GPL(add_swap_extent); /* * A `swap extent' is a simple thing which maps a contiguous range of pages _ Patches currently in -mm which might be from osandov@xxxxxx are mm-split-swp_file-into-swp_activated-and-swp_fs.patch mm-export-add_swap_extent.patch