From c65875b9cc24c33c6e6d54a1d5297d579c4829cd Mon Sep 17 00:00:00 2001 From: Patrick Farrell Date: Tue, 8 Mar 2022 12:58:42 -0500 Subject: [PATCH] LU-15317 llite: Fix iotrace name The ES6 port of the iotrace patch missed the name of the debug flag, leaving it as tty. Correct this. Fixes: 32142909 ("LU-15317 llite: Add D_IOTRACE") test-parameters: trivial Signed-off-by: Patrick Farrell Change-Id: I0674fa54d6bf13ac5d436f8fd94c6559a3eef27d Reviewed-on: https://review.whamcloud.com/46743 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger --- lnet/include/uapi/linux/lnet/libcfs_debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnet/include/uapi/linux/lnet/libcfs_debug.h b/lnet/include/uapi/linux/lnet/libcfs_debug.h index 4399d38..15ed043 100644 --- a/lnet/include/uapi/linux/lnet/libcfs_debug.h +++ b/lnet/include/uapi/linux/lnet/libcfs_debug.h @@ -137,7 +137,7 @@ struct ptldebug_header { #define D_LAYOUT 0x80000000 #define LIBCFS_DEBUG_MASKS_NAMES { \ - "trace", "inode", "super", "tty", "malloc", "cache", "info", \ + "trace", "inode", "super", "iotrace", "malloc", "cache", "info", \ "ioctl", "neterror", "net", "warning", "buffs", "other", \ "dentry", "nettrace", "page", "dlmtrace", "error", "emerg", \ "ha", "rpctrace", "vfstrace", "reada", "mmap", "config", \ -- 1.8.3.1