summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-04-21 11:07:22 -0600
committerTom Rini <[email protected]>2025-04-21 11:07:22 -0600
commit3e6bbc5adc20242a5056cfa142782debc0c368b5 (patch)
tree3c9cf41f69911d8d785f3d3892903b1e5fa4872f /include
parentd36aa5057e6b19c5ff2075a02d12f1f13c39817b (diff)
parent6696f144279f9ee588463ad645e1f0c9b555ba84 (diff)
Merge patch series "fs: exfat: Flush node before put in read() callback"
This series from Marek Vasut <[email protected]> includes a number of fixes to the exFAT filesystem support that he recently added. Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include')
-rw-r--r--include/exfat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exfat.h b/include/exfat.h
index 7e43beeb348..75fce5b6566 100644
--- a/include/exfat.h
+++ b/include/exfat.h
@@ -20,5 +20,6 @@ int exfat_fs_unlink(const char *filename);
int exfat_fs_mkdir(const char *dirname);
int exfat_fs_write(const char *filename, void *buf, loff_t offset,
loff_t len, loff_t *actwrite);
+int exfat_fs_rename(const char *old_path, const char *new_path);
#endif /* _EXFAT_H */