xref: /kernel/linux/linux-5.10/tools/perf/trace/beauty/fspick.c
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /kernel/linux/linux-5.10/tools/perf/trace/beauty/
18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: LGPL-2.1
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * trace/beauty/fspick.c
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci *  Copyright (C) 2019, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
68c2ecf20Sopenharmony_ci */
78c2ecf20Sopenharmony_ci
88c2ecf20Sopenharmony_ci#include "trace/beauty/beauty.h"
98c2ecf20Sopenharmony_ci#include <linux/log2.h>
108c2ecf20Sopenharmony_ci
118c2ecf20Sopenharmony_cistatic size_t fspick__scnprintf_flags(unsigned long flags, char *bf, size_t size, bool show_prefix)
128c2ecf20Sopenharmony_ci{
138c2ecf20Sopenharmony_ci#include "trace/beauty/generated/fspick_arrays.c"
148c2ecf20Sopenharmony_ci       static DEFINE_STRARRAY(fspick_flags, "FSPICK_");
158c2ecf20Sopenharmony_ci
168c2ecf20Sopenharmony_ci       return strarray__scnprintf_flags(&strarray__fspick_flags, bf, size, show_prefix, flags);
178c2ecf20Sopenharmony_ci}
188c2ecf20Sopenharmony_ci
198c2ecf20Sopenharmony_cisize_t syscall_arg__scnprintf_fspick_flags(char *bf, size_t size, struct syscall_arg *arg)
208c2ecf20Sopenharmony_ci{
218c2ecf20Sopenharmony_ci	unsigned long flags = arg->val;
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_ci	return fspick__scnprintf_flags(flags, bf, size, arg->show_string_prefix);
248c2ecf20Sopenharmony_ci}
25

Indexes created Thu Nov 07 10:32:03 CST 2024