mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
These assertions impose an include order between <linux/fs.h> and "missing_fs.h", specifically <linux/fs.h> can't be included before "missing_fs.h". This makes automated include refactoring very painful, so let's get rid of these assertions and instead assume that linux/fs.h does the right thing.
15 lines
345 B
C
15 lines
345 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <linux/fs.h>
|
|
|
|
/* Not exposed yet. Defined at fs/ext4/ext4.h */
|
|
#ifndef EXT4_IOC_RESIZE_FS
|
|
#define EXT4_IOC_RESIZE_FS _IOW('f', 16, __u64)
|
|
#endif
|
|
|
|
/* linux/exportfs.h (33c5ac9175195c36a0b7005aaf503a2e81f117a1, 5.5) */
|
|
#ifndef FILEID_KERNFS
|
|
#define FILEID_KERNFS 0xfe
|
|
#endif
|