aboutsummaryrefslogtreecommitdiffstats
path: root/fs/exfat/namei.c
AgeCommit message (Expand)AuthorFilesLines
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: convert exfat_find_empty_entry() to use dentry cacheYuezhang Mo1-84/+42
2024-03-19exfat: convert exfat_init_ext_entry() to use dentry cacheYuezhang Mo1-49/+24
2024-03-19exfat: move free cluster out of exfat_init_ext_entry()Yuezhang Mo1-2/+3
2024-03-19exfat: convert exfat_remove_entries() to use dentry cacheYuezhang Mo1-102/+82
2024-03-19exfat: convert exfat_add_entry() to use dentry cacheYuezhang Mo1-2/+10
2024-01-08exfat: change to get file size from DataLengthYuezhang Mo1-0/+6
2023-10-31exfat: support create zero-size directoryYuezhang Mo1-2/+5
2023-10-31exfat: support handle zero-size directoryYuezhang Mo1-7/+22
2023-10-31exfat: add ioctls for accessing attributesJan Cincera1-8/+8
2023-10-18exfat: convert to new timestamp accessorsJeff Layton1-15/+16
2023-07-13exfat: convert to ctime accessor functionsJeff Layton1-12/+9
2023-07-10exfat: convert to simple_rename_timestampJeff Layton1-3/+2
2023-07-10exfat: ensure that ctime is updated whenever the mtime isJeff Layton1-4/+4
2023-03-01Merge tag 'exfat-for-6.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-1/+1
2023-02-27exfat: fix inode->i_blocks for non-512 byte sector size deviceYuezhang Mo1-1/+1
2023-01-19fs: port ->rename() to pass mnt_idmapChristian Brauner1-1/+1
2023-01-19fs: port ->mkdir() to pass mnt_idmapChristian Brauner1-1/+1
2023-01-19fs: port ->create() to pass mnt_idmapChristian Brauner1-1/+1
2022-12-12exfat: remove unnecessary arguments from exfat_find_dir_entry()Yuezhang Mo1-8/+2
2022-12-12exfat: remove unneeded codes from __exfat_rename()Yuezhang Mo1-8/+1
2022-12-12exfat: replace magic numbers with MacrosYuezhang Mo1-2/+2
2022-12-12exfat: rename exfat_free_dentry_set() to exfat_put_dentry_set()Yuezhang Mo1-1/+1
2022-12-12exfat: move exfat_entry_set_cache from heap to stackYuezhang Mo1-6/+5
2022-12-12exfat: hint the empty entry which at the end of cluster chainYuezhang Mo1-12/+21
2022-08-01exfat: Return ENAMETOOLONG consistently for oversized pathsTakashi Iwai1-1/+1
2022-08-01exfat: remove duplicate write inode for extending dir/fileYuezhang Mo1-4/+0
2022-08-01exfat: reuse __exfat_write_inode() to update directory entryYuezhang Mo1-20/+4
2022-06-09exfat: use updated exfat_chain directly during renamingSungjong Seo1-1/+3
2022-05-23exfat: fix referencing wrong parent directory information after renamingYuezhang Mo1-26/+1
2022-04-01exfat: do not clear VolumeDirty in writebackYuezhang Mo1-5/+0
2022-04-01exfat: allow access to paths with trailing dotsVasant Karasulli1-14/+36
2022-01-10exfat: remove argument 'sector' from exfat_get_dentry()Yuezhang.Mo1-26/+16
2022-01-10exfat: reuse exfat_inode_info variable instead of calling EXFAT_I()Christophe Vu-Brugier1-3/+3
2021-04-27exfat: speed up iterate/lookup by fixing start point of traversing cluster chainHyeongseok Kim1-1/+8
2021-04-27exfat: improve write performance when dirsync enabledHyeongseok Kim1-1/+1
2021-01-24fs: make helpers idmap mount awareChristian Brauner1-6/+8
2020-10-22exfat: remove useless check in exfat_move_file()Tetsuhiro Kohada1-5/+0
2020-10-22exfat: replace memcpy with structure assignmentTetsuhiro Kohada1-8/+7
2020-10-22exfat: remove useless directory scan in exfat_add_entry()Tetsuhiro Kohada1-10/+1
2020-10-22exfat: eliminate dead code in exfat_find()Tetsuhiro Kohada1-73/+47
2020-10-22exfat: fix misspellings using codespell toolNamjae Jeon1-1/+1
2020-10-07exfat: fix pointer error checkingTetsuhiro Kohada1-7/+6
2020-08-12exfat: retain 'VolumeFlags' properlyTetsuhiro Kohada1-10/+10
2020-08-12exfat: remove EXFAT_SB_DIRTY flagTetsuhiro Kohada1-6/+6
2020-06-29exfat: move setting VOL_DIRTY over exfat_remove_entries()Namjae Jeon1-1/+1
2020-06-29exfat: add missing brelse() calls on error pathsDan Carpenter1-2/+10
2020-06-09exfat: optimize dir-cacheTetsuhiro Kohada1-6/+8
2020-06-09exfat: replace 'time_ms' with 'time_cs'Tetsuhiro Kohada1-2/+2
2020-06-09exfat: Simplify exfat_utf8_d_hash() for code points above U+FFFFPali Rohár1-8/+2
2020-06-09exfat: Use a more common logging styleJoe Perches1-16/+10
2020-06-09exfat: Simplify exfat_utf8_d_cmp() for code points above U+FFFFPali Rohár1-7/+2
2020-05-18exfat: fix possible memory leak in exfat_find()Wei Yongjun1-0/+1
2020-04-22exfat: truncate atimes to 2s granularityEric Sandeen1-0/+7
2020-03-05exfat: add inode operationsNamjae Jeon1-0/+1448