blob: be09e04b042f43de6ede301d160ebf3818e73532 [file] [log] [blame]
Peng Taod7e09d02013-05-02 16:46:55 +08001/*
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
Oleg Drokin6a5b99a2016-06-14 23:33:40 -040018 * http://www.gnu.org/licenses/gpl-2.0.html
Peng Taod7e09d02013-05-02 16:46:55 +080019 *
Peng Taod7e09d02013-05-02 16:46:55 +080020 * 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 *
26 * Copyright (c) 2011, 2012, Intel Corporation.
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/obdclass/linux/linux-module.c
33 *
34 * Object Devices Class Driver
35 * These are the only exported functions, they provide some generic
36 * infrastructure for managing object devices
37 */
38
39#define DEBUG_SUBSYSTEM S_CLASS
40
41#include <linux/module.h>
42#include <linux/errno.h>
43#include <linux/kernel.h>
44#include <linux/major.h>
45#include <linux/sched.h>
46#include <linux/lp.h>
47#include <linux/slab.h>
48#include <linux/ioport.h>
49#include <linux/fcntl.h>
50#include <linux/delay.h>
51#include <linux/skbuff.h>
Peng Taod7e09d02013-05-02 16:46:55 +080052#include <linux/fs.h>
53#include <linux/poll.h>
Peng Taod7e09d02013-05-02 16:46:55 +080054#include <linux/list.h>
55#include <linux/highmem.h>
Tapasweni Pathak1bcb5bd2014-09-29 16:03:12 +053056#include <linux/io.h>
Peng Taod7e09d02013-05-02 16:46:55 +080057#include <asm/ioctls.h>
Tapasweni Pathak1bcb5bd2014-09-29 16:03:12 +053058#include <linux/uaccess.h>
Peng Taod7e09d02013-05-02 16:46:55 +080059#include <linux/miscdevice.h>
60#include <linux/seq_file.h>
Oleg Drokin8b828442015-05-21 15:31:36 -040061#include <linux/kobject.h>
Peng Taod7e09d02013-05-02 16:46:55 +080062
Greg Kroah-Hartman9fdaf8c2014-07-11 20:51:16 -070063#include "../../../include/linux/libcfs/libcfs.h"
64#include "../../../include/linux/lnet/lnetctl.h"
Greg Kroah-Hartman610f7372014-07-11 22:15:24 -070065#include "../../include/obd_support.h"
66#include "../../include/obd_class.h"
67#include "../../include/lprocfs_status.h"
John L. Hammond8877d3b2016-08-16 16:18:51 -040068#include "../../include/lustre/lustre_ioctl.h"
Greg Kroah-Hartman610f7372014-07-11 22:15:24 -070069#include "../../include/lustre_ver.h"
Peng Taod7e09d02013-05-02 16:46:55 +080070
Peng Taod7e09d02013-05-02 16:46:55 +080071/* buffer MUST be at least the size of obd_ioctl_hdr */
Oleg Drokine3e8ff42016-01-03 12:05:40 -050072int obd_ioctl_getdata(char **buf, int *len, void __user *arg)
Peng Taod7e09d02013-05-02 16:46:55 +080073{
74 struct obd_ioctl_hdr hdr;
75 struct obd_ioctl_data *data;
76 int err;
77 int offset = 0;
Peng Taod7e09d02013-05-02 16:46:55 +080078
Oleg Drokine3e8ff42016-01-03 12:05:40 -050079 if (copy_from_user(&hdr, arg, sizeof(hdr)))
Dan Carpenter3b66ea42014-12-22 10:52:39 +030080 return -EFAULT;
Peng Taod7e09d02013-05-02 16:46:55 +080081
82 if (hdr.ioc_version != OBD_IOCTL_VERSION) {
83 CERROR("Version mismatch kernel (%x) vs application (%x)\n",
84 OBD_IOCTL_VERSION, hdr.ioc_version);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +080085 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +080086 }
87
88 if (hdr.ioc_len > OBD_MAX_IOCTL_BUFFER) {
89 CERROR("User buffer len %d exceeds %d max buffer\n",
90 hdr.ioc_len, OBD_MAX_IOCTL_BUFFER);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +080091 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +080092 }
93
94 if (hdr.ioc_len < sizeof(struct obd_ioctl_data)) {
95 CERROR("User buffer too small for ioctl (%d)\n", hdr.ioc_len);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +080096 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +080097 }
98
99 /* When there are lots of processes calling vmalloc on multi-core
100 * system, the high lock contention will hurt performance badly,
101 * obdfilter-survey is an example, which relies on ioctl. So we'd
Oleg Drokin6ba59172016-02-24 22:00:35 -0500102 * better avoid vmalloc on ioctl path. LU-66
103 */
Julia Lawall6b0e43d2015-06-11 14:02:57 +0200104 *buf = libcfs_kvzalloc(hdr.ioc_len, GFP_NOFS);
Oleg Drokincce3c2d2016-02-16 00:46:55 -0500105 if (!*buf) {
Peng Taod7e09d02013-05-02 16:46:55 +0800106 CERROR("Cannot allocate control buffer of len %d\n",
107 hdr.ioc_len);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800108 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +0800109 }
110 *len = hdr.ioc_len;
111 data = (struct obd_ioctl_data *)*buf;
112
Oleg Drokine3e8ff42016-01-03 12:05:40 -0500113 if (copy_from_user(*buf, arg, hdr.ioc_len)) {
Dan Carpenter3b66ea42014-12-22 10:52:39 +0300114 err = -EFAULT;
115 goto free_buf;
Peng Taod7e09d02013-05-02 16:46:55 +0800116 }
Dan Carpenter3b66ea42014-12-22 10:52:39 +0300117 if (hdr.ioc_len != data->ioc_len) {
118 err = -EINVAL;
119 goto free_buf;
120 }
Peng Taod7e09d02013-05-02 16:46:55 +0800121
122 if (obd_ioctl_is_invalid(data)) {
123 CERROR("ioctl not correctly formatted\n");
Dan Carpenter3b66ea42014-12-22 10:52:39 +0300124 err = -EINVAL;
125 goto free_buf;
Peng Taod7e09d02013-05-02 16:46:55 +0800126 }
127
128 if (data->ioc_inllen1) {
129 data->ioc_inlbuf1 = &data->ioc_bulk[0];
130 offset += cfs_size_round(data->ioc_inllen1);
131 }
132
133 if (data->ioc_inllen2) {
134 data->ioc_inlbuf2 = &data->ioc_bulk[0] + offset;
135 offset += cfs_size_round(data->ioc_inllen2);
136 }
137
138 if (data->ioc_inllen3) {
139 data->ioc_inlbuf3 = &data->ioc_bulk[0] + offset;
140 offset += cfs_size_round(data->ioc_inllen3);
141 }
142
Bhumika Goyal197cb402016-01-21 00:17:44 +0530143 if (data->ioc_inllen4)
Peng Taod7e09d02013-05-02 16:46:55 +0800144 data->ioc_inlbuf4 = &data->ioc_bulk[0] + offset;
Peng Taod7e09d02013-05-02 16:46:55 +0800145
Peng Taod7e09d02013-05-02 16:46:55 +0800146 return 0;
Dan Carpenter3b66ea42014-12-22 10:52:39 +0300147
148free_buf:
Julia Lawall6b0e43d2015-06-11 14:02:57 +0200149 kvfree(*buf);
Dan Carpenter3b66ea42014-12-22 10:52:39 +0300150 return err;
Peng Taod7e09d02013-05-02 16:46:55 +0800151}
152EXPORT_SYMBOL(obd_ioctl_getdata);
153
Oleg Drokine3e8ff42016-01-03 12:05:40 -0500154int obd_ioctl_popdata(void __user *arg, void *data, int len)
Peng Taod7e09d02013-05-02 16:46:55 +0800155{
156 int err;
157
Liang Zhena0d5fce2016-03-22 19:03:59 -0400158 err = copy_to_user(arg, data, len) ? -EFAULT : 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800159 return err;
160}
Peng Taod7e09d02013-05-02 16:46:55 +0800161
162/* opening /dev/obd */
Greg Donald54442612014-10-20 11:18:12 -0500163static int obd_class_open(struct inode *inode, struct file *file)
Peng Taod7e09d02013-05-02 16:46:55 +0800164{
Peng Taod7e09d02013-05-02 16:46:55 +0800165 try_module_get(THIS_MODULE);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800166 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800167}
168
169/* closing /dev/obd */
Greg Donald54442612014-10-20 11:18:12 -0500170static int obd_class_release(struct inode *inode, struct file *file)
Peng Taod7e09d02013-05-02 16:46:55 +0800171{
Peng Taod7e09d02013-05-02 16:46:55 +0800172 module_put(THIS_MODULE);
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800173 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800174}
175
176/* to control /dev/obd */
177static long obd_class_ioctl(struct file *filp, unsigned int cmd,
178 unsigned long arg)
179{
180 int err = 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800181
182 /* Allow non-root access for OBD_IOC_PING_TARGET - used by lfs check */
Peng Tao2eb90a72014-01-22 21:47:37 +0800183 if (!capable(CFS_CAP_SYS_ADMIN) && (cmd != OBD_IOC_PING_TARGET))
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800184 return err = -EACCES;
Peng Taod7e09d02013-05-02 16:46:55 +0800185 if ((cmd & 0xffffff00) == ((int)'T') << 8) /* ignore all tty ioctls */
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800186 return err = -ENOTTY;
Peng Taod7e09d02013-05-02 16:46:55 +0800187
188 err = class_handle_ioctl(cmd, (unsigned long)arg);
189
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800190 return err;
Peng Taod7e09d02013-05-02 16:46:55 +0800191}
192
193/* declare character device */
Julia Lawall495ea0d2016-08-28 23:45:11 +0200194static const struct file_operations obd_psdev_fops = {
Peng Taod7e09d02013-05-02 16:46:55 +0800195 .owner = THIS_MODULE,
196 .unlocked_ioctl = obd_class_ioctl, /* unlocked_ioctl */
197 .open = obd_class_open, /* open */
198 .release = obd_class_release, /* release */
199};
200
201/* modules setup */
Greg Kroah-Hartmanc0426cf2013-07-24 10:21:26 -0700202struct miscdevice obd_psdev = {
Peng Taod7e09d02013-05-02 16:46:55 +0800203 .minor = OBD_DEV_MINOR,
204 .name = OBD_DEV_NAME,
205 .fops = &obd_psdev_fops,
206};
207
Oleg Drokin8b828442015-05-21 15:31:36 -0400208static ssize_t version_show(struct kobject *kobj, struct attribute *attr,
209 char *buf)
Peng Taod7e09d02013-05-02 16:46:55 +0800210{
Oleg Drokin8b828442015-05-21 15:31:36 -0400211 return sprintf(buf, "%s\n", LUSTRE_VERSION_STRING);
Peng Taod7e09d02013-05-02 16:46:55 +0800212}
213
Oleg Drokin8b828442015-05-21 15:31:36 -0400214static ssize_t pinger_show(struct kobject *kobj, struct attribute *attr,
215 char *buf)
Peng Taod7e09d02013-05-02 16:46:55 +0800216{
Oleg Drokin8b828442015-05-21 15:31:36 -0400217 return sprintf(buf, "%s\n", "on");
Peng Taod7e09d02013-05-02 16:46:55 +0800218}
219
Oleg Drokin8b828442015-05-21 15:31:36 -0400220static ssize_t health_show(struct kobject *kobj, struct attribute *attr,
221 char *buf)
Peng Taod7e09d02013-05-02 16:46:55 +0800222{
Joe Perches8faeebd2015-02-21 18:53:28 -0800223 bool healthy = true;
224 int i;
Oleg Drokin8b828442015-05-21 15:31:36 -0400225 size_t len = 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800226
227 if (libcfs_catastrophe)
Oleg Drokin8b828442015-05-21 15:31:36 -0400228 return sprintf(buf, "LBUG\n");
Peng Taod7e09d02013-05-02 16:46:55 +0800229
230 read_lock(&obd_dev_lock);
231 for (i = 0; i < class_devno_max(); i++) {
232 struct obd_device *obd;
233
234 obd = class_num2obd(i);
Bhumika Goyal6ae07f12016-01-21 00:17:45 +0530235 if (!obd || !obd->obd_attached || !obd->obd_set_up)
Peng Taod7e09d02013-05-02 16:46:55 +0800236 continue;
237
238 LASSERT(obd->obd_magic == OBD_DEVICE_MAGIC);
239 if (obd->obd_stopping)
240 continue;
241
Christoph Jaegerf9bd9c12014-03-28 00:21:07 +0100242 class_incref(obd, __func__, current);
Peng Taod7e09d02013-05-02 16:46:55 +0800243 read_unlock(&obd_dev_lock);
244
Bhumika Goyal197cb402016-01-21 00:17:44 +0530245 if (obd_health_check(NULL, obd))
Joe Perches8faeebd2015-02-21 18:53:28 -0800246 healthy = false;
Christoph Jaegerf9bd9c12014-03-28 00:21:07 +0100247 class_decref(obd, __func__, current);
Peng Taod7e09d02013-05-02 16:46:55 +0800248 read_lock(&obd_dev_lock);
249 }
250 read_unlock(&obd_dev_lock);
251
Joe Perches8faeebd2015-02-21 18:53:28 -0800252 if (healthy)
Oleg Drokin8b828442015-05-21 15:31:36 -0400253 len = sprintf(buf, "healthy\n");
Joe Perches8faeebd2015-02-21 18:53:28 -0800254 else
Oleg Drokin8b828442015-05-21 15:31:36 -0400255 len = sprintf(buf, "NOT HEALTHY\n");
Peng Taod7e09d02013-05-02 16:46:55 +0800256
Oleg Drokin8b828442015-05-21 15:31:36 -0400257 return len;
Peng Taod7e09d02013-05-02 16:46:55 +0800258}
259
Oleg Drokin8b828442015-05-21 15:31:36 -0400260static ssize_t jobid_var_show(struct kobject *kobj, struct attribute *attr,
261 char *buf)
Peng Taod7e09d02013-05-02 16:46:55 +0800262{
Oleg Drokin8b828442015-05-21 15:31:36 -0400263 return snprintf(buf, PAGE_SIZE, "%s\n", obd_jobid_var);
Peng Taod7e09d02013-05-02 16:46:55 +0800264}
265
Oleg Drokin8b828442015-05-21 15:31:36 -0400266static ssize_t jobid_var_store(struct kobject *kobj, struct attribute *attr,
267 const char *buffer,
268 size_t count)
Peng Taod7e09d02013-05-02 16:46:55 +0800269{
270 if (!count || count > JOBSTATS_JOBID_VAR_MAX_LEN)
271 return -EINVAL;
272
273 memset(obd_jobid_var, 0, JOBSTATS_JOBID_VAR_MAX_LEN + 1);
Oleg Drokina1e7e2d2014-04-27 13:07:10 -0400274
Oleg Drokin8b828442015-05-21 15:31:36 -0400275 memcpy(obd_jobid_var, buffer, count);
Oleg Drokina1e7e2d2014-04-27 13:07:10 -0400276
Peng Taod7e09d02013-05-02 16:46:55 +0800277 /* Trim the trailing '\n' if any */
Oleg Drokina1e7e2d2014-04-27 13:07:10 -0400278 if (obd_jobid_var[count - 1] == '\n')
279 obd_jobid_var[count - 1] = 0;
280
Peng Taod7e09d02013-05-02 16:46:55 +0800281 return count;
282}
283
Oleg Drokin8b828442015-05-21 15:31:36 -0400284static ssize_t jobid_name_show(struct kobject *kobj, struct attribute *attr,
285 char *buf)
Oleg Drokin76133e62014-04-27 22:21:52 -0400286{
Oleg Drokin8b828442015-05-21 15:31:36 -0400287 return snprintf(buf, PAGE_SIZE, "%s\n", obd_jobid_node);
Oleg Drokin76133e62014-04-27 22:21:52 -0400288}
289
Oleg Drokin8b828442015-05-21 15:31:36 -0400290static ssize_t jobid_name_store(struct kobject *kobj, struct attribute *attr,
291 const char *buffer,
292 size_t count)
Oleg Drokin76133e62014-04-27 22:21:52 -0400293{
Henri Doreauc9fe1f7f2016-09-18 16:37:47 -0400294 if (!count || count > LUSTRE_JOBID_SIZE)
Oleg Drokin76133e62014-04-27 22:21:52 -0400295 return -EINVAL;
296
Oleg Drokin8b828442015-05-21 15:31:36 -0400297 memcpy(obd_jobid_node, buffer, count);
Oleg Drokin76133e62014-04-27 22:21:52 -0400298
299 obd_jobid_node[count] = 0;
300
301 /* Trim the trailing '\n' if any */
302 if (obd_jobid_node[count - 1] == '\n')
303 obd_jobid_node[count - 1] = 0;
304
305 return count;
306}
Oleg Drokin76133e62014-04-27 22:21:52 -0400307
Oleg Drokin5c8c82f2015-05-21 15:32:06 -0400308/* Root for /sys/kernel/debug/lustre */
309struct dentry *debugfs_lustre_root;
310EXPORT_SYMBOL_GPL(debugfs_lustre_root);
311
Oleg Drokin8b828442015-05-21 15:31:36 -0400312LUSTRE_RO_ATTR(version);
313LUSTRE_RO_ATTR(pinger);
314LUSTRE_RO_ATTR(health);
315LUSTRE_RW_ATTR(jobid_var);
316LUSTRE_RW_ATTR(jobid_name);
317
318static struct attribute *lustre_attrs[] = {
319 &lustre_attr_version.attr,
320 &lustre_attr_pinger.attr,
321 &lustre_attr_health.attr,
322 &lustre_attr_jobid_name.attr,
323 &lustre_attr_jobid_var.attr,
324 NULL,
Peng Taod7e09d02013-05-02 16:46:55 +0800325};
Peng Taod7e09d02013-05-02 16:46:55 +0800326
327static void *obd_device_list_seq_start(struct seq_file *p, loff_t *pos)
328{
329 if (*pos >= class_devno_max())
330 return NULL;
331
332 return pos;
333}
334
335static void obd_device_list_seq_stop(struct seq_file *p, void *v)
336{
337}
338
339static void *obd_device_list_seq_next(struct seq_file *p, void *v, loff_t *pos)
340{
341 ++*pos;
342 if (*pos >= class_devno_max())
343 return NULL;
344
345 return pos;
346}
347
348static int obd_device_list_seq_show(struct seq_file *p, void *v)
349{
350 loff_t index = *(loff_t *)v;
351 struct obd_device *obd = class_num2obd((int)index);
352 char *status;
353
Bhumika Goyal6ae07f12016-01-21 00:17:45 +0530354 if (!obd)
Peng Taod7e09d02013-05-02 16:46:55 +0800355 return 0;
356
357 LASSERT(obd->obd_magic == OBD_DEVICE_MAGIC);
358 if (obd->obd_stopping)
359 status = "ST";
360 else if (obd->obd_inactive)
361 status = "IN";
362 else if (obd->obd_set_up)
363 status = "UP";
364 else if (obd->obd_attached)
365 status = "AT";
366 else
367 status = "--";
368
Joe Perches8faeebd2015-02-21 18:53:28 -0800369 seq_printf(p, "%3d %s %s %s %s %d\n",
370 (int)index, status, obd->obd_type->typ_name,
371 obd->obd_name, obd->obd_uuid.uuid,
372 atomic_read(&obd->obd_refcount));
373 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800374}
375
Cihangir Akturk83aa2ac2015-07-22 15:59:32 +0300376static const struct seq_operations obd_device_list_sops = {
Peng Taod7e09d02013-05-02 16:46:55 +0800377 .start = obd_device_list_seq_start,
378 .stop = obd_device_list_seq_stop,
379 .next = obd_device_list_seq_next,
380 .show = obd_device_list_seq_show,
381};
382
383static int obd_device_list_open(struct inode *inode, struct file *file)
384{
Peng Taod7e09d02013-05-02 16:46:55 +0800385 struct seq_file *seq;
386 int rc = seq_open(file, &obd_device_list_sops);
387
388 if (rc)
389 return rc;
390
391 seq = file->private_data;
Oleg Drokin4361a042015-05-21 15:32:07 -0400392 seq->private = inode->i_private;
Peng Taod7e09d02013-05-02 16:46:55 +0800393
394 return 0;
395}
396
Cihangir Akturk83aa2ac2015-07-22 15:59:32 +0300397static const struct file_operations obd_device_list_fops = {
Peng Taod7e09d02013-05-02 16:46:55 +0800398 .owner = THIS_MODULE,
399 .open = obd_device_list_open,
400 .read = seq_read,
401 .llseek = seq_lseek,
402 .release = seq_release,
403};
404
Oleg Drokin8b828442015-05-21 15:31:36 -0400405struct kobject *lustre_kobj;
406EXPORT_SYMBOL_GPL(lustre_kobj);
407
408static struct attribute_group lustre_attr_group = {
409 .attrs = lustre_attrs,
410};
411
Peng Taod7e09d02013-05-02 16:46:55 +0800412int class_procfs_init(void)
413{
Oleg Drokin3c4872f92015-07-06 12:48:42 -0400414 int rc = -ENOMEM;
Oleg Drokin5c8c82f2015-05-21 15:32:06 -0400415 struct dentry *file;
Peng Taod7e09d02013-05-02 16:46:55 +0800416
Oleg Drokin8b828442015-05-21 15:31:36 -0400417 lustre_kobj = kobject_create_and_add("lustre", fs_kobj);
Bhumika Goyal6ae07f12016-01-21 00:17:45 +0530418 if (!lustre_kobj)
Oleg Drokin8b828442015-05-21 15:31:36 -0400419 goto out;
420
421 /* Create the files associated with this kobject */
422 rc = sysfs_create_group(lustre_kobj, &lustre_attr_group);
423 if (rc) {
424 kobject_put(lustre_kobj);
425 goto out;
426 }
427
Oleg Drokin5c8c82f2015-05-21 15:32:06 -0400428 debugfs_lustre_root = debugfs_create_dir("lustre", NULL);
429 if (IS_ERR_OR_NULL(debugfs_lustre_root)) {
430 rc = debugfs_lustre_root ? PTR_ERR(debugfs_lustre_root)
431 : -ENOMEM;
432 debugfs_lustre_root = NULL;
433 kobject_put(lustre_kobj);
434 goto out;
435 }
436
437 file = debugfs_create_file("devices", 0444, debugfs_lustre_root, NULL,
438 &obd_device_list_fops);
439 if (IS_ERR_OR_NULL(file)) {
440 rc = file ? PTR_ERR(file) : -ENOMEM;
441 kobject_put(lustre_kobj);
442 goto out;
443 }
John L. Hammond59078382013-07-23 00:06:58 +0800444out:
Oleg Drokin5c8c82f2015-05-21 15:32:06 -0400445 return rc;
Peng Taod7e09d02013-05-02 16:46:55 +0800446}
447
448int class_procfs_clean(void)
449{
Oleg Drokincce3c2d2016-02-16 00:46:55 -0500450 debugfs_remove_recursive(debugfs_lustre_root);
Oleg Drokin5c8c82f2015-05-21 15:32:06 -0400451
452 debugfs_lustre_root = NULL;
453
Oleg Drokin8b828442015-05-21 15:31:36 -0400454 kobject_put(lustre_kobj);
455
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800456 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800457}