perf ui progress: Add size info into progress bar
Adding the size values '[current/total]' into progress bar, to show more detailed progress of data reading. Adding new ui_progress__init_size function to specify we want to display the size. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: David Ahern <dsahern@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/20170908120510.22515-5-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:

committed by
Arnaldo Carvalho de Melo

parent
25cc4eb44b
commit
8233822f40
@@ -8,9 +8,18 @@ void ui_progress__finish(void);
|
||||
struct ui_progress {
|
||||
const char *title;
|
||||
u64 curr, next, step, total;
|
||||
bool size;
|
||||
};
|
||||
|
||||
void ui_progress__init(struct ui_progress *p, u64 total, const char *title);
|
||||
void __ui_progress__init(struct ui_progress *p, u64 total,
|
||||
const char *title, bool size);
|
||||
|
||||
#define ui_progress__init(p, total, title) \
|
||||
__ui_progress__init(p, total, title, false)
|
||||
|
||||
#define ui_progress__init_size(p, total, title) \
|
||||
__ui_progress__init(p, total, title, true)
|
||||
|
||||
void ui_progress__update(struct ui_progress *p, u64 adv);
|
||||
|
||||
struct ui_progress_ops {
|
||||
|
Reference in New Issue
Block a user