Merge tag 'ntb-5.11' of git://github.com/jonmason/ntb
[linux/fpc-iii.git] / tools / perf / trace / beauty / move_mount.c
blob78ed8039540604ed41c7f21f1a284a044b3a1d44
1 // SPDX-License-Identifier: LGPL-2.1
2 /*
3 * trace/beauty/move_mount.c
5 * Copyright (C) 2019, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
6 */
8 #include "trace/beauty/beauty.h"
9 #include <linux/log2.h>
11 static size_t move_mount__scnprintf_flags(unsigned long flags, char *bf, size_t size, bool show_prefix)
13 #include "trace/beauty/generated/move_mount_flags_array.c"
14 static DEFINE_STRARRAY(move_mount_flags, "MOVE_MOUNT_");
16 return strarray__scnprintf_flags(&strarray__move_mount_flags, bf, size, show_prefix, flags);
19 size_t syscall_arg__scnprintf_move_mount_flags(char *bf, size_t size, struct syscall_arg *arg)
21 unsigned long flags = arg->val;
23 return move_mount__scnprintf_flags(flags, bf, size, arg->show_string_prefix);