* [RFC PATCH] mm: skip GFP_IO if swap is zram only
@ 2022-10-10 11:00 zhaoyang.huang
2022-10-10 13:09 ` Christoph Hellwig
0 siblings, 1 reply; 2+ messages in thread
From: zhaoyang.huang @ 2022-10-10 11:00 UTC (permalink / raw)
To: Andrew Morton, Matthew Wilcox, Vlastimil Babka, Zhaoyang Huang,
linux-mm, linux-block, linux-kernel, ke.wang, steve.kang
From: Zhaoyang Huang <zhaoyang.huang@unisoc.com>
__GFP_IO is believed to prevent the allocation being suspended due to accessing
physical block devices when reclaiming dirty pages. Zram is not considered as
such kind of device from kernel perspective of view. Do swap things if the system
is zram only.
Signed-off-by: Zhaoyang Huang <zhaoyang.huang@unisoc.com>
---
include/linux/swap.h | 1 +
include/linux/swapfile.h | 1 -
mm/swapfile.c | 7 +++++++
mm/vmscan.c | 3 ++-
4 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/include/linux/swap.h b/include/linux/swap.h
index 43150b9..c160b2e 100644
--- a/include/linux/swap.h
+++ b/include/linux/swap.h
@@ -505,6 +505,7 @@ static inline long get_nr_swap_pages(void)
extern int init_swap_address_space(unsigned int type, unsigned long nr_pages);
extern void exit_swap_address_space(unsigned int type);
extern struct swap_info_struct *get_swap_device(swp_entry_t entry);
+extern bool if_swap_zram_only(void);
sector_t swap_page_sector(struct page *page);
static inline void put_swap_device(struct swap_info_struct *si)
diff --git a/include/linux/swapfile.h b/include/linux/swapfile.h
index 5407854..e229c36 100644
--- a/include/linux/swapfile.h
+++ b/include/linux/swapfile.h
@@ -9,5 +9,4 @@
extern struct swap_info_struct *swap_info[];
extern unsigned long generic_max_swapfile_size(void);
extern unsigned long max_swapfile_size(void);
-
#endif /* _LINUX_SWAPFILE_H */
diff --git a/mm/swapfile.c b/mm/swapfile.c
index 1fdccd2..e1b2969 100644
--- a/mm/swapfile.c
+++ b/mm/swapfile.c
@@ -3663,6 +3663,13 @@ void __cgroup_throttle_swaprate(struct page *page, gfp_t gfp_mask)
}
#endif
+bool if_swap_zram_only(void)
+{
+ return ((nr_swapfiles == 1)
+ && !strncmp(swap_info[0]->bdev->bd_disk->disk_name, "zram", 4));
+}
+EXPORT_SYMBOL_GPL(if_swap_zram_only);
+
static int __init swapfile_init(void)
{
int nid;
diff --git a/mm/vmscan.c b/mm/vmscan.c
index b2b1431..37500b5 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -1770,7 +1770,8 @@ static unsigned int shrink_page_list(struct list_head *page_list,
*/
if (folio_test_anon(folio) && folio_test_swapbacked(folio)) {
if (!folio_test_swapcache(folio)) {
- if (!(sc->gfp_mask & __GFP_IO))
+ if (!(sc->gfp_mask & __GFP_IO)
+ && !if_swap_zram_only())
goto keep_locked;
if (folio_maybe_dma_pinned(folio))
goto keep_locked;
--
1.9.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [RFC PATCH] mm: skip GFP_IO if swap is zram only
2022-10-10 11:00 [RFC PATCH] mm: skip GFP_IO if swap is zram only zhaoyang.huang
@ 2022-10-10 13:09 ` Christoph Hellwig
0 siblings, 0 replies; 2+ messages in thread
From: Christoph Hellwig @ 2022-10-10 13:09 UTC (permalink / raw)
To: zhaoyang.huang
Cc: Andrew Morton, Matthew Wilcox, Vlastimil Babka, Zhaoyang Huang,
linux-mm, linux-block, linux-kernel, ke.wang, steve.kang
On Mon, Oct 10, 2022 at 07:00:22PM +0800, zhaoyang.huang wrote:
> From: Zhaoyang Huang <zhaoyang.huang@unisoc.com>
>
> __GFP_IO is believed to prevent the allocation being suspended due to accessing
> physical block devices when reclaiming dirty pages. Zram is not considered as
> such kind of device from kernel perspective of view. Do swap things if the system
> is zram only.
No, zram is not in any way special, and for sure not important enough
to add special case hacks to the VM code.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-10-10 13:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-10 11:00 [RFC PATCH] mm: skip GFP_IO if swap is zram only zhaoyang.huang
2022-10-10 13:09 ` Christoph Hellwig
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox