2020-08-24 23:26:22 +03:00
|
|
|
#include "../libbcachefs/super-io.h"
|
|
|
|
#include "../libbcachefs/checksum.h"
|
|
|
|
#include "../libbcachefs/bcachefs_format.h"
|
2023-03-06 10:21:52 +03:00
|
|
|
#include "../libbcachefs/btree_cache.h"
|
2023-02-27 05:38:12 +03:00
|
|
|
#include "../libbcachefs/btree_iter.h"
|
2023-03-06 10:21:52 +03:00
|
|
|
#include "../libbcachefs/debug.h"
|
2023-02-21 23:58:42 +03:00
|
|
|
#include "../libbcachefs/errcode.h"
|
2023-02-28 14:15:48 +03:00
|
|
|
#include "../libbcachefs/error.h"
|
2021-10-18 20:27:51 +03:00
|
|
|
#include "../libbcachefs/opts.h"
|
|
|
|
#include "../libbcachefs.h"
|
2020-08-24 23:26:22 +03:00
|
|
|
#include "../crypto.h"
|
2021-10-18 20:27:51 +03:00
|
|
|
#include "../include/linux/bio.h"
|
2023-04-27 21:02:00 +03:00
|
|
|
#include "../include/linux/blkdev.h"
|
2021-10-18 20:27:51 +03:00
|
|
|
|
2023-04-27 21:02:00 +03:00
|
|
|
|
|
|
|
#define MARK_FIX_753(req_name) const fmode_t Fix753_##req_name = req_name;
|
|
|
|
|
|
|
|
MARK_FIX_753(FMODE_READ);
|
|
|
|
MARK_FIX_753(FMODE_WRITE);
|
|
|
|
MARK_FIX_753(FMODE_EXCL);
|