[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <174786679077.1385778.80472067011360869.stgit@frogsfrogsfrogs>
Date: Wed, 21 May 2025 15:48:46 -0700
From: "Darrick J. Wong" <djwong@...nel.org>
To: tytso@....edu
Cc: linux-ext4@...r.kernel.org
Subject: [PATCH 4/4] fuse2fs: print the function name in error messages,
not the file name
From: Darrick J. Wong <djwong@...nel.org>
It would be nice to know which fuse op actually causes failures such as:
FUSE2FS (sda4): Directory block checksum does not match directory block at ../../misc/fuse2fs.c:819.
The filename is utterly pointless, there's only one for the whole
daemon.
Signed-off-by: "Darrick J. Wong" <djwong@...nel.org>
---
misc/fuse2fs.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/misc/fuse2fs.c b/misc/fuse2fs.c
index fa7618adef48d1..54753c79abeb1d 100644
--- a/misc/fuse2fs.c
+++ b/misc/fuse2fs.c
@@ -196,9 +196,9 @@ struct fuse2fs {
__FUSE2FS_CHECK_CONTEXT((ff), return NULL)
static int __translate_error(ext2_filsys fs, ext2_ino_t ino, errcode_t err,
- const char *file, int line);
+ const char *func, int line);
#define translate_error(fs, ino, err) __translate_error((fs), (ino), (err), \
- __FILE__, __LINE__)
+ __func__, __LINE__)
/* for macosx */
#ifndef W_OK
@@ -5043,7 +5043,7 @@ int main(int argc, char *argv[])
}
static int __translate_error(ext2_filsys fs, ext2_ino_t ino, errcode_t err,
- const char *file, int line)
+ const char *func, int line)
{
struct timespec now;
int ret = err;
@@ -5158,10 +5158,10 @@ static int __translate_error(ext2_filsys fs, ext2_ino_t ino, errcode_t err,
if (ino)
err_printf(ff, "%s (inode #%d) at %s:%d.\n",
- error_message(err), ino, file, line);
+ error_message(err), ino, func, line);
else
err_printf(ff, "%s at %s:%d.\n",
- error_message(err), file, line);
+ error_message(err), func, line);
/* Make a note in the error log */
get_now(&now);
@@ -5169,14 +5169,14 @@ static int __translate_error(ext2_filsys fs, ext2_ino_t ino, errcode_t err,
fs->super->s_last_error_ino = ino;
fs->super->s_last_error_line = line;
fs->super->s_last_error_block = err; /* Yeah... */
- strncpy((char *)fs->super->s_last_error_func, file,
+ strncpy((char *)fs->super->s_last_error_func, func,
sizeof(fs->super->s_last_error_func));
if (ext2fs_get_tstamp(fs->super, s_first_error_time) == 0) {
ext2fs_set_tstamp(fs->super, s_first_error_time, now.tv_sec);
fs->super->s_first_error_ino = ino;
fs->super->s_first_error_line = line;
fs->super->s_first_error_block = err;
- strncpy((char *)fs->super->s_first_error_func, file,
+ strncpy((char *)fs->super->s_first_error_func, func,
sizeof(fs->super->s_first_error_func));
}
Powered by blists - more mailing lists