]> git.sesse.net Git - bcachefs-tools-debian/blob - include/linux/bvec.h
Move c_src dirs back to toplevel
[bcachefs-tools-debian] / include / linux / bvec.h
1 /*
2  * bvec iterator
3  *
4  * Copyright (C) 2001 Ming Lei <ming.lei@canonical.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public Licens
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-
19  */
20 #ifndef __LINUX_BVEC_ITER_H
21 #define __LINUX_BVEC_ITER_H
22
23 #include <linux/kernel.h>
24 #include <linux/bug.h>
25
26 /*
27  * was unsigned short, but we might as well be ready for > 64kB I/O pages
28  */
29 struct bio_vec {
30         struct page     *bv_page;
31         unsigned int    bv_len;
32         unsigned int    bv_offset;
33 };
34
35 struct bvec_iter {
36         sector_t                bi_sector;      /* device address in 512 byte
37                                                    sectors */
38         unsigned int            bi_size;        /* residual I/O count */
39
40         unsigned int            bi_idx;         /* current index into bvl_vec */
41
42         unsigned int            bi_bvec_done;   /* number of bytes completed in
43                                                    current bvec */
44 };
45
46 struct bvec_iter_all {
47         int             idx;
48 };
49
50 /*
51  * various member access, note that bio_data should of course not be used
52  * on highmem page vectors
53  */
54 #define __bvec_iter_bvec(bvec, iter)    (&(bvec)[(iter).bi_idx])
55
56 #define bvec_iter_page(bvec, iter)                              \
57         (__bvec_iter_bvec((bvec), (iter))->bv_page)
58
59 #define bvec_iter_len(bvec, iter)                               \
60         min((iter).bi_size,                                     \
61             __bvec_iter_bvec((bvec), (iter))->bv_len - (iter).bi_bvec_done)
62
63 #define bvec_iter_offset(bvec, iter)                            \
64         (__bvec_iter_bvec((bvec), (iter))->bv_offset + (iter).bi_bvec_done)
65
66 #define bvec_iter_bvec(bvec, iter)                              \
67 ((struct bio_vec) {                                             \
68         .bv_page        = bvec_iter_page((bvec), (iter)),       \
69         .bv_len         = bvec_iter_len((bvec), (iter)),        \
70         .bv_offset      = bvec_iter_offset((bvec), (iter)),     \
71 })
72
73 static inline void bvec_iter_advance(const struct bio_vec *bv,
74                                      struct bvec_iter *iter,
75                                      unsigned bytes)
76 {
77         WARN_ONCE(bytes > iter->bi_size,
78                   "Attempted to advance past end of bvec iter\n");
79
80         while (bytes) {
81                 unsigned iter_len = bvec_iter_len(bv, *iter);
82                 unsigned len = min(bytes, iter_len);
83
84                 bytes -= len;
85                 iter->bi_size -= len;
86                 iter->bi_bvec_done += len;
87
88                 if (iter->bi_bvec_done == __bvec_iter_bvec(bv, *iter)->bv_len) {
89                         iter->bi_bvec_done = 0;
90                         iter->bi_idx++;
91                 }
92         }
93 }
94
95 #define for_each_bvec(bvl, bio_vec, iter, start)                        \
96         for (iter = (start);                                            \
97              (iter).bi_size &&                                          \
98                 ((bvl = bvec_iter_bvec((bio_vec), (iter))), 1); \
99              bvec_iter_advance((bio_vec), &(iter), (bvl).bv_len))
100
101 #endif /* __LINUX_BVEC_ITER_H */