summaryrefslogtreecommitdiffstats
path: root/fs (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge tag 'mm-stable-2023-11-01-14-33' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds2023-11-0364-1014/+1668
|\
| * mempolicy: alloc_pages_mpol() for NUMA policy without vmaHugh Dickins2023-10-261-2/+3
| * kernfs: drop shared NUMA mempolicy hooksHugh Dickins2023-10-261-49/+0
| * hugetlbfs: drop shared NUMA mempolicy pretenceHugh Dickins2023-10-261-40/+1
| * ext4: add __GFP_NOWARN to GFP_NOWAIT in readaheadHugh Dickins2023-10-261-1/+1
| * buffer: remove folio_create_empty_buffers()Matthew Wilcox (Oracle)2023-10-2617-31/+24
| * ufs: remove ufs_get_locked_page()Matthew Wilcox (Oracle)2023-10-262-16/+0
| * ufs: convert ufs_change_blocknr() to use foliosMatthew Wilcox (Oracle)2023-10-261-11/+9
| * ufs: use ufs_get_locked_folio() in ufs_alloc_lastblock()Matthew Wilcox (Oracle)2023-10-261-13/+12
| * ufs: add ufs_get_locked_folio and ufs_put_locked_folioMatthew Wilcox (Oracle)2023-10-262-22/+34
| * reiserfs: convert writepage to use a folioMatthew Wilcox (Oracle)2023-10-261-40/+40
| * ocfs2: convert ocfs2_map_page_blocks to use a folioMatthew Wilcox (Oracle)2023-10-261-9/+10
| * ntfs3: convert ntfs_zero_range() to use a folioMatthew Wilcox (Oracle)2023-10-261-15/+16
| * ntfs: convert ntfs_prepare_pages_for_non_resident_write() to foliosMatthew Wilcox (Oracle)2023-10-261-48/+41
| * ntfs: convert ntfs_writepage to use a folioMatthew Wilcox (Oracle)2023-10-261-111/+100
| * ntfs: convert ntfs_read_block() to use a folioMatthew Wilcox (Oracle)2023-10-261-25/+19
| * nilfs2: convert nilfs_lookup_dirty_data_buffers to use folio_create_empty_buf...Matthew Wilcox (Oracle)2023-10-261-4/+3
| * nilfs2: remove nilfs_page_get_nth_blockMatthew Wilcox (Oracle)2023-10-261-6/+0
| * nilfs2: convert nilfs_mdt_get_frozen_buffer to use a folioMatthew Wilcox (Oracle)2023-10-261-7/+9
| * nilfs2: convert nilfs_mdt_forget_block() to use a folioMatthew Wilcox (Oracle)2023-10-261-16/+14
| * nilfs2: convert nilfs_copy_page() to nilfs_copy_folio()Matthew Wilcox (Oracle)2023-10-261-24/+26
| * nilfs2: convert nilfs_grab_buffer() to use a folioMatthew Wilcox (Oracle)2023-10-261-13/+13
| * nilfs2: convert nilfs_mdt_freeze_buffer to use a folioMatthew Wilcox (Oracle)2023-10-261-9/+11
| * gfs2: convert gfs2_write_buf_to_page() to use a folioMatthew Wilcox (Oracle)2023-10-261-18/+19
| * gfs2: convert gfs2_getjdatabuf to use a folioMatthew Wilcox (Oracle)2023-10-261-14/+8
| * gfs2: convert gfs2_getbuf() to foliosMatthew Wilcox (Oracle)2023-10-261-22/+17
| * gfs2: convert inode unstuffing to use a folioMatthew Wilcox (Oracle)2023-10-261-25/+23
| * buffer: add get_nth_bh()Matthew Wilcox (Oracle)2023-10-261-6/+1
| * ext4: convert to folio_create_empty_buffersMatthew Wilcox (Oracle)2023-10-262-15/+10
| * mpage: convert map_buffer_to_folio() to folio_create_empty_buffers()Matthew Wilcox (Oracle)2023-10-261-2/+1
| * buffer: make folio_create_empty_buffers() return a buffer_headMatthew Wilcox (Oracle)2023-10-261-11/+13
| * mm: update memfd seal write check to include F_SEAL_WRITELorenzo Stoakes2023-10-181-1/+1
| * mm: abstract the vma_merge()/split_vma() pattern for mprotect() et al.Lorenzo Stoakes2023-10-181-52/+18
| * iomap: use folio_end_read()Matthew Wilcox (Oracle)2023-10-181-3/+1
| * buffer: use folio_end_read()Matthew Wilcox (Oracle)2023-10-181-12/+4
| * ext4: use folio_end_read()Matthew Wilcox (Oracle)2023-10-181-11/+3
| * iomap: protect read_bytes_pending with the state_lockMatthew Wilcox (Oracle)2023-10-181-12/+25
| * iomap: hold state_lock over call to ifs_set_range_uptodate()Matthew Wilcox (Oracle)2023-10-181-9/+11
| * fs/proc/task_mmu: add fast paths to get/clear PAGE_IS_WRITTEN flagMuhammad Usama Anjum2023-10-181-0/+36
| * fs/proc/task_mmu: implement IOCTL to get and optionally clear info about PTEsMuhammad Usama Anjum2023-10-181-0/+692
| * userfaultfd: UFFD_FEATURE_WP_ASYNCPeter Xu2023-10-181-4/+22
| * mm/filemap: remove hugetlb special casing in filemap.cSidhartha Kumar2023-10-171-18/+19
| * fs: use nth_page() in place of direct struct page manipulationZi Yan2023-10-041-2/+2
| * buffer: remove __getblk_gfp()Matthew Wilcox (Oracle)2023-10-041-25/+11
| * ext4: call bdev_getblk() from sb_getblk_gfp()Matthew Wilcox (Oracle)2023-10-041-2/+8
| * buffer: use bdev_getblk() to avoid memory reclaim in readahead pathMatthew Wilcox (Oracle)2023-10-041-1/+3
| * ext4: use bdev_getblk() to avoid memory reclaim in readahead pathMatthew Wilcox (Oracle)2023-10-041-1/+2
| * buffer: hoist GFP flags from grow_dev_page() to __getblk_gfp()Matthew Wilcox (Oracle)2023-10-041-21/+40
| * buffer: pass GFP flags to folio_alloc_buffers()Matthew Wilcox (Oracle)2023-10-041-8/+9
| * mm: shrinker: convert shrinker_rwsem to mutexQi Zheng2023-10-041-1/+1