Whamcloud - gitweb
49792a03545401e6f5ce3bf1be52801833f7143f
[fs/lustre-release.git] / lustre / llite / vvp_internal.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2013, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * Internal definitions for VVP layer.
32  *
33  *   Author: Nikita Danilov <nikita.danilov@sun.com>
34  */
35
36 #ifndef VVP_INTERNAL_H
37 #define VVP_INTERNAL_H
38
39 #include <cl_object.h>
40
41 enum obd_notify_event;
42 struct inode;
43 struct lustre_md;
44 struct obd_device;
45 struct obd_export;
46 struct page;
47
48 /**
49  * IO state private to VVP layer.
50  */
51 struct vvp_io {
52         /** super class */
53         struct cl_io_slice     vui_cl;
54         struct cl_io_lock_link vui_link;
55         /**
56          * I/O vector information to or from which read/write is going.
57          */
58         struct iov_iter *vui_iter;
59         /**
60          * Total size for the left IO.
61          */
62         size_t vui_tot_count;
63
64         union {
65                 struct vvp_fault_io {
66                         struct vm_area_struct   *ft_vma;
67                         /**
68                          *  locked page returned from vvp_io
69                          */
70                         struct page             *ft_vmpage;
71                         /**
72                          * kernel fault info
73                          */
74                         struct vm_fault         *ft_vmf;
75                         /**
76                          * fault API used bitflags for return code.
77                          */
78                         unsigned int             ft_flags;
79                         /**
80                          * check that flags are from filemap_fault
81                          */
82                         bool                     ft_flags_valid;
83                         struct cl_page_list      ft_queue;
84                 } fault;
85                 struct {
86                         struct cl_page_list vui_queue;
87                         unsigned long vui_written;
88                         unsigned long vui_read;
89                         int vui_from;
90                         int vui_to;
91                 } readwrite; /* normal io */
92         } u;
93
94         /**
95          * Layout version when this IO is initialized
96          */
97         __u32                   vui_layout_gen;
98         /**
99         * File descriptor against which IO is done.
100         */
101         struct ll_file_data     *vui_fd;
102         struct kiocb            *vui_iocb;
103
104         /* Readahead state. */
105         pgoff_t                 vui_ra_start_idx;
106         pgoff_t                 vui_ra_pages;
107         /* Set when vui_ra_{start,count} have been initialized. */
108         bool                    vui_ra_valid;
109 };
110
111 extern struct lu_device_type vvp_device_type;
112
113 extern struct lu_context_key vvp_session_key;
114 extern struct lu_context_key vvp_thread_key;
115
116 extern struct kmem_cache *vvp_object_kmem;
117
118 struct vvp_thread_info {
119         struct cl_lock          vti_lock;
120         struct cl_lock_descr    vti_descr;
121         struct cl_io            vti_io;
122         struct cl_attr          vti_attr;
123         struct cl_sync_io       vti_anchor;
124 };
125
126 static inline struct vvp_thread_info *vvp_env_info(const struct lu_env *env)
127 {
128         struct vvp_thread_info *vti;
129
130         vti = lu_context_key_get(&env->le_ctx, &vvp_thread_key);
131         LASSERT(vti != NULL);
132
133         return vti;
134 }
135
136 static inline struct cl_lock *vvp_env_lock(const struct lu_env *env)
137 {
138         struct cl_lock *lock = &vvp_env_info(env)->vti_lock;
139
140         memset(lock, 0, sizeof(*lock));
141
142         return lock;
143 }
144
145 static inline struct cl_attr *vvp_env_thread_attr(const struct lu_env *env)
146 {
147         struct cl_attr *attr = &vvp_env_info(env)->vti_attr;
148
149         memset(attr, 0, sizeof(*attr));
150
151         return attr;
152 }
153
154 static inline struct cl_io *vvp_env_thread_io(const struct lu_env *env)
155 {
156         struct cl_io *io = &vvp_env_info(env)->vti_io;
157
158         memset(io, 0, sizeof(*io));
159
160         return io;
161 }
162
163 struct vvp_session {
164         struct vvp_io vs_ios;
165 };
166
167 static inline struct vvp_session *vvp_env_session(const struct lu_env *env)
168 {
169         struct vvp_session *ses;
170
171         ses = lu_context_key_get(env->le_ses, &vvp_session_key);
172         LASSERT(ses != NULL);
173
174         return ses;
175 }
176
177 static inline struct vvp_io *vvp_env_io(const struct lu_env *env)
178 {
179         return &vvp_env_session(env)->vs_ios;
180 }
181
182 /**
183  * VPP-private object state.
184  */
185 struct vvp_object {
186         struct cl_object_header vob_header;
187         struct cl_object        vob_cl;
188         struct inode           *vob_inode;
189
190         /**
191          * Number of transient pages.  This is no longer protected by i_sem,
192          * and needs to be atomic.  This is not actually used for anything,
193          * and can probably be removed.
194          */
195         atomic_t                vob_transient_pages;
196         /**
197          * Number of outstanding mmaps on this file.
198          *
199          * \see ll_vm_open(), ll_vm_close().
200          */
201         atomic_t                vob_mmap_cnt;
202
203         /**
204          * various flags
205          * vob_discard_page_warned
206          *     if pages belonging to this object are discarded when a client
207          * is evicted, some debug info will be printed, this flag will be set
208          * during processing the first discarded page, then avoid flooding
209          * debug message for lots of discarded pages.
210          *
211          * \see ll_dirty_page_discard_warn.
212          */
213         unsigned int            vob_discard_page_warned:1;
214 };
215
216 /**
217  * VVP-private page state.
218  */
219 struct vvp_page {
220         struct cl_page_slice vpg_cl;
221         unsigned        vpg_defer_uptodate:1,
222                         vpg_ra_updated:1,
223                         vpg_ra_used:1;
224         /** VM page */
225         struct page     *vpg_page;
226 };
227
228 static inline struct vvp_page *cl2vvp_page(const struct cl_page_slice *slice)
229 {
230         return container_of(slice, struct vvp_page, vpg_cl);
231 }
232
233 static inline pgoff_t vvp_index(struct vvp_page *vpg)
234 {
235         return vpg->vpg_page->index;
236 }
237
238 struct vvp_device {
239         struct cl_device    vdv_cl;
240         struct cl_device   *vdv_next;
241 };
242
243 static inline struct lu_device *vvp2lu_dev(struct vvp_device *vdv)
244 {
245         return &vdv->vdv_cl.cd_lu_dev;
246 }
247
248 static inline struct vvp_device *lu2vvp_dev(const struct lu_device *d)
249 {
250         return container_of_safe(d, struct vvp_device, vdv_cl.cd_lu_dev);
251 }
252
253 static inline struct vvp_device *cl2vvp_dev(const struct cl_device *d)
254 {
255         return container_of_safe(d, struct vvp_device, vdv_cl);
256 }
257
258 static inline struct vvp_object *cl2vvp(const struct cl_object *obj)
259 {
260         return container_of_safe(obj, struct vvp_object, vob_cl);
261 }
262
263 static inline struct vvp_object *lu2vvp(const struct lu_object *obj)
264 {
265         return container_of_safe(obj, struct vvp_object, vob_cl.co_lu);
266 }
267
268 static inline struct inode *vvp_object_inode(const struct cl_object *obj)
269 {
270         return cl2vvp(obj)->vob_inode;
271 }
272
273 int vvp_object_invariant(const struct cl_object *obj);
274 struct vvp_object *cl_inode2vvp(struct inode *inode);
275
276 static inline struct page *cl2vm_page(const struct cl_page_slice *slice)
277 {
278         return cl2vvp_page(slice)->vpg_page;
279 }
280
281 #ifdef CONFIG_LUSTRE_DEBUG_EXPENSIVE_CHECK
282 # define CLOBINVRNT(env, clob, expr)                                    \
283         do {                                                            \
284                 if (unlikely(!(expr))) {                                \
285                         LU_OBJECT_DEBUG(D_ERROR, (env), &(clob)->co_lu, \
286                                         #expr);                         \
287                         LINVRNT(0);                                     \
288                 }                                                       \
289         } while (0)
290 #else /* !CONFIG_LUSTRE_DEBUG_EXPENSIVE_CHECK */
291 # define CLOBINVRNT(env, clob, expr)                                    \
292         ((void)sizeof(env), (void)sizeof(clob), (void)sizeof !!(expr))
293 #endif /* CONFIG_LUSTRE_DEBUG_EXPENSIVE_CHECK */
294
295 int lov_read_and_clear_async_rc(struct cl_object *clob);
296
297 int vvp_io_init(const struct lu_env *env, struct cl_object *obj,
298                 struct cl_io *io);
299 int vvp_io_write_commit(const struct lu_env *env, struct cl_io *io);
300 int vvp_page_init(const struct lu_env *env, struct cl_object *obj,
301                   struct cl_page *page, pgoff_t index);
302 struct lu_object *vvp_object_alloc(const struct lu_env *env,
303                                    const struct lu_object_header *hdr,
304                                    struct lu_device *dev);
305
306 int vvp_global_init(void);
307 void vvp_global_fini(void);
308
309 #ifndef HAVE_ACCOUNT_PAGE_DIRTIED_EXPORT
310 extern unsigned int (*vvp_account_page_dirtied)(struct page *page,
311                                                 struct address_space *mapping);
312 #endif
313
314 extern const struct file_operations vvp_dump_pgcache_file_ops;
315
316 #endif /* VVP_INTERNAL_H */