summaryrefslogtreecommitdiff
path: root/fs/fat
diff options
context:
space:
mode:
authorAndreas Dannenberg <[email protected]>2018-08-13 21:35:15 -0500
committerTom Rini <[email protected]>2018-08-20 07:21:28 -0400
commit287c04e11a7371a9f8f902abef2bb39faf5aaa4c (patch)
tree7364268c4b81ab259632e70ed61407383af7a720 /fs/fat
parent94cb986e5e7f3bea9bb8fd09223f2ae0a6545563 (diff)
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 <[email protected]> Signed-off-by: Andreas Dannenberg <[email protected]> Reviewed-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'fs/fat')
-rw-r--r--fs/fat/fat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fat/fat.c b/fs/fat/fat.c
index 4efe8a3edaf..4b722fc5ca3 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: