diff options
| author | David Anderson <danderson@tailscale.com> | 2021-11-10 12:15:03 -0800 |
|---|---|---|
| committer | David Anderson <danderson@tailscale.com> | 2021-11-10 12:15:03 -0800 |
| commit | 41710e1b810aa25c14ceb657a40b9ba616615435 (patch) | |
| tree | 4953322c9930fde10dae9ff057de28827e87fb52 /ebpf/include/linux/utime.h | |
| parent | 4a51050c498da33eaecb520b78aeb5f445a442f1 (diff) | |
| download | tailscale-danderson/ebpf.tar.xz tailscale-danderson/ebpf.zip | |
ebpf: experiments.danderson/ebpf
Diffstat (limited to 'ebpf/include/linux/utime.h')
| -rw-r--r-- | ebpf/include/linux/utime.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ebpf/include/linux/utime.h b/ebpf/include/linux/utime.h new file mode 100644 index 000000000..bc8f13e81 --- /dev/null +++ b/ebpf/include/linux/utime.h @@ -0,0 +1,12 @@ +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ +#ifndef _LINUX_UTIME_H +#define _LINUX_UTIME_H + +#include <linux/types.h> + +struct utimbuf { + __kernel_old_time_t actime; + __kernel_old_time_t modtime; +}; + +#endif |
