summaryrefslogtreecommitdiff
path: root/fs/squashfs
AgeCommit message (Expand)AuthorFilesLines
2025-10-20Coccinelle-based conversion to use ->i_state accessorsMateusz Guzik1-1/+1
2025-10-03Merge tag 'mm-nonmm-stable-2025-10-02-15-29' of git://git.kernel.org/pub/scm/...Linus Torvalds5-16/+164
2025-09-28Squashfs: reject negative file sizes in squashfs_read_inode()Phillip Lougher1-0/+4
2025-09-28Squashfs: add SEEK_DATA/SEEK_HOLE supportPhillip Lougher4-13/+130
2025-09-28Squashfs: add additional inode sanity checkingPhillip Lougher1-2/+18
2025-09-28Squashfs: fix uninit-value in squashfs_get_parentPhillip Lougher2-1/+8
2025-09-14squashfs: verify inode mode when loading from diskTetsuo Handa1-0/+4
2025-09-09block: add a bio_init_inline helperChristoph Hellwig1-1/+1
2025-08-20squashfs: fix memory leak in squashfs_fill_superPhillip Lougher1-7/+7
2025-07-20squashfs: fix incorrect argument to sizeof in kmalloc_array callColin Ian King1-1/+1
2025-07-20squashfs: replace ;; with ; and end of fi declarationColin Ian King1-1/+1
2025-07-10squashfs: use folios in squashfs_bio_read_cached()Matthew Wilcox (Oracle)1-23/+22
2025-07-10squashfs: pass the inode to squashfs_readahead_fragment()Matthew Wilcox (Oracle)1-4/+3
2025-05-28squashfs: add optional full compressed block cachingChanho Min2-0/+49
2025-05-12Squashfs: check return result of sb_min_blocksizePhillip Lougher1-0/+5
2025-03-17squashfs: fix invalid pointer dereference in squashfs_cache_deleteZhiyu Zhang1-1/+1
2025-01-25squashfs: convert squashfs_fill_page() to take a folioMatthew Wilcox (Oracle)2-10/+12
2025-01-25squashfs; convert squashfs_copy_cache() to take a folioMatthew Wilcox (Oracle)3-24/+28
2025-01-25squashfs: convert squashfs_readpage_block() to take a folioMatthew Wilcox (Oracle)4-11/+10
2025-01-25squashfs: pass a folio to squashfs_readpage_fragment()Matthew Wilcox (Oracle)1-4/+4
2025-01-25squashfs: use a folio throughout squashfs_read_folio()Matthew Wilcox (Oracle)1-16/+9
2025-01-25squashfs: update Kconfig informationPhillip Lougher1-3/+3
2025-01-25squashfs: don't allocate read_page cache if SQUASHFS_FILE_DIRECT configuredPhillip Lougher2-1/+7
2025-01-25squashfs: make squashfs_cache_init() return ERR_PTR(-ENOMEM)Phillip Lougher2-10/+17
2025-01-13Squashfs: don't allocate fragment caches more than fragmentspangliyuan1-1/+1
2024-10-31Squashfs: fix variable overflow in squashfs_readpage_blockPhillip Lougher1-4/+5
2024-09-21Merge tag 'mm-nonmm-stable-2024-09-21-07-52' of git://git.kernel.org/pub/scm/...Linus Torvalds1-3/+3
2024-09-16Merge tag 'vfs-6.12.folio' of gitolite.kernel.org:pub/scm/linux/kernel/git/vf...Linus Torvalds4-42/+80
2024-09-10squashfs: fix percpu address space issues in decompressor_multi_percpu.cUros Bizjak1-3/+3
2024-08-23Squashfs: Ensure all readahead pages have been usedPhillip Lougher3-4/+5
2024-08-19Squashfs: Rewrite and update squashfs_readahead_fragment() to not use page->i...Phillip Lougher1-16/+50
2024-08-19Squashfs: Update squashfs_readpage_block() to not use page->indexPhillip Lougher1-7/+7
2024-08-19Squashfs: Update squashfs_readahead() to not use page->indexPhillip Lougher1-10/+6
2024-08-19Squashfs: Update page_actor to not use page->indexPhillip Lougher4-6/+13
2024-08-13Squashfs: sanity check symbolic link sizePhillip Lougher1-1/+6
2024-05-20Merge tag 'mm-nonmm-stable-2024-05-19-11-56' of git://git.kernel.org/pub/scm/...Linus Torvalds4-36/+22
2024-05-08squashfs: remove calls to set the folio error flagMatthew Wilcox (Oracle)2-7/+2
2024-05-08squashfs: convert squashfs_symlink_read_folio to use folio APIsMatthew Wilcox (Oracle)1-19/+16
2024-04-26Squashfs: remove deprecated strncpy by not copying the stringPhillip Lougher1-10/+4
2024-04-17Squashfs: check the inode number is not the invalid value of zeroPhillip Lougher1-1/+4
2023-12-11Squashfs: fix variable overflow triggered by sysbotPhillip Lougher2-4/+5
2023-12-07squashfs: squashfs_read_data need to check if the length is 0Lizhi Xu1-1/+1
2023-11-07Merge tag 'vfs-6.7.fsid' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs...Linus Torvalds1-0/+1
2023-10-30Merge tag 'vfs-6.7.ctime' of gitolite.kernel.org:pub/scm/linux/kernel/git/vfs...Linus Torvalds1-3/+3
2023-10-28exportfs: make ->encode_fh() a mandatory method for NFS exportAmir Goldstein1-0/+1
2023-10-18squashfs: convert to new timestamp accessorsJeff Layton1-3/+3
2023-10-10squashfs: move squashfs_xattr_handlers to .rodataWedson Almeida Filho2-2/+2
2023-07-24squashfs: convert to ctime accessor functionsJeff Layton1-1/+1
2023-07-08squashfs: fix cache race with migrationVincent Whitchurch1-4/+23
2023-06-10squashfs: cache partial compressed blocksVincent Whitchurch3-6/+129