Viewing: mdd_lproc.c

// SPDX-License-Identifier: GPL-2.0

/*
 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
 * Use is subject to license terms.
 *
 * Copyright (c) 2012, 2017, Intel Corporation.
 */

/*
 * This file is part of Lustre, http://www.lustre.org/
 *
 * Lustre Metadata Server (mdd) routines
 *
 * Author: Wang Di <wangdi@clusterfs.com>
 */

#define DEBUG_SUBSYSTEM S_MDS

#include <obd.h>
#include <obd_class.h>
#include <obd_support.h>
#include <lprocfs_status.h>
#include "mdd_internal.h"

static ssize_t uuid_show(struct kobject *kobj, struct attribute *attr,
			 char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	struct obd_device *obd = mdd2obd_dev(mdd);

	return sprintf(buf, "%s\n", obd->obd_uuid.uuid);
}
LUSTRE_RO_ATTR(uuid);

static ssize_t atime_diff_show(struct kobject *kobj, struct attribute *attr,
			       char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return sprintf(buf, "%lld\n", mdd->mdd_atime_diff);
}

static ssize_t atime_diff_store(struct kobject *kobj,
				struct attribute *attr,
				const char *buffer, size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	time64_t diff = 0;
	int rc;

	rc = kstrtoll(buffer, 10, &diff);
	if (rc)
		return rc;

	mdd->mdd_atime_diff = diff;
	return count;
}
LUSTRE_RW_ATTR(atime_diff);

/**** changelogs ****/
static int mdd_changelog_current_mask_seq_show(struct seq_file *m, void *data)
{
	struct mdd_device *mdd = m->private;
	int i = 0;

	while (i < CL_LAST) {
		if (mdd->mdd_cl.mc_current_mask & BIT(i))
			seq_printf(m, "%s ", changelog_type2str(i));
		i++;
	}
	seq_putc(m, '\n');
	return 0;
}
LDEBUGFS_SEQ_FOPS_RO(mdd_changelog_current_mask);

static int mdd_changelog_mask_seq_show(struct seq_file *m, void *data)
{
	struct mdd_device *mdd = m->private;
	int i = 0;

	while (i < CL_LAST) {
		if (mdd->mdd_cl.mc_proc_mask & BIT(i))
			seq_printf(m, "%s ", changelog_type2str(i));
		i++;
	}
	seq_putc(m, '\n');
	return 0;
}

static ssize_t
mdd_changelog_mask_seq_write(struct file *file, const char __user *buffer,
			     size_t count, loff_t *off)
{
	struct seq_file *m = file->private_data;
	struct mdd_device *mdd = m->private;
	char *kernbuf;
	int rc;
	int oldmask = mdd->mdd_cl.mc_proc_mask;
	u64 newmask = oldmask;

	ENTRY;

	if (count >= PAGE_SIZE)
		RETURN(-EINVAL);
	OBD_ALLOC(kernbuf, PAGE_SIZE);
	if (kernbuf == NULL)
		RETURN(-ENOMEM);
	if (copy_from_user(kernbuf, buffer, count))
		GOTO(out, rc = -EFAULT);
	kernbuf[count] = 0;

	/* if the new mask is relative and proc mask is minimal then assume
	 * it is relative to DEFMASK, otherwise apply new mask on the current
	 * proc mask.
	 */
	if (oldmask == CHANGELOG_MINMASK) {
		char *str = kernbuf;

		while (isspace(*str))
			str++;
		if (*str == '+' || *str == '-')
			newmask = CHANGELOG_DEFMASK;
	}

	rc = cfs_str2mask(kernbuf, changelog_type2str, &newmask,
			  CHANGELOG_MINMASK, CHANGELOG_ALLMASK,
			  CHANGELOG_DEFMASK);
	if (rc)
		GOTO(out, rc);

	mdd->mdd_cl.mc_proc_mask = newmask;

	/* if oldmask is not MINMASK and newmask keeps all bits from oldmask
	 * then just extend the current mask, otherwise the current mask
	 * should be recalculated through all user masks.
	 */
	if (oldmask != CHANGELOG_MINMASK && (newmask & oldmask) == oldmask) {
		spin_lock(&mdd->mdd_cl.mc_user_lock);
		mdd->mdd_cl.mc_current_mask |= newmask;
		spin_unlock(&mdd->mdd_cl.mc_user_lock);
	} else {
		struct lu_env env;

		rc = lu_env_init(&env, LCT_LOCAL);
		if (rc)
			GOTO(out, rc);

		mdd_changelog_recalc_mask(&env, mdd);
		lu_env_fini(&env);
	}

	if (!rc)
		rc = count;

out:
	OBD_FREE(kernbuf, PAGE_SIZE);
	return rc;
}
LDEBUGFS_SEQ_FOPS(mdd_changelog_mask);

static int lprocfs_changelog_users_cb(const struct lu_env *env,
				      struct llog_handle *llh,
				      struct llog_rec_hdr *hdr, void *data)
{
	struct llog_changelog_user_rec2 *rec;
	struct seq_file *m = data;
	char user_name[CHANGELOG_USER_NAMELEN_FULL];

	LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);

	rec = container_of(hdr, typeof(*rec), cur_hdr);

	seq_printf(m, "%-24s %10llu (%u)",
		   mdd_chlg_username(rec, user_name, sizeof(user_name)),
		   rec->cur_endrec,
		   (__u32)ktime_get_real_seconds() - rec->cur_time);
	if (mdd_chlg_usermask(rec)) {
		char *sep = "";
		int i;

		seq_puts(m, " mask=");
		for (i = 0; i < CL_LAST; i++) {
			if (!(mdd_chlg_usermask(rec) & BIT(i)))
				continue;
			if (*sep)
				seq_puts(m, sep);
			seq_puts(m, changelog_type2str(i));
			sep = ",";
		}
	}
	seq_puts(m, "\n");

	return 0;
}

static int mdd_changelog_users_seq_show(struct seq_file *m, void *data)
{
	struct mdd_device *mdd = m->private;
	struct llog_ctxt *ctxt;
	struct lu_env env;
	__u64 cur;
	int rc;

	smp_rmb();
	if ((mdd->mdd_cl.mc_flags & CLM_INIT_DONE) == 0)
		return -ENXIO;

	ctxt = llog_get_context(mdd2obd_dev(mdd),
				LLOG_CHANGELOG_USER_ORIG_CTXT);
	if (ctxt == NULL)
		return -ENXIO;
	LASSERT(ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT);

	rc = lu_env_init(&env, LCT_LOCAL);
	if (rc) {
		llog_ctxt_put(ctxt);
		return rc;
	}

	spin_lock(&mdd->mdd_cl.mc_lock);
	cur = mdd->mdd_cl.mc_index;
	spin_unlock(&mdd->mdd_cl.mc_lock);

	seq_printf(m, "current_index: %llu\n", cur);
	seq_printf(m, "%-24s %10s %s %s\n", "ID", "index", "(idle)", "mask");

	llog_cat_process(&env, ctxt->loc_handle, lprocfs_changelog_users_cb,
			 m, 0, 0);

	lu_env_fini(&env);
	llog_ctxt_put(ctxt);
	return 0;
}
LDEBUGFS_SEQ_FOPS_RO(mdd_changelog_users);

static int mdd_changelog_size_ctxt(const struct lu_env *env,
				   struct mdd_device *mdd,
				   int index, __u64 *val)
{
	struct llog_ctxt *ctxt;

	smp_rmb();
	if ((mdd->mdd_cl.mc_flags & CLM_INIT_DONE) == 0)
		return -ENXIO;

	ctxt = llog_get_context(mdd2obd_dev(mdd),
				index);
	if (ctxt == NULL)
		return -ENXIO;

	if (!(ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT)) {
		CERROR("%s: ChangeLog has wrong flags: rc = %d\n",
		       ctxt->loc_obd->obd_name, -EINVAL);
		llog_ctxt_put(ctxt);
		return -EINVAL;
	}

	*val += llog_cat_size(env, ctxt->loc_handle);

	llog_ctxt_put(ctxt);

	return 0;
}

static ssize_t changelog_size_show(struct kobject *kobj,
				   struct attribute *attr,
				   char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	struct lu_env env;
	u64 tmp = 0;
	int rc;

	rc = lu_env_init(&env, LCT_LOCAL);
	if (rc)
		return rc;

	rc = mdd_changelog_size_ctxt(&env, mdd, LLOG_CHANGELOG_ORIG_CTXT, &tmp);
	if (rc) {
		lu_env_fini(&env);
		return rc;
	}

	rc = mdd_changelog_size_ctxt(&env, mdd, LLOG_CHANGELOG_USER_ORIG_CTXT,
				     &tmp);

	rc = sprintf(buf, "%llu\n", tmp);
	lu_env_fini(&env);
	return rc;
}
LUSTRE_RO_ATTR(changelog_size);

static ssize_t changelog_gc_show(struct kobject *kobj,
				 struct attribute *attr,
				 char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return sprintf(buf, "%u\n", mdd->mdd_changelog_gc);
}

static ssize_t changelog_gc_store(struct kobject *kobj,
				  struct attribute *attr,
				  const char *buffer, size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	bool val;
	int rc;

	rc = kstrtobool(buffer, &val);
	if (rc)
		return rc;

	mdd->mdd_changelog_gc = val;

	return count;
}
LUSTRE_RW_ATTR(changelog_gc);

static ssize_t changelog_free_space_gc_show(struct kobject *kobj,
					    struct attribute *attr, char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return sprintf(buf, "%u\n", mdd->mdd_changelog_free_space_gc);
}

static ssize_t changelog_free_space_gc_store(struct kobject *kobj,
					     struct attribute *attr,
					     const char *buffer, size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	bool val;
	int rc;

	rc = kstrtobool(buffer, &val);
	if (rc)
		return rc;

	mdd->mdd_changelog_free_space_gc = val;

	return count;
}
LUSTRE_RW_ATTR(changelog_free_space_gc);

static ssize_t changelog_max_idle_time_show(struct kobject *kobj,
					    struct attribute *attr,
					    char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return sprintf(buf, "%lld\n", mdd->mdd_changelog_max_idle_time);
}

static ssize_t changelog_max_idle_time_store(struct kobject *kobj,
					     struct attribute *attr,
					     const char *buffer, size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	time64_t val;
	int rc;

	rc = kstrtoll(buffer, 10, &val);
	if (rc)
		return rc;

	/* as it sounds reasonable, do not allow a user to be idle since
	 * more than about 68 years, this will allow to use 32bits
	 * timestamps for comparison
	 */
	if (val < 1 || val > INT_MAX)
		return -ERANGE;

	mdd->mdd_changelog_max_idle_time = val;

	return count;
}
LUSTRE_RW_ATTR(changelog_max_idle_time);

static ssize_t changelog_max_idle_indexes_show(struct kobject *kobj,
					       struct attribute *attr,
					       char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return sprintf(buf, "%lu\n", mdd->mdd_changelog_max_idle_indexes);
}

static ssize_t changelog_max_idle_indexes_store(struct kobject *kobj,
						struct attribute *attr,
						const char *buffer,
						size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	unsigned long val;
	int rc;

	LASSERT(mdd != NULL);
	rc = kstrtoul(buffer, 0, &val);
	if (rc)
		return rc;

	/* XXX may need to limit/check with reasonable elapsed/idle indexes */
	/* XXX may better allow to specify a % of full ChangeLogs */

	mdd->mdd_changelog_max_idle_indexes = val;

	return count;
}
LUSTRE_RW_ATTR(changelog_max_idle_indexes);

static ssize_t changelog_min_gc_interval_show(struct kobject *kobj,
					      struct attribute *attr,
					      char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return sprintf(buf, "%lld\n", mdd->mdd_changelog_min_gc_interval);
}

static ssize_t changelog_min_gc_interval_store(struct kobject *kobj,
					       struct attribute *attr,
					       const char *buffer,
					       size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	time64_t val;
	int rc;

	rc = kstrtoll(buffer, 10, &val);
	if (rc)
		return rc;

	/* XXX may need to limit with reasonable elapsed/interval times */
	if (val < 1)
		return -ERANGE;

	mdd->mdd_changelog_min_gc_interval = val;

	return count;
}
LUSTRE_RW_ATTR(changelog_min_gc_interval);

static ssize_t changelog_min_free_cat_entries_show(struct kobject *kobj,
						   struct attribute *attr,
						   char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return sprintf(buf, "%u\n", mdd->mdd_changelog_min_free_cat_entries);
}

static ssize_t changelog_min_free_cat_entries_store(struct kobject *kobj,
						    struct attribute *attr,
						    const char *buffer,
						    size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	unsigned int val;
	int rc;

	rc = kstrtouint(buffer, 10, &val);
	if (rc)
		return rc;

	/* XXX may need to limit with more reasonable number of free entries */
	if (val < 1)
		return -ERANGE;

	mdd->mdd_changelog_min_free_cat_entries = val;

	return count;
}
LUSTRE_RW_ATTR(changelog_min_free_cat_entries);

static ssize_t changelog_deniednext_show(struct kobject *kobj,
					 struct attribute *attr,
					 char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return sprintf(buf, "%u\n", mdd->mdd_cl.mc_deniednext);
}

static ssize_t changelog_deniednext_store(struct kobject *kobj,
					  struct attribute *attr,
					  const char *buffer,
					  size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	unsigned int time = 0;
	int rc;

	rc = kstrtouint(buffer, 0, &time);
	if (rc)
		return rc;

	mdd->mdd_cl.mc_deniednext = time;
	return count;
}
LUSTRE_RW_ATTR(changelog_deniednext);

static ssize_t enable_shard_pfid_show(struct kobject *kobj,
				      struct attribute *attr, char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return scnprintf(buf, PAGE_SIZE, "%d\n",
			 mdd->mdd_cl.mc_enable_shard_pfid);
}

static ssize_t enable_shard_pfid_store(struct kobject *kobj,
				       struct attribute *attr,
				       const char *buffer, size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	unsigned char val;
	int rc;

	rc = kstrtou8(buffer, 10, &val);
	if (rc)
		return rc;

	mdd->mdd_cl.mc_enable_shard_pfid = !!val;
	return count;
}
LUSTRE_RW_ATTR(enable_shard_pfid);

static ssize_t sync_permission_show(struct kobject *kobj,
				    struct attribute *attr, char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return sprintf(buf, "%d\n", mdd->mdd_sync_permission);
}

static ssize_t sync_permission_store(struct kobject *kobj,
				     struct attribute *attr,
				     const char *buffer, size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	bool val;
	int rc;

	rc = kstrtobool(buffer, &val);
	if (rc)
		return rc;

	mdd->mdd_sync_permission = val;

	return count;
}
LUSTRE_RW_ATTR(sync_permission);

static ssize_t lfsck_speed_limit_show(struct kobject *kobj,
				      struct attribute *attr, char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return lfsck_get_speed(buf, mdd->mdd_bottom);
}

static ssize_t lfsck_speed_limit_store(struct kobject *kobj,
				       struct attribute *attr,
				       const char *buffer, size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	unsigned int val;
	int rc;

	rc = kstrtouint(buffer, 10, &val);
	if (rc != 0)
		return rc;

	rc = lfsck_set_speed(mdd->mdd_bottom, val);
	return rc != 0 ? rc : count;
}
LUSTRE_RW_ATTR(lfsck_speed_limit);

static ssize_t lfsck_async_windows_show(struct kobject *kobj,
					struct attribute *attr, char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return lfsck_get_windows(buf, mdd->mdd_bottom);
}

static ssize_t lfsck_async_windows_store(struct kobject *kobj,
					 struct attribute *attr,
					 const char *buffer, size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	unsigned int val;
	int rc;

	rc = kstrtouint(buffer, 10, &val);
	if (rc)
		return rc;

	rc = lfsck_set_windows(mdd->mdd_bottom, val);

	return rc != 0 ? rc : count;
}
LUSTRE_RW_ATTR(lfsck_async_windows);

static int mdd_lfsck_namespace_seq_show(struct seq_file *m, void *data)
{
	struct mdd_device *mdd = m->private;

	LASSERT(mdd != NULL);

	return lfsck_dump(m, mdd->mdd_bottom, LFSCK_TYPE_NAMESPACE);
}
LDEBUGFS_SEQ_FOPS_RO(mdd_lfsck_namespace);

static int mdd_lfsck_layout_seq_show(struct seq_file *m, void *data)
{
	struct mdd_device *mdd = m->private;

	LASSERT(mdd != NULL);

	return lfsck_dump(m, mdd->mdd_bottom, LFSCK_TYPE_LAYOUT);
}
LDEBUGFS_SEQ_FOPS_RO(mdd_lfsck_layout);

/**
 * append_stripe_count_show() - Show default number of stripes for O_APPEND
 *                              files.
 * @kobj: Kernel object (OFD)
 * @attr: Pointer to struct attribute
 * @buf: buffer where the output string will be written [out]
 *
 * Return:
 * * %0 on success,
 * * %negative error code if failed
 */
static ssize_t append_stripe_count_show(struct kobject *kobj,
					struct attribute *attr, char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return scnprintf(buf, PAGE_SIZE, "%d\n", mdd->mdd_append_stripe_count);
}

/**
 * append_stripe_count_store() - Set default number of stripes for O_APPEND
 *                               files.
 * @kobj: Kernel object (OFD)
 * @attr: Pointer to struct attribute
 * @buffer: string containing the default number of stripes for new files
 * @count: @buffer length
 *
 * Return:
 * * %0 on success,
 * * %negative error code otherwise
 */
static ssize_t append_stripe_count_store(struct kobject *kobj,
					 struct attribute *attr,
					 const char *buffer, size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	int stripe_count;
	int rc;

	rc = kstrtoint(buffer, 0, &stripe_count);
	if (rc)
		return rc;

	if (stripe_count < -1)
		return -ERANGE;

	mdd->mdd_append_stripe_count = stripe_count;

	return count;
}
LUSTRE_RW_ATTR(append_stripe_count);

/**
 * append_pool_show() - Show default OST pool for O_APPEND files.
 * @kobj: Kernel object (OFD, proc object)
 * @attr: Pointer to struct attribute (attribute proc attribute)
 * @buf: buffer where the output string will be written [out]
 *
 * Return:
 * * %0 on success,
 * * %negative error code if failed
 */
static ssize_t append_pool_show(struct kobject *kobj,
				struct attribute *attr, char *buf)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	return scnprintf(buf, PAGE_SIZE, "%s\n", mdd->mdd_append_pool);
}

/**
 * append_pool_store() - Set default OST pool for O_APPEND files.
 * @kobj: proc object
 * @attr: proc attribute
 * @buffer: user inputted pool name
 * @count: @buffer length
 *
 * Return:
 * * @count on success
 * * %negative error code otherwise
 */
static ssize_t append_pool_store(struct kobject *kobj, struct attribute *attr,
				 const char *buffer, size_t count)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);

	if (!count || count > LOV_MAXPOOLNAME || buffer[0]  == '\n')
		return -EINVAL;

	strscpy(mdd->mdd_append_pool, buffer, LOV_MAXPOOLNAME + 1);
	if (mdd->mdd_append_pool[count - 1] == '\n')
		mdd->mdd_append_pool[count - 1] = '\0';

	/* clears the pool for "none", "inherit" or "ignore" */
	if (lov_pool_is_reserved(mdd->mdd_append_pool))
		memset(mdd->mdd_append_pool, 0, LOV_MAXPOOLNAME + 1);

	return count;
}
LUSTRE_RW_ATTR(append_pool);

static struct ldebugfs_vars ldebugfs_mdd_obd_vars[] = {
	{ .name =	"changelog_mask",
	  .fops =	&mdd_changelog_mask_fops	},
	{ .name =	"changelog_current_mask",
	  .fops =	&mdd_changelog_current_mask_fops },
	{ .name =	"changelog_users",
	  .fops =	&mdd_changelog_users_fops	},
	{ .name =	"lfsck_namespace",
	  .fops =	&mdd_lfsck_namespace_fops	},
	{ .name	=	"lfsck_layout",
	  .fops	=	&mdd_lfsck_layout_fops		},
	{ NULL }
};

static struct attribute *mdd_attrs[] = {
	&lustre_attr_uuid.attr,
	&lustre_attr_atime_diff.attr,
	&lustre_attr_changelog_size.attr,
	&lustre_attr_changelog_gc.attr,
	&lustre_attr_changelog_free_space_gc.attr,
	&lustre_attr_changelog_max_idle_time.attr,
	&lustre_attr_changelog_max_idle_indexes.attr,
	&lustre_attr_changelog_min_gc_interval.attr,
	&lustre_attr_changelog_min_free_cat_entries.attr,
	&lustre_attr_changelog_deniednext.attr,
	&lustre_attr_enable_shard_pfid.attr,
	&lustre_attr_lfsck_async_windows.attr,
	&lustre_attr_lfsck_speed_limit.attr,
	&lustre_attr_sync_permission.attr,
	&lustre_attr_append_stripe_count.attr,
	&lustre_attr_append_pool.attr,
	NULL,
};

ATTRIBUTE_GROUPS(mdd); /* creates mdd_groups */

static void mdd_sysfs_release(struct kobject *kobj)
{
	struct mdd_device *mdd = container_of(kobj, struct mdd_device,
					      mdd_kobj);
	struct obd_device *obd = mdd2obd_dev(mdd);

	debugfs_remove_recursive(obd->obd_debugfs_entry);
	obd->obd_debugfs_entry = NULL;

	complete(&mdd->mdd_kobj_unregister);
}

int mdd_procfs_init(struct mdd_device *mdd, const char *name)
{
	struct obd_device *obd = mdd2obd_dev(mdd);
	struct obd_type *type;
	int rc;

	ENTRY;
	/* at the moment there is no linkage between lu_type
	 * and obd_type, so we lookup obd_type this way
	 */
	type = class_search_type(LUSTRE_MDD_NAME);

	LASSERT(name != NULL);
	LASSERT(type != NULL);
	LASSERT(obd  != NULL);

	/* put reference taken by class_search_type */
	kobject_put(&type->typ_kobj);

	mdd->mdd_ktype.default_groups = mdd_groups;
	mdd->mdd_ktype.release = mdd_sysfs_release;
	mdd->mdd_ktype.sysfs_ops = &lustre_sysfs_ops;

	init_completion(&mdd->mdd_kobj_unregister);
	rc = kobject_init_and_add(&mdd->mdd_kobj, &mdd->mdd_ktype,
				  &type->typ_kobj, "%s", name);
	if (rc)
		return rc;

	/* Find the type procroot and add the proc entry for this device */
	obd->obd_debugfs_vars = ldebugfs_mdd_obd_vars;
	obd->obd_debugfs_entry = debugfs_create_dir(name,
						     type->typ_debugfs_entry);
	ldebugfs_add_vars(obd->obd_debugfs_entry, obd->obd_debugfs_vars, mdd);

	RETURN(rc);
}

void mdd_procfs_fini(struct mdd_device *mdd)
{
	kobject_put(&mdd->mdd_kobj);
	wait_for_completion(&mdd->mdd_kobj_unregister);
}