From: Andreas Dannenberg Date: Tue, 14 Aug 2018 02:35:15 +0000 (-0500) Subject: fs/fat: debug-print file read position during file_fat_read_at() X-Git-Tag: v2018.09-rc3~40 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=287c04e11a7371a9f8f902abef2bb39faf5aaa4c;p=oweals%2Fu-boot.git fs/fat: debug-print file read position during file_fat_read_at() In order to make the debug print in file_fat_read_at() a tad more useful, show the offset the file is being read at alongside the filename. Suggested-by: Tero Kristo Signed-off-by: Andreas Dannenberg Reviewed-by: Heinrich Schuchardt --- diff --git a/fs/fat/fat.c b/fs/fat/fat.c index 4efe8a3eda..4b722fc5ca 100644 --- a/fs/fat/fat.c +++ b/fs/fat/fat.c @@ -1095,7 +1095,7 @@ int file_fat_read_at(const char *filename, loff_t pos, void *buffer, if (ret) goto out_free_both; - debug("reading %s\n", filename); + debug("reading %s at pos %llu\n", filename, pos); ret = get_contents(&fsdata, itr->dent, pos, buffer, maxsize, actread); out_free_both: