18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: LGPL-2.1
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * trace/beauty/move_mount.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 move_mount__scnprintf_flags(unsigned long flags, char *bf, size_t size, bool show_prefix)
128c2ecf20Sopenharmony_ci{
138c2ecf20Sopenharmony_ci#include "trace/beauty/generated/move_mount_flags_array.c"
148c2ecf20Sopenharmony_ci       static DEFINE_STRARRAY(move_mount_flags, "MOVE_MOUNT_");
158c2ecf20Sopenharmony_ci
168c2ecf20Sopenharmony_ci       return strarray__scnprintf_flags(&strarray__move_mount_flags, bf, size, show_prefix, flags);
178c2ecf20Sopenharmony_ci}
188c2ecf20Sopenharmony_ci
198c2ecf20Sopenharmony_cisize_t syscall_arg__scnprintf_move_mount_flags(char *bf, size_t size, struct syscall_arg *arg)
208c2ecf20Sopenharmony_ci{
218c2ecf20Sopenharmony_ci	unsigned long flags = arg->val;
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_ci	return move_mount__scnprintf_flags(flags, bf, size, arg->show_string_prefix);
248c2ecf20Sopenharmony_ci}
25