/* * Copyright (c) 2019 Dmitry V. Levin * All rights reserved. * * SPDX-License-Identifier: LGPL-2.1-or-later */ #include "defs.h" #include #ifdef HAVE_LINUX_MOUNT_H # include #endif #include "xlat/open_tree_flags.h" SYS_FUNC(open_tree) { print_dirfd(tcp, tcp->u_arg[0]); tprints(", "); printpath(tcp, tcp->u_arg[1]); tprints(", "); printflags(open_tree_flags, tcp->u_arg[2], "OPEN_TREE_???"); return RVAL_DECODED | RVAL_FD; }