aboutsummaryrefslogtreecommitdiffstats
path: root/fs/exfat/dir.c
AgeCommit message (Expand)AuthorFilesLines
2024-04-25exfat: zero the reserved fields of file and stream extension dentriesYuezhang Mo1-0/+2
2024-03-19exfat: remove unused functionsYuezhang Mo1-58/+2
2024-03-19exfat: convert exfat_init_ext_entry() to use dentry cacheYuezhang Mo1-26/+7
2024-03-19exfat: move free cluster out of exfat_init_ext_entry()Yuezhang Mo1-3/+0
2024-03-19exfat: convert exfat_remove_entries() to use dentry cacheYuezhang Mo1-11/+6
2024-03-19exfat: convert exfat_add_entry() to use dentry cacheYuezhang Mo1-28/+9
2024-03-19exfat: add exfat_get_empty_dentry_set() helperYuezhang Mo1-0/+79
2024-03-19exfat: add __exfat_get_dentry_set() helperYuezhang Mo1-21/+42
2023-10-31exfat: support create zero-size directoryYuezhang Mo1-6/+6
2023-10-31exfat: add ioctls for accessing attributesJan Cincera1-4/+4
2023-08-06vfs: get rid of old '->iterate' directory operationLinus Torvalds1-1/+2
2023-07-15exfat: release s_lock before calling dir_emit()Sungjong Seo1-15/+12
2023-07-13exfat: check if filename entries exceeds max filename lengthNamjae Jeon1-2/+7
2023-02-27exfat: handle unreconized benign secondary entriesNamjae Jeon1-25/+58
2023-02-27exfat: fix reporting fs error when reading dir beyond EOFYuezhang Mo1-1/+1
2023-02-27exfat: fix unexpected EOF while reading dirYuezhang Mo1-4/+1
2022-12-13exfat: reuse exfat_find_location() to simplify exfat_get_dentry_set()Yuezhang Mo1-13/+4
2022-12-12exfat: remove unnecessary arguments from exfat_find_dir_entry()Yuezhang Mo1-5/+7
2022-12-12exfat: remove call ilog2() from exfat_readdir()Yuezhang Mo1-5/+4
2022-12-12exfat: replace magic numbers with MacrosYuezhang Mo1-6/+6
2022-12-12exfat: rename exfat_free_dentry_set() to exfat_put_dentry_set()Yuezhang Mo1-8/+8
2022-12-12exfat: move exfat_entry_set_cache from heap to stackYuezhang Mo1-20/+15
2022-12-12exfat: support dynamic allocate bh for exfat_entry_set_cacheYuezhang Mo1-0/+15
2022-12-12exfat: hint the empty entry which at the end of cluster chainYuezhang Mo1-4/+22
2022-12-12exfat: simplify empty entry hintYuezhang Mo1-27/+31
2022-09-01exfat_iterate(): don't open-code file_inode(file)Al Viro1-3/+3
2022-01-10exfat: remove argument 'sector' from exfat_get_dentry()Yuezhang.Mo1-22/+14
2022-01-10exfat: make exfat_find_location() staticChristophe Vu-Brugier1-2/+2
2022-01-10exfat: fix typos in commentsChristophe Vu-Brugier1-1/+1
2021-07-04exfat: handle wrong stream entry size in exfat_readdir()Namjae Jeon1-3/+5
2021-04-27exfat: speed up iterate/lookup by fixing start point of traversing cluster chainHyeongseok Kim1-6/+13
2021-04-27exfat: improve write performance when dirsync enabledHyeongseok Kim1-1/+1
2021-04-27exfat: add support ioctl and FITRIM functionHyeongseok Kim1-0/+5
2020-10-22exfat: remove 'rwoffset' in exfat_inode_infoTetsuhiro Kohada1-12/+9
2020-10-22exfat: replace memcpy with structure assignmentTetsuhiro Kohada1-5/+2
2020-10-22exfat: eliminate dead code in exfat_find()Tetsuhiro Kohada1-1/+0
2020-08-12exfat: add error check when updating dir-entriesTetsuhiro Kohada1-1/+2
2020-08-12exfat: write multiple sectors at onceTetsuhiro Kohada1-6/+9
2020-08-12exfat: remove EXFAT_SB_DIRTY flagTetsuhiro Kohada1-8/+8
2020-07-21exfat: fix wrong hint_stat initialization in exfat_find_dir_entry()Namjae Jeon1-1/+1
2020-06-29exfat: flush dirty metadata in fsyncSungjong Seo1-1/+1
2020-06-29exfat: Set the unused characters of FileName field to the value 0000hHyeongseok.Kim1-4/+6
2020-06-09exfat: standardize checksum calculationTetsuhiro Kohada1-6/+6
2020-06-09exfat: optimize dir-cacheTetsuhiro Kohada1-122/+75
2020-06-09exfat: replace 'time_ms' with 'time_cs'Tetsuhiro Kohada1-4/+4
2020-06-09exfat: Use a more common logging styleJoe Perches1-5/+4
2020-03-05exfat: add directory operationsNamjae Jeon1-0/+1238