blob: 085d67dc9ce5d0222df3323e504ebb98c13f029d [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
2 * This file is auto-generated. Modifications will be lost.
3 *
4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5 * for more information.
6 */
Christopher Ferrisbb9fcb42020-04-06 11:38:04 -07007#ifndef _UAPI_LINUX_OPENAT2_H
8#define _UAPI_LINUX_OPENAT2_H
9#include <linux/types.h>
10struct open_how {
11 __u64 flags;
12 __u64 mode;
13 __u64 resolve;
14};
15#define RESOLVE_NO_XDEV 0x01
16#define RESOLVE_NO_MAGICLINKS 0x02
17#define RESOLVE_NO_SYMLINKS 0x04
18#define RESOLVE_BENEATH 0x08
19#define RESOLVE_IN_ROOT 0x10
Christopher Ferrisa9750ed2021-05-03 14:02:49 -070020#define RESOLVE_CACHED 0x20
Christopher Ferrisbb9fcb42020-04-06 11:38:04 -070021#endif