]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/staging/lustre/lustre/fid/lproc_fid.c
staging: lustre: fid: add include path to Makefile
[mirror_ubuntu-bionic-kernel.git] / drivers / staging / lustre / lustre / fid / lproc_fid.c
CommitLineData
d7e09d03
PT
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
6a5b99a4 18 * http://www.gnu.org/licenses/gpl-2.0.html
d7e09d03 19 *
d7e09d03
PT
20 * GPL HEADER END
21 */
22/*
23 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
25 *
1dc563a6 26 * Copyright (c) 2011, 2015, Intel Corporation.
d7e09d03
PT
27 */
28/*
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
31 *
32 * lustre/fid/lproc_fid.c
33 *
34 * Lustre Sequence Manager
35 *
36 * Author: Yury Umanets <umka@clusterfs.com>
37 */
38
39#define DEBUG_SUBSYSTEM S_FID
40
3bca1c17 41#include <linux/libcfs/libcfs.h>
9fdaf8c0 42#include <linux/module.h>
d7e09d03 43
3bca1c17
JS
44#include <obd.h>
45#include <obd_class.h>
46#include <obd_support.h>
47#include <lustre_req_layout.h>
48#include <lustre_fid.h>
d7e09d03
PT
49#include "fid_internal.h"
50
a1e7e2d4
OD
51/* Format: [0x64BIT_INT - 0x64BIT_INT] + 32 bytes just in case */
52#define MAX_FID_RANGE_STRLEN (32 + 2 * 2 * sizeof(__u64))
d7e09d03
PT
53/*
54 * Note: this function is only used for testing, it is no safe for production
55 * use.
56 */
f3aa79fb
DE
57static int
58ldebugfs_fid_write_common(const char __user *buffer, size_t count,
59 struct lu_seq_range *range)
d7e09d03
PT
60{
61 struct lu_seq_range tmp;
62 int rc;
a1e7e2d4 63 char kernbuf[MAX_FID_RANGE_STRLEN];
d7e09d03 64
6a9f7487 65 LASSERT(range);
d7e09d03 66
a1e7e2d4
OD
67 if (count >= sizeof(kernbuf))
68 return -EINVAL;
69
70 if (copy_from_user(kernbuf, buffer, count))
71 return -EFAULT;
72
73 kernbuf[count] = 0;
74
75 if (count == 5 && strcmp(kernbuf, "clear") == 0) {
76 memset(range, 0, sizeof(*range));
77 return count;
78 }
79
80 /* of the form "[0x0000000240000400 - 0x000000028000400]" */
81 rc = sscanf(kernbuf, "[%llx - %llx]\n",
2a3b60d8
EK
82 (unsigned long long *)&tmp.lsr_start,
83 (unsigned long long *)&tmp.lsr_end);
f65a0922
VK
84 if (rc != 2)
85 return -EINVAL;
5d01897e 86 if (!lu_seq_range_is_sane(&tmp) || lu_seq_range_is_zero(&tmp) ||
a1e7e2d4 87 tmp.lsr_start < range->lsr_start || tmp.lsr_end > range->lsr_end)
0a3bdb00 88 return -EINVAL;
d7e09d03 89 *range = tmp;
a1e7e2d4 90 return count;
d7e09d03
PT
91}
92
f3aa79fb
DE
93/* Client side debugfs stuff */
94static ssize_t
95ldebugfs_fid_space_seq_write(struct file *file,
96 const char __user *buffer,
97 size_t count, loff_t *off)
d7e09d03 98{
d1acbe57 99 struct lu_client_seq *seq;
d7e09d03 100 int rc;
d7e09d03 101
d1acbe57 102 seq = ((struct seq_file *)file->private_data)->private;
d7e09d03
PT
103
104 mutex_lock(&seq->lcs_mutex);
f3aa79fb 105 rc = ldebugfs_fid_write_common(buffer, count, &seq->lcs_space);
d7e09d03
PT
106
107 if (rc == 0) {
b9aabfcc 108 CDEBUG(D_INFO, "%s: Space: " DRANGE "\n",
d7e09d03
PT
109 seq->lcs_name, PRANGE(&seq->lcs_space));
110 }
111
112 mutex_unlock(&seq->lcs_mutex);
113
0a3bdb00 114 return count;
d7e09d03
PT
115}
116
117static int
f3aa79fb 118ldebugfs_fid_space_seq_show(struct seq_file *m, void *unused)
d7e09d03 119{
73bb1da6 120 struct lu_client_seq *seq = (struct lu_client_seq *)m->private;
d7e09d03 121
d7e09d03 122 mutex_lock(&seq->lcs_mutex);
91b3a685 123 seq_printf(m, "[%#llx - %#llx]:%x:%s\n", PRANGE(&seq->lcs_space));
d7e09d03
PT
124 mutex_unlock(&seq->lcs_mutex);
125
91b3a685 126 return 0;
d7e09d03
PT
127}
128
f3aa79fb
DE
129static ssize_t
130ldebugfs_fid_width_seq_write(struct file *file,
131 const char __user *buffer,
132 size_t count, loff_t *off)
d7e09d03 133{
d1acbe57 134 struct lu_client_seq *seq;
d7e09d03
PT
135 __u64 max;
136 int rc, val;
d7e09d03 137
d1acbe57 138 seq = ((struct seq_file *)file->private_data)->private;
d7e09d03 139
d7e09d03 140 rc = lprocfs_write_helper(buffer, count, &val);
73bb1da6 141 if (rc)
0a3bdb00 142 return rc;
d7e09d03 143
73bb1da6 144 mutex_lock(&seq->lcs_mutex);
d7e09d03
PT
145 if (seq->lcs_type == LUSTRE_SEQ_DATA)
146 max = LUSTRE_DATA_SEQ_MAX_WIDTH;
147 else
148 max = LUSTRE_METADATA_SEQ_MAX_WIDTH;
149
150 if (val <= max && val > 0) {
151 seq->lcs_width = val;
152
1c01737a
DC
153 CDEBUG(D_INFO, "%s: Sequence size: %llu\n", seq->lcs_name,
154 seq->lcs_width);
d7e09d03
PT
155 }
156
157 mutex_unlock(&seq->lcs_mutex);
158
0a3bdb00 159 return count;
d7e09d03
PT
160}
161
162static int
f3aa79fb 163ldebugfs_fid_width_seq_show(struct seq_file *m, void *unused)
d7e09d03 164{
73bb1da6 165 struct lu_client_seq *seq = (struct lu_client_seq *)m->private;
d7e09d03 166
d7e09d03 167 mutex_lock(&seq->lcs_mutex);
91b3a685 168 seq_printf(m, "%llu\n", seq->lcs_width);
d7e09d03
PT
169 mutex_unlock(&seq->lcs_mutex);
170
91b3a685 171 return 0;
d7e09d03
PT
172}
173
174static int
f3aa79fb 175ldebugfs_fid_fid_seq_show(struct seq_file *m, void *unused)
d7e09d03 176{
73bb1da6 177 struct lu_client_seq *seq = (struct lu_client_seq *)m->private;
d7e09d03 178
d7e09d03 179 mutex_lock(&seq->lcs_mutex);
91b3a685 180 seq_printf(m, DFID "\n", PFID(&seq->lcs_fid));
d7e09d03
PT
181 mutex_unlock(&seq->lcs_mutex);
182
91b3a685 183 return 0;
d7e09d03
PT
184}
185
186static int
f3aa79fb 187ldebugfs_fid_server_seq_show(struct seq_file *m, void *unused)
d7e09d03 188{
73bb1da6 189 struct lu_client_seq *seq = (struct lu_client_seq *)m->private;
d7e09d03 190 struct client_obd *cli;
d7e09d03 191
6a9f7487 192 if (seq->lcs_exp) {
d7e09d03 193 cli = &seq->lcs_exp->exp_obd->u.cli;
91b3a685 194 seq_printf(m, "%s\n", cli->cl_target_uuid.uuid);
d7e09d03 195 }
91b3a685
JP
196
197 return 0;
d7e09d03
PT
198}
199
f3aa79fb
DE
200LPROC_SEQ_FOPS(ldebugfs_fid_space);
201LPROC_SEQ_FOPS(ldebugfs_fid_width);
202LPROC_SEQ_FOPS_RO(ldebugfs_fid_server);
203LPROC_SEQ_FOPS_RO(ldebugfs_fid_fid);
d7e09d03 204
f3aa79fb 205struct lprocfs_vars seq_client_debugfs_list[] = {
1a8dded1
SG
206 { .name = "space",
207 .fops = &ldebugfs_fid_space_fops },
208 { .name = "width",
209 .fops = &ldebugfs_fid_width_fops },
210 { .name = "server",
211 .fops = &ldebugfs_fid_server_fops },
212 { .name = "fid",
213 .fops = &ldebugfs_fid_fid_fops },
73bb1da6
PT
214 { NULL }
215};