Whamcloud - gitweb
b=11063 set mtime to past under PW EOF extent lock (v6)
[fs/lustre-release.git] / lustre / osc / osc_io.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * Implementation of cl_io for OSC layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_OSC
42
43 #include "osc_cl_internal.h"
44
45 /** \addtogroup osc 
46  *  @{ 
47  */
48
49 /*****************************************************************************
50  *
51  * Type conversions.
52  *
53  */
54
55 static struct osc_req *cl2osc_req(const struct cl_req_slice *slice)
56 {
57         LINVRNT(slice->crs_dev->cd_lu_dev.ld_type == &osc_device_type);
58         return container_of0(slice, struct osc_req, or_cl);
59 }
60
61 static struct osc_io *cl2osc_io(const struct lu_env *env,
62                                 const struct cl_io_slice *slice)
63 {
64         struct osc_io *oio = container_of0(slice, struct osc_io, oi_cl);
65         LINVRNT(oio == osc_env_io(env));
66         return oio;
67 }
68
69 static struct osc_page *osc_cl_page_osc(struct cl_page *page)
70 {
71         const struct cl_page_slice *slice;
72
73         slice = cl_page_at(page, &osc_device_type);
74         LASSERT(slice != NULL);
75
76         return cl2osc_page(slice);
77 }
78
79
80 /*****************************************************************************
81  *
82  * io operations.
83  *
84  */
85
86 static void osc_io_fini(const struct lu_env *env, const struct cl_io_slice *io)
87 {
88 }
89
90 struct cl_page *osc_oap2cl_page(struct osc_async_page *oap)
91 {
92         return container_of(oap, struct osc_page, ops_oap)->ops_cl.cpl_page;
93 }
94
95 static void osc_io_unplug(const struct lu_env *env, struct osc_object *osc,
96                           struct client_obd *cli)
97 {
98         loi_list_maint(cli, osc->oo_oinfo);
99         osc_check_rpcs(env, cli);
100         client_obd_list_unlock(&cli->cl_loi_list_lock);
101 }
102
103 /**
104  * How many pages osc_io_submit() queues before checking whether an RPC is
105  * ready.
106  */
107 #define OSC_QUEUE_GRAIN (32)
108
109 /**
110  * An implementation of cl_io_operations::cio_io_submit() method for osc
111  * layer. Iterates over pages in the in-queue, prepares each for io by calling
112  * cl_page_prep() and then either submits them through osc_io_submit_page()
113  * or, if page is already submitted, changes osc flags through
114  * osc_set_async_flags_base().
115  */
116 static int osc_io_submit(const struct lu_env *env,
117                          const struct cl_io_slice *ios,
118                          enum cl_req_type crt, struct cl_2queue *queue,
119                          enum cl_req_priority priority)
120 {
121         struct cl_page    *page;
122         struct cl_page    *tmp;
123         struct osc_object *osc0 = NULL;
124         struct client_obd *cli  = NULL;
125         struct osc_object *osc  = NULL; /* to keep gcc happy */
126         struct osc_page   *opg;
127         struct cl_io      *io;
128
129         struct cl_page_list *qin      = &queue->c2_qin;
130         struct cl_page_list *qout     = &queue->c2_qout;
131         int queued = 0;
132         int result = 0;
133
134         LASSERT(qin->pl_nr > 0);
135
136         CDEBUG(D_INFO, "%i %i\n", qin->pl_nr, crt);
137         /*
138          * NOTE: here @page is a top-level page. This is done to avoid
139          *       creation of sub-page-list.
140          */
141         cl_page_list_for_each_safe(page, tmp, qin) {
142                 struct osc_async_page *oap;
143                 struct obd_export     *exp;
144
145                 /* Top level IO. */
146                 io = page->cp_owner;
147                 LASSERT(io != NULL);
148
149                 opg = osc_cl_page_osc(page);
150                 oap = &opg->ops_oap;
151                 osc = cl2osc(opg->ops_cl.cpl_obj);
152                 exp = osc_export(osc);
153
154                 if (priority > CRP_NORMAL) {
155                         cfs_spin_lock(&oap->oap_lock);
156                         oap->oap_async_flags |= ASYNC_HP;
157                         cfs_spin_unlock(&oap->oap_lock);
158                 }
159                 /*
160                  * This can be checked without cli->cl_loi_list_lock, because
161                  * ->oap_*_item are always manipulated when the page is owned.
162                  */
163                 if (!cfs_list_empty(&oap->oap_urgent_item) ||
164                     !cfs_list_empty(&oap->oap_rpc_item)) {
165                         result = -EBUSY;
166                         break;
167                 }
168
169                 if (osc0 == NULL) { /* first iteration */
170                         cli = &exp->exp_obd->u.cli;
171                         osc0 = osc;
172                 } else /* check that all pages are against the same object
173                         * (for now) */
174                         LASSERT(osc == osc0);
175                 if (queued++ == 0)
176                         client_obd_list_lock(&cli->cl_loi_list_lock);
177                 result = cl_page_prep(env, io, page, crt);
178                 if (result == 0) {
179                         cl_page_list_move(qout, qin, page);
180                         if (cfs_list_empty(&oap->oap_pending_item)) {
181                                 osc_io_submit_page(env, cl2osc_io(env, ios),
182                                                    opg, crt);
183                         } else {
184                                 result = osc_set_async_flags_base(cli,
185                                                                   osc->oo_oinfo,
186                                                                   oap,
187                                                                   OSC_FLAGS);
188                                 /*
189                                  * bug 18881: we can't just break out here when
190                                  * error occurrs after cl_page_prep has been
191                                  * called against the page. The correct
192                                  * way is to call page's completion routine,
193                                  * as in osc_oap_interrupted.  For simplicity,
194                                  * we just force osc_set_async_flags_base() to
195                                  * not return error.
196                                  */
197                                 LASSERT(result == 0);
198                         }
199                         opg->ops_submit_time = cfs_time_current();
200                 } else {
201                         LASSERT(result < 0);
202                         if (result != -EALREADY)
203                                 break;
204                         /*
205                          * Handle -EALREADY error: for read case, the page is
206                          * already in UPTODATE state; for write, the page
207                          * is not dirty.
208                          */
209                         result = 0;
210                 }
211                 /*
212                  * Don't keep client_obd_list_lock() for too long.
213                  *
214                  * XXX client_obd_list lock has to be unlocked periodically to
215                  * avoid soft-lockups that tend to happen otherwise (see bug
216                  * 16651). On the other hand, osc_io_submit_page() queues a
217                  * page with ASYNC_URGENT flag and so all pages queued up
218                  * until this point are sent out immediately by
219                  * osc_io_unplug() resulting in sub-optimal RPCs (sub-optimal
220                  * RPCs only happen during `warm up' phase when less than
221                  * cl_max_rpcs_in_flight RPCs are in flight). To balance these
222                  * conflicting requirements, one might unplug once enough
223                  * pages to form a large RPC were queued (i.e., use
224                  * cli->cl_max_pages_per_rpc as OSC_QUEUE_GRAIN, see
225                  * lop_makes_rpc()), or ignore soft-lockup issue altogether.
226                  *
227                  * XXX lock_need_resched() should be used here, but it is not
228                  * available in the older of supported kernels.
229                  */
230                 if (queued > OSC_QUEUE_GRAIN || cfs_need_resched()) {
231                         queued = 0;
232                         osc_io_unplug(env, osc, cli);
233                         cfs_cond_resched();
234                 }
235         }
236
237         LASSERT(ergo(result == 0, cli != NULL));
238         LASSERT(ergo(result == 0, osc == osc0));
239
240         if (queued > 0)
241                 osc_io_unplug(env, osc, cli);
242         CDEBUG(D_INFO, "%i/%i %i\n", qin->pl_nr, qout->pl_nr, result);
243         return qout->pl_nr > 0 ? 0 : result;
244 }
245
246 static void osc_page_touch_at(const struct lu_env *env,
247                               struct cl_object *obj, pgoff_t idx, unsigned to)
248 {
249         struct lov_oinfo  *loi  = cl2osc(obj)->oo_oinfo;
250         struct cl_attr    *attr = &osc_env_info(env)->oti_attr;
251         int valid;
252         __u64 kms;
253
254         /* offset within stripe */
255         kms = cl_offset(obj, idx) + to;
256
257         cl_object_attr_lock(obj);
258         /*
259          * XXX old code used
260          *
261          *         ll_inode_size_lock(inode, 0); lov_stripe_lock(lsm);
262          *
263          * here
264          */
265         CDEBUG(D_INODE, "stripe KMS %sincreasing "LPU64"->"LPU64" "LPU64"\n",
266                kms > loi->loi_kms ? "" : "not ", loi->loi_kms, kms,
267                loi->loi_lvb.lvb_size);
268
269         valid = 0;
270         if (kms > loi->loi_kms) {
271                 attr->cat_kms = kms;
272                 valid |= CAT_KMS;
273         }
274         if (kms > loi->loi_lvb.lvb_size) {
275                 attr->cat_size = kms;
276                 valid |= CAT_SIZE;
277         }
278         cl_object_attr_set(env, obj, attr, valid);
279         cl_object_attr_unlock(obj);
280 }
281
282 /**
283  * This is called when a page is accessed within file in a way that creates
284  * new page, if one were missing (i.e., if there were a hole at that place in
285  * the file, or accessed page is beyond the current file size). Examples:
286  * ->commit_write() and ->nopage() methods.
287  *
288  * Expand stripe KMS if necessary.
289  */
290 static void osc_page_touch(const struct lu_env *env,
291                            struct osc_page *opage, unsigned to)
292 {
293         struct cl_page    *page = opage->ops_cl.cpl_page;
294         struct cl_object  *obj  = opage->ops_cl.cpl_obj;
295
296         osc_page_touch_at(env, obj, page->cp_index, to);
297 }
298
299 /**
300  * Implements cl_io_operations::cio_prepare_write() method for osc layer.
301  *
302  * \retval -EIO transfer initiated against this osc will most likely fail
303  * \retval 0    transfer initiated against this osc will most likely succeed.
304  *
305  * The reason for this check is to immediately return an error to the caller
306  * in the case of a deactivated import. Note, that import can be deactivated
307  * later, while pages, dirtied by this IO, are still in the cache, but this is
308  * irrelevant, because that would still return an error to the application (if
309  * it does fsync), but many applications don't do fsync because of performance
310  * issues, and we wanted to return an -EIO at write time to notify the
311  * application.
312  */
313 static int osc_io_prepare_write(const struct lu_env *env,
314                                 const struct cl_io_slice *ios,
315                                 const struct cl_page_slice *slice,
316                                 unsigned from, unsigned to)
317 {
318         struct osc_device *dev = lu2osc_dev(slice->cpl_obj->co_lu.lo_dev);
319         struct obd_import *imp = class_exp2cliimp(dev->od_exp);
320
321         ENTRY;
322
323         /*
324          * This implements OBD_BRW_CHECK logic from old client.
325          */
326
327         RETURN(imp == NULL || imp->imp_invalid ? -EIO : 0);
328 }
329
330 static int osc_io_commit_write(const struct lu_env *env,
331                                const struct cl_io_slice *ios,
332                                const struct cl_page_slice *slice,
333                                unsigned from, unsigned to)
334 {
335         struct osc_page       *opg = cl2osc_page(slice);
336         struct osc_object     *obj = cl2osc(opg->ops_cl.cpl_obj);
337         struct osc_async_page *oap = &opg->ops_oap;
338         ENTRY;
339
340         LASSERT(to > 0);
341         /*
342          * XXX instead of calling osc_page_touch() here and in
343          * osc_io_fault_start() it might be more logical to introduce
344          * cl_page_touch() method, that generic cl_io_commit_write() and page
345          * fault code calls.
346          */
347         osc_page_touch(env, cl2osc_page(slice), to);
348         if (!client_is_remote(osc_export(obj)) &&
349             cfs_capable(CFS_CAP_SYS_RESOURCE))
350                 oap->oap_brw_flags |= OBD_BRW_NOQUOTA;
351
352         RETURN(0);
353 }
354
355 static int osc_io_fault_start(const struct lu_env *env,
356                               const struct cl_io_slice *ios)
357 {
358         struct cl_io       *io;
359         struct cl_fault_io *fio;
360
361         ENTRY;
362
363         io  = ios->cis_io;
364         fio = &io->u.ci_fault;
365         CDEBUG(D_INFO, "%lu %i %i\n",
366                fio->ft_index, fio->ft_writable, fio->ft_nob);
367         /*
368          * If mapping is writeable, adjust kms to cover this page,
369          * but do not extend kms beyond actual file size.
370          * See bug 10919.
371          */
372         if (fio->ft_writable)
373                 osc_page_touch_at(env, ios->cis_obj,
374                                   fio->ft_index, fio->ft_nob);
375         RETURN(0);
376 }
377
378 static int osc_setattr_upcall(void *a, int rc)
379 {
380         struct osc_setattr_cbargs *args = a;
381
382         args->opc_rc = rc;
383         cfs_complete(&args->opc_sync);
384         return 0;
385 }
386
387 /* Disable osc_trunc_check() because it is naturally race between read and
388  * truncate. See bug 20645 for details.
389  */
390 #if 0 && defined(__KERNEL__)
391 /**
392  * Checks that there are no pages being written in the extent being truncated.
393  */
394 static void osc_trunc_check(const struct lu_env *env, struct cl_io *io,
395                             struct osc_io *oio, size_t size)
396 {
397         struct osc_page     *cp;
398         struct osc_object   *obj;
399         struct cl_object    *clob;
400         struct cl_page      *page;
401         struct cl_page_list *list;
402         int                  partial;
403         pgoff_t              start;
404
405         clob    = oio->oi_cl.cis_obj;
406         obj     = cl2osc(clob);
407         start   = cl_index(clob, size);
408         partial = cl_offset(clob, start) < size;
409         list    = &osc_env_info(env)->oti_plist;
410
411         /*
412          * Complain if there are pages in the truncated region.
413          *
414          * XXX this is quite expensive check.
415          */
416         cl_page_list_init(list);
417         cl_page_gang_lookup(env, clob, io, start + partial, CL_PAGE_EOF, list, 0);
418
419         cl_page_list_for_each(page, list)
420                 CL_PAGE_DEBUG(D_ERROR, env, page, "exists %lu\n", start);
421
422         cl_page_list_disown(env, io, list);
423         cl_page_list_fini(env, list);
424
425         cfs_spin_lock(&obj->oo_seatbelt);
426         cfs_list_for_each_entry(cp, &obj->oo_inflight[CRT_WRITE],
427                                 ops_inflight) {
428                 page = cp->ops_cl.cpl_page;
429                 if (page->cp_index >= start + partial) {
430                         cfs_task_t *submitter;
431
432                         submitter = cp->ops_submitter;
433                         /*
434                          * XXX Linux specific debugging stuff.
435                          */
436                         CL_PAGE_DEBUG(D_ERROR, env, page, "%s/%i %lu\n",
437                                       submitter->comm, submitter->pid, start);
438                         libcfs_debug_dumpstack(submitter);
439                 }
440         }
441         cfs_spin_unlock(&obj->oo_seatbelt);
442 }
443 #else /* __KERNEL__ */
444 # define osc_trunc_check(env, io, oio, size) do {;} while (0)
445 #endif
446
447 static int osc_io_setattr_start(const struct lu_env *env,
448                                 const struct cl_io_slice *slice)
449 {
450         struct cl_io            *io     = slice->cis_io;
451         struct osc_io           *oio    = cl2osc_io(env, slice);
452         struct cl_object        *obj    = slice->cis_obj;
453         struct lov_oinfo        *loi    = cl2osc(obj)->oo_oinfo;
454         struct cl_attr          *attr   = &osc_env_info(env)->oti_attr;
455         struct obdo             *oa     = &oio->oi_oa;
456         struct osc_setattr_cbargs *cbargs = &oio->oi_setattr_cbarg;
457         loff_t                   size   = io->u.ci_setattr.sa_attr.lvb_size;
458         unsigned int             ia_valid = io->u.ci_setattr.sa_valid;
459         int                      result = 0;
460         struct obd_info          oinfo = { { { 0 } } };
461
462         if (ia_valid & ATTR_SIZE)
463                 osc_trunc_check(env, io, oio, size);
464
465         if (oio->oi_lockless == 0) {
466                 cl_object_attr_lock(obj);
467                 result = cl_object_attr_get(env, obj, attr);
468                 if (result == 0) {
469                         unsigned int cl_valid = 0;
470
471                         if (ia_valid & ATTR_SIZE) {
472                                 attr->cat_size = attr->cat_kms = size;
473                                 cl_valid = (CAT_SIZE | CAT_KMS);
474                         }
475                         if (ia_valid & ATTR_MTIME_SET) {
476                                 attr->cat_mtime = io->u.ci_setattr.sa_attr.lvb_mtime;
477                                 cl_valid |= CAT_MTIME;
478                         }
479                         if (ia_valid & ATTR_ATIME_SET) {
480                                 attr->cat_atime = io->u.ci_setattr.sa_attr.lvb_atime;
481                                 cl_valid |= CAT_ATIME;
482                         }
483                         if (ia_valid & ATTR_CTIME_SET) {
484                                 attr->cat_ctime = io->u.ci_setattr.sa_attr.lvb_ctime;
485                                 cl_valid |= CAT_CTIME;
486                         }
487                         result = cl_object_attr_set(env, obj, attr, cl_valid);
488                 }
489                 cl_object_attr_unlock(obj);
490         }
491         memset(oa, 0, sizeof(*oa));
492         if (result == 0) {
493                 oa->o_id = loi->loi_id;
494                 oa->o_gr = loi->loi_gr;
495                 oa->o_mtime = attr->cat_mtime;
496                 oa->o_atime = attr->cat_atime;
497                 oa->o_ctime = attr->cat_ctime;
498                 oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP | OBD_MD_FLATIME |
499                         OBD_MD_FLCTIME | OBD_MD_FLMTIME;
500                 if (ia_valid & ATTR_SIZE) {
501                         oa->o_size = size;
502                         oa->o_blocks = OBD_OBJECT_EOF;
503                         oa->o_valid |= OBD_MD_FLSIZE | OBD_MD_FLBLOCKS;
504
505                         if (oio->oi_lockless) {
506                                 oa->o_flags = OBD_FL_SRVLOCK;
507                                 oa->o_valid |= OBD_MD_FLFLAGS;
508                         }
509                 } else {
510                         LASSERT(oio->oi_lockless == 0);
511                 }
512
513                 oinfo.oi_oa = oa;
514                 oinfo.oi_capa = io->u.ci_setattr.sa_capa;
515                 cfs_init_completion(&cbargs->opc_sync);
516
517                 if (ia_valid & ATTR_SIZE)
518                         result = osc_punch_base(osc_export(cl2osc(obj)),
519                                                 &oinfo, osc_setattr_upcall,
520                                                 cbargs, PTLRPCD_SET);
521                 else
522                         result = osc_setattr_async_base(osc_export(cl2osc(obj)),
523                                                         &oinfo, NULL,
524                                                         osc_setattr_upcall,
525                                                         cbargs, PTLRPCD_SET);
526         }
527         return result;
528 }
529
530 static void osc_io_setattr_end(const struct lu_env *env,
531                                const struct cl_io_slice *slice)
532 {
533         struct cl_io            *io     = slice->cis_io;
534         struct osc_io           *oio    = cl2osc_io(env, slice);
535         struct osc_setattr_cbargs *cbargs = &oio->oi_setattr_cbarg;
536         int result;
537
538         cfs_wait_for_completion(&cbargs->opc_sync);
539
540         result = io->ci_result = cbargs->opc_rc;
541         if (result == 0) {
542                 struct cl_object *obj = slice->cis_obj;
543                 if (oio->oi_lockless) {
544                         /* lockless truncate */
545                         struct osc_device *osd = lu2osc_dev(obj->co_lu.lo_dev);
546
547                         LASSERT(cl_io_is_trunc(io));
548                         /* XXX: Need a lock. */
549                         osd->od_stats.os_lockless_truncates++;
550                 }
551         }
552 }
553
554 static int osc_io_read_start(const struct lu_env *env,
555                              const struct cl_io_slice *slice)
556 {
557         struct osc_io    *oio   = cl2osc_io(env, slice);
558         struct cl_object *obj   = slice->cis_obj;
559         struct cl_attr   *attr  = &osc_env_info(env)->oti_attr;
560         int              result = 0;
561         ENTRY;
562
563         if (oio->oi_lockless == 0) {
564                 cl_object_attr_lock(obj);
565                 result = cl_object_attr_get(env, obj, attr);
566                 if (result == 0) {
567                         attr->cat_atime = LTIME_S(CFS_CURRENT_TIME);
568                         result = cl_object_attr_set(env, obj, attr,
569                                                     CAT_ATIME);
570                 }
571                 cl_object_attr_unlock(obj);
572         }
573         RETURN(result);
574 }
575
576 static int osc_io_write_start(const struct lu_env *env,
577                               const struct cl_io_slice *slice)
578 {
579         struct osc_io    *oio   = cl2osc_io(env, slice);
580         struct cl_object *obj   = slice->cis_obj;
581         struct cl_attr   *attr  = &osc_env_info(env)->oti_attr;
582         int              result = 0;
583         ENTRY;
584
585         if (oio->oi_lockless == 0) {
586                 cl_object_attr_lock(obj);
587                 result = cl_object_attr_get(env, obj, attr);
588                 if (result == 0) {
589                         attr->cat_mtime = attr->cat_ctime =
590                                 LTIME_S(CFS_CURRENT_TIME);
591                         result = cl_object_attr_set(env, obj, attr,
592                                                     CAT_MTIME | CAT_CTIME);
593                 }
594                 cl_object_attr_unlock(obj);
595         }
596         RETURN(result);
597 }
598
599 static const struct cl_io_operations osc_io_ops = {
600         .op = {
601                 [CIT_READ] = {
602                         .cio_start  = osc_io_read_start,
603                         .cio_fini   = osc_io_fini
604                 },
605                 [CIT_WRITE] = {
606                         .cio_start  = osc_io_write_start,
607                         .cio_fini   = osc_io_fini
608                 },
609                 [CIT_SETATTR] = {
610                         .cio_start  = osc_io_setattr_start,
611                         .cio_end    = osc_io_setattr_end
612                 },
613                 [CIT_FAULT] = {
614                         .cio_fini   = osc_io_fini,
615                         .cio_start  = osc_io_fault_start
616                 },
617                 [CIT_MISC] = {
618                         .cio_fini   = osc_io_fini
619                 }
620         },
621         .req_op = {
622                  [CRT_READ] = {
623                          .cio_submit    = osc_io_submit
624                  },
625                  [CRT_WRITE] = {
626                          .cio_submit    = osc_io_submit
627                  }
628          },
629         .cio_prepare_write = osc_io_prepare_write,
630         .cio_commit_write  = osc_io_commit_write
631 };
632
633 /*****************************************************************************
634  *
635  * Transfer operations.
636  *
637  */
638
639 static int osc_req_prep(const struct lu_env *env,
640                         const struct cl_req_slice *slice)
641 {
642         return 0;
643 }
644
645 static void osc_req_completion(const struct lu_env *env,
646                                const struct cl_req_slice *slice, int ioret)
647 {
648         struct osc_req *or;
649
650         or = cl2osc_req(slice);
651         OBD_SLAB_FREE_PTR(or, osc_req_kmem);
652 }
653
654 /**
655  * Implementation of struct cl_req_operations::cro_attr_set() for osc
656  * layer. osc is responsible for struct obdo::o_id and struct obdo::o_gr
657  * fields.
658  */
659 static void osc_req_attr_set(const struct lu_env *env,
660                              const struct cl_req_slice *slice,
661                              const struct cl_object *obj,
662                              struct cl_req_attr *attr, obd_valid flags)
663 {
664         struct lov_oinfo *oinfo;
665         struct cl_req    *clerq;
666         struct cl_page   *apage; /* _some_ page in @clerq */
667         struct cl_lock   *lock;  /* _some_ lock protecting @apage */
668         struct osc_lock  *olck;
669         struct osc_page  *opg;
670         struct obdo      *oa;
671
672         oa = attr->cra_oa;
673         oinfo = cl2osc(obj)->oo_oinfo;
674         if (flags & OBD_MD_FLID) {
675                 oa->o_id = oinfo->loi_id;
676                 oa->o_valid |= OBD_MD_FLID;
677         }
678         if (flags & OBD_MD_FLGROUP) {
679                 oa->o_gr = oinfo->loi_gr;
680                 oa->o_valid |= OBD_MD_FLGROUP;
681         }
682         if (flags & OBD_MD_FLHANDLE) {
683                 clerq = slice->crs_req;
684                 LASSERT(!cfs_list_empty(&clerq->crq_pages));
685                 apage = container_of(clerq->crq_pages.next,
686                                      struct cl_page, cp_flight);
687                 opg = osc_cl_page_osc(apage);
688                 apage = opg->ops_cl.cpl_page; /* now apage is a sub-page */
689                 lock = cl_lock_at_page(env, apage->cp_obj, apage, NULL, 1, 1);
690                 if (lock == NULL) {
691                         struct cl_object_header *head;
692                         struct cl_lock          *scan;
693
694                         head = cl_object_header(apage->cp_obj);
695                         cfs_list_for_each_entry(scan, &head->coh_locks,
696                                                 cll_linkage)
697                                 CL_LOCK_DEBUG(D_ERROR, env, scan,
698                                               "no cover page!\n");
699                         CL_PAGE_DEBUG(D_ERROR, env, apage,
700                                       "dump uncover page!\n");
701                         libcfs_debug_dumpstack(NULL);
702                         LBUG();
703                 }
704
705                 olck = osc_lock_at(lock);
706                 LASSERT(olck != NULL);
707                 LASSERT(ergo(opg->ops_srvlock, olck->ols_lock == NULL));
708                 /* check for lockless io. */
709                 if (olck->ols_lock != NULL) {
710                         oa->o_handle = olck->ols_lock->l_remote_handle;
711                         oa->o_valid |= OBD_MD_FLHANDLE;
712                 }
713                 cl_lock_put(env, lock);
714         }
715 }
716
717 static const struct cl_req_operations osc_req_ops = {
718         .cro_prep       = osc_req_prep,
719         .cro_attr_set   = osc_req_attr_set,
720         .cro_completion = osc_req_completion
721 };
722
723
724 int osc_io_init(const struct lu_env *env,
725                 struct cl_object *obj, struct cl_io *io)
726 {
727         struct osc_io *oio = osc_env_io(env);
728
729         CL_IO_SLICE_CLEAN(oio, oi_cl);
730         cl_io_slice_add(io, &oio->oi_cl, obj, &osc_io_ops);
731         return 0;
732 }
733
734 int osc_req_init(const struct lu_env *env, struct cl_device *dev,
735                  struct cl_req *req)
736 {
737         struct osc_req *or;
738         int result;
739
740         OBD_SLAB_ALLOC_PTR_GFP(or, osc_req_kmem, CFS_ALLOC_IO);
741         if (or != NULL) {
742                 cl_req_slice_add(req, &or->or_cl, dev, &osc_req_ops);
743                 result = 0;
744         } else
745                 result = -ENOMEM;
746         return result;
747 }
748
749 /** @} osc */