Age | Commit message (Expand) | Author | Files | Lines |
2020-06-02 | mm/swapfile.c: __swap_entry_free() always free 1 entry | Wei Yang | 1 | -4/+5 |
2020-06-02 | swap: try to scan more free slots even when fragmented | Huang Ying | 1 | -0/+22 |
2020-06-02 | mm/swapfile.c: omit a duplicate code by compare tmp and max first | Wei Yang | 1 | -10/+8 |
2020-06-02 | mm/swapfile.c: tmp is always smaller than max | Wei Yang | 1 | -1/+1 |
2020-06-02 | mm/swapfile.c: found_free could be represented by (tmp < max) | Wei Yang | 1 | -8/+3 |
2020-06-02 | mm/swapfile.c: remove the extra check in scan_swap_map_slots() | Wei Yang | 1 | -3/+0 |
2020-06-02 | mm/swapfile.c: simplify the calculation of n_goal | Wei Yang | 1 | -5/+1 |
2020-06-02 | mm/swapfile.c: remove the unnecessary goto for SSD case | Wei Yang | 1 | -5/+1 |
2020-06-02 | mm/swapfile.c: explicitly show ssd/non-ssd is handled mutually exclusive | Wei Yang | 1 | -7/+3 |
2020-06-02 | mm/swapfile.c: offset is only used when there is more slots | Wei Yang | 1 | -3/+1 |
2020-06-02 | mm: swap: properly update readahead statistics in unuse_pte_range() | Andrea Righi | 1 | -4/+8 |
2020-06-02 | mm/swapfile: use list_{prev,next}_entry() instead of open-coding | chenqiwu | 1 | -10/+6 |
2020-04-07 | proc: faster open/read/close with "permanent" files | Alexey Dobriyan | 1 | -0/+1 |
2020-04-02 | mm/swapfile: fix data races in try_to_unuse() | Qian Cai | 1 | -4/+4 |
2020-04-02 | mm/swapfile.c: fix comments for swapcache_prepare | Chen Wandun | 1 | -1/+1 |
2020-03-29 | mm/swapfile.c: move inode_lock out of claim_swapfile | Naohiro Aota | 1 | -21/+20 |
2020-02-21 | mm/swapfile.c: fix a comment in sys_swapon() | Christoph Hellwig | 1 | -1/+1 |
2020-02-04 | proc: convert everything to "struct proc_ops" | Alexey Dobriyan | 1 | -7/+7 |
2020-01-31 | mm/swapfile.c: swap_next should increase position index | Vasily Averin | 1 | -1/+1 |
2019-12-01 | mm, swap: disallow swapon() on zoned block devices | Naohiro Aota | 1 | -0/+7 |
2019-08-20 | vfs: don't allow writes to swap files | Darrick J. Wong | 1 | -1/+11 |
2019-08-20 | mm: set S_SWAPFILE on blockdev swap devices | Darrick J. Wong | 1 | -16/+15 |
2019-07-12 | mm, swap: use rbtree for swap_extent | Aaron Lu | 1 | -62/+75 |
2019-07-12 | mm, swap: fix race between swapoff and some swap operations | Huang Ying | 1 | -32/+122 |
2019-05-21 | treewide: Add SPDX license identifier for missed files | Thomas Gleixner | 1 | -0/+1 |
2019-04-19 | mm: swapoff: shmem_unuse() stop eviction without igrab() | Hugh Dickins | 1 | -6/+5 |
2019-04-19 | mm: swapoff: take notice of completion sooner | Hugh Dickins | 1 | -8/+11 |
2019-04-19 | mm: swapoff: remove too limiting SWAP_UNUSE_MAX_TRIES | Hugh Dickins | 1 | -8/+8 |
2019-03-06 | mm/swapfile.c: use struct_size() in kvzalloc() | Gustavo A. R. Silva | 1 | -2/+1 |
2019-03-06 | numa: make "nr_node_ids" unsigned int | Alexey Dobriyan | 1 | -1/+1 |
2019-03-06 | mm, swap: bounds check swap_info array accesses to avoid NULL derefs | Daniel Jordan | 1 | -22/+29 |
2019-03-06 | mm: rid swapoff of quadratic complexity | Vineeth Remanan Pillai | 1 | -270/+163 |
2018-12-28 | mm, swap: fix swapoff with KSM pages | Huang Ying | 1 | -1/+2 |
2018-12-28 | mm/swap: use nr_node_ids for avail_lists in swap_info_struct | Aaron Lu | 1 | -1/+2 |
2018-11-18 | mm/swapfile.c: use kvzalloc for swap_info_struct allocation | Vasily Averin | 1 | -3/+3 |
2018-10-27 | mm: export add_swap_extent() | Omar Sandoval | 1 | -0/+1 |
2018-10-27 | mm: split SWP_FILE into SWP_ACTIVATED and SWP_FS | Omar Sandoval | 1 | -5/+8 |
2018-10-27 | mm/swapfile.c: clear si->swap_map[] in swap_free_cluster() | Huang Ying | 1 | -3/+1 |
2018-10-27 | mm/swapfile.c: call free_swap_slot() in __swap_entry_free() | Huang Ying | 1 | -6/+4 |
2018-10-27 | mm/swapfile.c: use __try_to_reclaim_swap() in free_swap_and_cache() | Huang Ying | 1 | -32/+25 |
2018-08-22 | mm/swapfile.c: put_swap_page: share more between huge/normal code path | Huang Ying | 1 | -10/+10 |
2018-08-22 | mm/swapfile.c: add __swap_entry_free_locked() | Huang Ying | 1 | -6/+14 |
2018-08-22 | mm, swap, get_swap_pages: use entry_size instead of cluster in parameter | Huang Ying | 1 | -8/+8 |
2018-08-22 | mm/swapfile.c: unify normal/huge code path in put_swap_page() | Huang Ying | 1 | -46/+37 |
2018-08-22 | mm/swapfile.c: unify normal/huge code path in swap_page_trans_huge_swapped() | Huang Ying | 1 | -4/+3 |
2018-08-22 | mm/swapfile.c: use swap_count() in swap_page_trans_huge_swapped() | Huang Ying | 1 | -2/+2 |
2018-08-22 | mm/swapfile.c: replace some #ifdef with IS_ENABLED() | Huang Ying | 1 | -40/+20 |
2018-08-22 | mm: swap: add comments to lock_cluster_or_swap_info() | Huang Ying | 1 | -2/+7 |
2018-08-14 | Merge tag 'for-4.19/block-20180812' of git://git.kernel.dk/linux-block | Linus Torvalds | 1 | -0/+31 |
2018-07-09 | memcontrol: schedule throttling if we are congested | Tejun Heo | 1 | -0/+31 |