Message ID | 20171013162438.32458-2-alex.bennee@linaro.org |
---|---|
State | Superseded |
Headers | show |
Series | v8.2 half-precision support (work-in-progress) | expand |
On 10/13/2017 09:24 AM, Alex Bennée wrote: > Signed-off-by: Alex Bennée <alex.bennee@linaro.org> > --- > linux-user/main.c | 7 +++++++ > 1 file changed, 7 insertions(+) Reviewed-by: Richard Henderson <richard.henderson@linaro.org> r~
Le 13/10/2017 à 18:24, Alex Bennée a écrit : > Signed-off-by: Alex Bennée <alex.bennee@linaro.org> > --- > linux-user/main.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/linux-user/main.c b/linux-user/main.c > index 829f974662..5072aa855b 100644 Reviewed-by: Laurent Vivier <laurent@vivier.eu>
diff --git a/linux-user/main.c b/linux-user/main.c index 829f974662..5072aa855b 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -3854,6 +3854,11 @@ static void handle_arg_log(const char *arg) qemu_set_log(mask); } +static void handle_arg_dfilter(const char *arg) +{ + qemu_set_dfilter_ranges(arg, NULL); +} + static void handle_arg_log_filename(const char *arg) { qemu_set_log_filename(arg, &error_fatal); @@ -4054,6 +4059,8 @@ static const struct qemu_argument arg_table[] = { {"d", "QEMU_LOG", true, handle_arg_log, "item[,...]", "enable logging of specified items " "(use '-d help' for a list of items)"}, + {"dfilter", "QEMU_DFILTER", true, handle_arg_dfilter, + "range[,...]","filter logging based on address range"}, {"D", "QEMU_LOG_FILENAME", true, handle_arg_log_filename, "logfile", "write logs to 'logfile' (default stderr)"}, {"p", "QEMU_PAGESIZE", true, handle_arg_pagesize,
Signed-off-by: Alex Bennée <alex.bennee@linaro.org> --- linux-user/main.c | 7 +++++++ 1 file changed, 7 insertions(+) -- 2.14.1