]> git.sesse.net Git - bcachefs-tools-debian/blob - include/linux/blkdev.h
Update bcachefs sources to 10ab39f2fa bcachefs: Improvements to the journal read...
[bcachefs-tools-debian] / include / linux / blkdev.h
1 #ifndef __TOOLS_LINUX_BLKDEV_H
2 #define __TOOLS_LINUX_BLKDEV_H
3
4 #include <linux/backing-dev.h>
5 #include <linux/blk_types.h>
6 #include <linux/kobject.h>
7 #include <linux/types.h>
8
9 #define BIO_MAX_PAGES   256
10
11 typedef unsigned fmode_t;
12
13 struct bio;
14 struct user_namespace;
15
16 #define MINORBITS       20
17 #define MINORMASK       ((1U << MINORBITS) - 1)
18
19 #define MAJOR(dev)      ((unsigned int) ((dev) >> MINORBITS))
20 #define MINOR(dev)      ((unsigned int) ((dev) & MINORMASK))
21 #define MKDEV(ma,mi)    (((ma) << MINORBITS) | (mi))
22
23 /* file is open for reading */
24 #define FMODE_READ              ((__force fmode_t)0x1)
25 /* file is open for writing */
26 #define FMODE_WRITE             ((__force fmode_t)0x2)
27 /* file is seekable */
28 #define FMODE_LSEEK             ((__force fmode_t)0x4)
29 /* file can be accessed using pread */
30 #define FMODE_PREAD             ((__force fmode_t)0x8)
31 /* file can be accessed using pwrite */
32 #define FMODE_PWRITE            ((__force fmode_t)0x10)
33 /* File is opened for execution with sys_execve / sys_uselib */
34 #define FMODE_EXEC              ((__force fmode_t)0x20)
35 /* File is opened with O_NDELAY (only set for block devices) */
36 #define FMODE_NDELAY            ((__force fmode_t)0x40)
37 /* File is opened with O_EXCL (only set for block devices) */
38 #define FMODE_EXCL              ((__force fmode_t)0x80)
39 /* File is opened using open(.., 3, ..) and is writeable only for ioctls
40    (specialy hack for floppy.c) */
41 #define FMODE_WRITE_IOCTL       ((__force fmode_t)0x100)
42 /* 32bit hashes as llseek() offset (for directories) */
43 #define FMODE_32BITHASH         ((__force fmode_t)0x200)
44 /* 64bit hashes as llseek() offset (for directories) */
45 #define FMODE_64BITHASH         ((__force fmode_t)0x400)
46
47 struct inode {
48         unsigned long           i_ino;
49         loff_t                  i_size;
50         struct super_block      *i_sb;
51 };
52
53 struct file {
54         struct inode            *f_inode;
55 };
56
57 static inline struct inode *file_inode(const struct file *f)
58 {
59         return f->f_inode;
60 }
61
62 #define BDEVNAME_SIZE   32
63
64 struct request_queue {
65         struct backing_dev_info *backing_dev_info;
66 };
67
68 struct gendisk {
69 };
70
71 struct hd_struct {
72         struct kobject          kobj;
73 };
74
75 #define part_to_dev(part)       (part)
76
77 struct block_device {
78         char                    name[BDEVNAME_SIZE];
79         struct inode            *bd_inode;
80         struct request_queue    queue;
81         void                    *bd_holder;
82         struct hd_struct        *bd_part;
83         struct gendisk          *bd_disk;
84         struct gendisk          __bd_disk;
85         int                     bd_fd;
86         int                     bd_sync_fd;
87
88         struct backing_dev_info *bd_bdi;
89         struct backing_dev_info __bd_bdi;
90 };
91
92 void generic_make_request(struct bio *);
93 int submit_bio_wait(struct bio *);
94
95 static inline void submit_bio(struct bio *bio)
96 {
97         generic_make_request(bio);
98 }
99
100 int blkdev_issue_discard(struct block_device *, sector_t,
101                          sector_t, gfp_t, unsigned long);
102
103 #define bdev_get_queue(bdev)            (&((bdev)->queue))
104
105 #define blk_queue_discard(q)            ((void) (q), 0)
106 #define blk_queue_nonrot(q)             ((void) (q), 0)
107
108 unsigned bdev_logical_block_size(struct block_device *bdev);
109 sector_t get_capacity(struct gendisk *disk);
110
111 void blkdev_put(struct block_device *bdev, fmode_t mode);
112 void bdput(struct block_device *bdev);
113 struct block_device *blkdev_get_by_path(const char *path, fmode_t mode, void *holder);
114 struct block_device *lookup_bdev(const char *path);
115
116 struct super_block {
117         void                    *s_fs_info;
118 };
119
120 /*
121  * File types
122  *
123  * NOTE! These match bits 12..15 of stat.st_mode
124  * (ie "(i_mode >> 12) & 15").
125  */
126 #ifndef DT_UNKNOWN
127 #define DT_UNKNOWN      0
128 #define DT_FIFO         1
129 #define DT_CHR          2
130 #define DT_DIR          4
131 #define DT_BLK          6
132 #define DT_REG          8
133 #define DT_LNK          10
134 #define DT_SOCK         12
135 #define DT_WHT          14
136 #endif
137
138 /*
139  * This is the "filldir" function type, used by readdir() to let
140  * the kernel specify what kind of dirent layout it wants to have.
141  * This allows the kernel to read directories into kernel space or
142  * to have different dirent layouts depending on the binary type.
143  */
144 struct dir_context;
145 typedef int (*filldir_t)(struct dir_context *, const char *, int, loff_t, u64,
146                          unsigned);
147
148 struct dir_context {
149         const filldir_t actor;
150         u64 pos;
151 };
152
153 /* /sys/fs */
154 extern struct kobject *fs_kobj;
155
156 struct file_operations {
157 };
158
159 static inline int register_chrdev(unsigned int major, const char *name,
160                                   const struct file_operations *fops)
161 {
162         return 1;
163 }
164
165 static inline void unregister_chrdev(unsigned int major, const char *name)
166 {
167 }
168
169 static inline const char *bdevname(struct block_device *bdev, char *buf)
170 {
171         snprintf(buf, BDEVNAME_SIZE, "%s", bdev->name);
172         return buf;
173 }
174
175 static inline bool op_is_write(unsigned int op)
176 {
177         return op == REQ_OP_READ ? false : true;
178 }
179
180 /*
181  * return data direction, READ or WRITE
182  */
183 static inline int bio_data_dir(struct bio *bio)
184 {
185         return op_is_write(bio_op(bio)) ? WRITE : READ;
186 }
187
188 static inline bool dir_emit(struct dir_context *ctx,
189                             const char *name, int namelen,
190                             u64 ino, unsigned type)
191 {
192         return ctx->actor(ctx, name, namelen, ctx->pos, ino, type) == 0;
193 }
194
195 static inline bool dir_emit_dots(struct file *file, struct dir_context *ctx)
196 {
197         return true;
198 }
199
200 #define capable(cap)            true
201
202 int blk_status_to_errno(blk_status_t status);
203 blk_status_t errno_to_blk_status(int errno);
204 const char *blk_status_to_str(blk_status_t status);
205
206 #endif /* __TOOLS_LINUX_BLKDEV_H */
207