summaryrefslogtreecommitdiff
path: root/fs/exfat
AgeCommit message (Expand)AuthorFilesLines
2024-11-25exfat: reduce FAT chain traversalYuezhang Mo3-9/+32
2024-11-25exfat: code cleanup for exfat_readdir()Yuezhang Mo1-22/+2
2024-11-25exfat: remove argument 'p_dir' from exfat_add_entry()Yuezhang Mo1-10/+4
2024-11-25exfat: move exfat_chain_set() out of __exfat_resolve_path()Yuezhang Mo1-34/+26
2024-11-25exfat: add exfat_get_dentry_set_by_ei() helperYuezhang Mo3-36/+21
2024-11-25exfat: rename argument name for exfat_move_file and exfat_rename_fileYuezhang Mo1-12/+12
2024-11-25exfat: remove unnecessary read entry in __exfat_rename()Yuezhang Mo1-16/+4
2024-11-25exfat: fix file being changed by unaligned direct writeYuezhang Mo1-0/+10
2024-11-25exfat: fix uninit-value in __exfat_get_dentry_setNamjae Jeon1-0/+1
2024-11-25exfat: fix out-of-bounds access of directory entriesYuezhang Mo1-4/+16
2024-10-03move asm/unaligned.h to linux/unaligned.hAl Viro3-3/+3
2024-09-23exfat: resolve memory leak from exfat_create_upcase_table()Daniel Yang1-1/+4
2024-09-23exfat: move extend valid_size into ->page_mkwrite()Yuezhang Mo1-25/+45
2024-09-18exfat: fix memory leak in exfat_load_bitmap()Yuezhang Mo1-5/+5
2024-09-18exfat: Implement sops->shutdown and ioctlDongliang Cui5-0/+96
2024-09-17exfat: do not fallback to buffered writeYuezhang Mo5-74/+15
2024-09-17exfat: drop ->i_size_ondiskYuezhang Mo5-25/+12
2024-08-07fs: Convert aops->write_begin to take a folioMatthew Wilcox (Oracle)2-7/+6
2024-08-07fs: Convert aops->write_end to take a folioMatthew Wilcox (Oracle)2-3/+3
2024-07-17Merge tag 'exfat-for-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds3-11/+15
2024-07-15exfat: fix potential deadlock on __exfat_get_dentry_setSungjong Seo1-1/+1
2024-07-15exfat: handle idmapped mountsMichael Jeanson2-10/+14
2024-07-02exfat: Convert to new uid/gid option parsing helpersEric Sandeen1-4/+4
2024-04-25exfat: zero the reserved fields of file and stream extension dentriesYuezhang Mo1-0/+2
2024-03-31exfat: fix timing of synchronizing bitmap and inodeYuezhang Mo1-4/+3
2024-03-21Merge tag 'exfat-for-6.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds4-376/+293
2024-03-19exfat: remove duplicate update parent dirYuezhang Mo1-1/+2
2024-03-19exfat: do not sync parent dir if just update timestampYuezhang Mo1-11/+8
2024-03-19exfat: remove unused functionsYuezhang Mo3-64/+4
2024-03-19exfat: convert exfat_find_empty_entry() to use dentry cacheYuezhang Mo1-84/+42
2024-03-19exfat: convert exfat_init_ext_entry() to use dentry cacheYuezhang Mo3-77/+33
2024-03-19exfat: move free cluster out of exfat_init_ext_entry()Yuezhang Mo2-5/+3
2024-03-19exfat: convert exfat_remove_entries() to use dentry cacheYuezhang Mo3-115/+90
2024-03-19exfat: convert exfat_add_entry() to use dentry cacheYuezhang Mo3-33/+22
2024-03-19exfat: add exfat_get_empty_dentry_set() helperYuezhang Mo2-0/+82
2024-03-19exfat: add __exfat_get_dentry_set() helperYuezhang Mo2-22/+43
2024-03-13mm, slab: remove last vestiges of SLAB_MEM_SPREADLinus Torvalds2-2/+2
2024-03-01Merge tag 'exfat-for-6.8-rc7' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-15/+22
2024-02-25Merge tag 'pull-fixes.pathwalk-rcu-2' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds3-19/+16
2024-02-25exfat: move freeing sbi, upcase table and dropping nls into rcu-delayed helperAl Viro3-19/+16
2024-02-18exfat: fix appending discontinuous clusters to empty fileYuezhang Mo1-15/+22
2024-01-18exfat: fix zero the unwritten part for dio readYuezhang Mo1-4/+3
2024-01-08exfat: do not zero the extended partYuezhang Mo2-21/+70
2024-01-08exfat: change to get file size from DataLengthYuezhang Mo4-19/+231
2024-01-08exfat: using ffs instead of internal logicJohn Sanpe2-28/+16
2024-01-08exfat: using hweight instead of internal logicJohn Sanpe1-27/+21
2023-11-03exfat: fix ctime is not updatedYuezhang Mo1-0/+1
2023-11-03exfat: fix setting uninitialized time to ctime/atimeYuezhang Mo1-2/+2
2023-10-31exfat: support create zero-size directoryYuezhang Mo4-8/+20
2023-10-31exfat: support handle zero-size directoryYuezhang Mo1-7/+22