Whamcloud - gitweb
LU-5971 llite: rename ccc_lock to vvp_lock
[fs/lustre-release.git] / lustre / llite / vvp_lock.c
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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2014, Intel Corporation.
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_lock for VVP layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_LLITE
42
43 #include <obd_support.h>
44 #include "vvp_internal.h"
45
46 /*****************************************************************************
47  *
48  * Vvp lock functions.
49  *
50  */
51
52 static void vvp_lock_fini(const struct lu_env *env, struct cl_lock_slice *slice)
53 {
54         struct vvp_lock *vlk = cl2vvp_lock(slice);
55
56         OBD_SLAB_FREE_PTR(vlk, vvp_lock_kmem);
57 }
58
59 static int vvp_lock_enqueue(const struct lu_env *env,
60                             const struct cl_lock_slice *slice,
61                             struct cl_io *unused, struct cl_sync_io *anchor)
62 {
63         CLOBINVRNT(env, slice->cls_obj, vvp_object_invariant(slice->cls_obj));
64
65         return 0;
66 }
67
68 static const struct cl_lock_operations vvp_lock_ops = {
69         .clo_fini       = vvp_lock_fini,
70         .clo_enqueue    = vvp_lock_enqueue,
71 };
72
73 int vvp_lock_init(const struct lu_env *env, struct cl_object *obj,
74                   struct cl_lock *lock, const struct cl_io *unused)
75 {
76         struct vvp_lock *vlk;
77         int result;
78
79         CLOBINVRNT(env, obj, vvp_object_invariant(obj));
80
81         OBD_SLAB_ALLOC_PTR_GFP(vlk, vvp_lock_kmem, GFP_NOFS);
82         if (vlk != NULL) {
83                 cl_lock_slice_add(lock, &vlk->vlk_cl, obj, &vvp_lock_ops);
84                 result = 0;
85         } else {
86                 result = -ENOMEM;
87         }
88
89         return result;
90 }