diff options
| author | Thomas Weißschuh <[email protected]> | 2023-07-09 21:17:59 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2023-08-04 13:28:41 +0000 |
| commit | 3bdaf739057e80811a9c299115d3272a69276049 (patch) | |
| tree | 2fb90049d2ce123539b0c81f88bb34bd88689a54 /lib/dynamic_debug.c | |
| parent | dyndbg: constify opt_array (diff) | |
| download | kernel-3bdaf739057e80811a9c299115d3272a69276049.tar.gz kernel-3bdaf739057e80811a9c299115d3272a69276049.zip | |
dyndbg: increase PREFIX_SIZE to 128
A follow-up patch will add the possibility to print the filename as part
of the prefix.
Increase the maximum prefix size to accommodate this.
Signed-off-by: Thomas Weißschuh <[email protected]>
Reviewed-by: Luis Chamberlain <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'lib/dynamic_debug.c')
| -rw-r--r-- | lib/dynamic_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c index 71b22d206a1b..166229dfe171 100644 --- a/lib/dynamic_debug.c +++ b/lib/dynamic_debug.c @@ -808,7 +808,7 @@ const struct kernel_param_ops param_ops_dyndbg_classes = { }; EXPORT_SYMBOL(param_ops_dyndbg_classes); -#define PREFIX_SIZE 64 +#define PREFIX_SIZE 128 static int remaining(int wrote) { |
