Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1735534 > unrolled thread
| Started by | Minchan Kim <minchan@kernel.org> |
|---|---|
| First post | 2017-09-20 07:50 +0200 |
| Last post | 2017-09-20 07:50 +0200 |
| Articles | 2 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH v2 0/4] skip swapcache for super fast device Minchan Kim <minchan@kernel.org> - 2017-09-20 07:50 +0200
[PATCH v2 3/4] mm:swap: introduce SWP_SYNCHRONOUS_IO Minchan Kim <minchan@kernel.org> - 2017-09-20 07:50 +0200
| From | Minchan Kim <minchan@kernel.org> |
|---|---|
| Date | 2017-09-20 07:50 +0200 |
| Subject | [PATCH v2 0/4] skip swapcache for super fast device |
| Message-ID | <urG3v-7ea-7@gated-at.bofh.it> |
With fast swap storage, platform want to use swap more aggressively
and swap-in is crucial to application latency.
The rw_page based synchronous devices like zram, pmem and btt are such
fast storage. When I profile swapin performance with zram lz4 decompress
test, S/W overhead is more than 70%. Maybe, it would be bigger in nvdimm.
This patch aims for reducing swap-in latency via skipping swapcache
if swap device is synchronous device like rw_page based device.
It enhances 45% my swapin test(5G sequential swapin, no readahead,
from 2.41sec to 1.64sec).
Andrew, [1] is zram specific patch so could be applied separately
but this patch is based on that so I include it in this series.
* From v1
* style fix
* a bug fix
* drop page-cluster based readahead off
* This regression could be solved by other patch from Huang.
http://lkml.kernel.org/r/87tw04in60.fsf@yhuang-dev.intel.com
Minchan Kim (4):
[1] zram: set BDI_CAP_STABLE_WRITES once
[2] bdi: introduce BDI_CAP_SYNCHRONOUS_IO
[3] mm:swap: introduce SWP_SYNCHRONOUS_IO
[4] mm:swap: skip swapcache for swapin of synchronous device
drivers/block/brd.c | 2 ++
drivers/block/zram/zram_drv.c | 16 +++++--------
drivers/nvdimm/btt.c | 3 +++
drivers/nvdimm/pmem.c | 2 ++
include/linux/backing-dev.h | 8 +++++++
include/linux/swap.h | 14 +++++++++++-
mm/memory.c | 52 ++++++++++++++++++++++++++++++-------------
mm/page_io.c | 6 ++---
mm/swapfile.c | 14 ++++++++----
9 files changed, 83 insertions(+), 34 deletions(-)
--
2.7.4
[toc] | [next] | [standalone]
| From | Minchan Kim <minchan@kernel.org> |
|---|---|
| Date | 2017-09-20 07:50 +0200 |
| Subject | [PATCH v2 3/4] mm:swap: introduce SWP_SYNCHRONOUS_IO |
| Message-ID | <urG3w-7ea-21@gated-at.bofh.it> |
| In reply to | #1735534 |
If rw-page based fast storage is used for swap devices, we need to
detect it to enhance swap IO operations.
This patch is preparation for optimizing of swap-in operation with
next patch.
Cc: Hugh Dickins <hughd@google.com>
Signed-off-by: Minchan Kim <minchan@kernel.org>
---
include/linux/swap.h | 3 ++-
mm/swapfile.c | 3 +++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/include/linux/swap.h b/include/linux/swap.h
index 8a807292037f..fbb33919d1c6 100644
--- a/include/linux/swap.h
+++ b/include/linux/swap.h
@@ -170,8 +170,9 @@ enum {
SWP_AREA_DISCARD = (1 << 8), /* single-time swap area discards */
SWP_PAGE_DISCARD = (1 << 9), /* freed swap page-cluster discards */
SWP_STABLE_WRITES = (1 << 10), /* no overwrite PG_writeback pages */
+ SWP_SYNCHRONOUS_IO = (1 << 11), /* synchronous IO is efficient */
/* add others here before... */
- SWP_SCANNING = (1 << 11), /* refcount in scan_swap_map */
+ SWP_SCANNING = (1 << 12), /* refcount in scan_swap_map */
};
#define SWAP_CLUSTER_MAX 32UL
diff --git a/mm/swapfile.c b/mm/swapfile.c
index bf91dc9e7a79..1305591cde4d 100644
--- a/mm/swapfile.c
+++ b/mm/swapfile.c
@@ -3168,6 +3168,9 @@ SYSCALL_DEFINE2(swapon, const char __user *, specialfile, int, swap_flags)
if (bdi_cap_stable_pages_required(inode_to_bdi(inode)))
p->flags |= SWP_STABLE_WRITES;
+ if (bdi_cap_synchronous_io(inode_to_bdi(inode)))
+ p->flags |= SWP_SYNCHRONOUS_IO;
+
if (p->bdev && blk_queue_nonrot(bdev_get_queue(p->bdev))) {
int cpu;
unsigned long ci, nr_cluster;
--
2.7.4
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web