| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1 | /* | 
 | 2 |  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved. | 
| Steven Whitehouse | 3a8a9a1 | 2006-05-18 15:09:15 -0400 | [diff] [blame] | 3 |  * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved. | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 4 |  * | 
 | 5 |  * This copyrighted material is made available to anyone wishing to use, | 
 | 6 |  * modify, copy, or redistribute it subject to the terms and conditions | 
| Steven Whitehouse | e9fc2aa | 2006-09-01 11:05:15 -0400 | [diff] [blame] | 7 |  * of the GNU General Public License version 2. | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 8 |  */ | 
 | 9 |  | 
 | 10 | #include <linux/sched.h> | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 11 | #include <linux/spinlock.h> | 
 | 12 | #include <linux/completion.h> | 
 | 13 | #include <linux/buffer_head.h> | 
 | 14 | #include <linux/module.h> | 
 | 15 | #include <linux/kobject.h> | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 16 | #include <asm/uaccess.h> | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 17 | #include <linux/gfs2_ondisk.h> | 
| Steven Whitehouse | 31e54b0 | 2009-08-13 12:18:08 +0100 | [diff] [blame] | 18 | #include <linux/genhd.h> | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 19 |  | 
 | 20 | #include "gfs2.h" | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 21 | #include "incore.h" | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 22 | #include "sys.h" | 
 | 23 | #include "super.h" | 
 | 24 | #include "glock.h" | 
 | 25 | #include "quota.h" | 
| Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 26 | #include "util.h" | 
| Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 27 | #include "glops.h" | 
| Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 28 | #include "recovery.h" | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 29 |  | 
| Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 30 | struct gfs2_attr { | 
 | 31 | 	struct attribute attr; | 
 | 32 | 	ssize_t (*show)(struct gfs2_sbd *, char *); | 
 | 33 | 	ssize_t (*store)(struct gfs2_sbd *, const char *, size_t); | 
 | 34 | }; | 
 | 35 |  | 
 | 36 | static ssize_t gfs2_attr_show(struct kobject *kobj, struct attribute *attr, | 
 | 37 | 			      char *buf) | 
 | 38 | { | 
 | 39 | 	struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); | 
 | 40 | 	struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr); | 
 | 41 | 	return a->show ? a->show(sdp, buf) : 0; | 
 | 42 | } | 
 | 43 |  | 
 | 44 | static ssize_t gfs2_attr_store(struct kobject *kobj, struct attribute *attr, | 
 | 45 | 			       const char *buf, size_t len) | 
 | 46 | { | 
 | 47 | 	struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); | 
 | 48 | 	struct gfs2_attr *a = container_of(attr, struct gfs2_attr, attr); | 
 | 49 | 	return a->store ? a->store(sdp, buf, len) : len; | 
 | 50 | } | 
 | 51 |  | 
| Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 52 | static const struct sysfs_ops gfs2_attr_ops = { | 
| Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 53 | 	.show  = gfs2_attr_show, | 
 | 54 | 	.store = gfs2_attr_store, | 
 | 55 | }; | 
 | 56 |  | 
 | 57 |  | 
 | 58 | static struct kset *gfs2_kset; | 
 | 59 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 60 | static ssize_t id_show(struct gfs2_sbd *sdp, char *buf) | 
 | 61 | { | 
| Bob Peterson | c7227e4 | 2007-11-02 09:37:15 -0500 | [diff] [blame] | 62 | 	return snprintf(buf, PAGE_SIZE, "%u:%u\n", | 
 | 63 | 			MAJOR(sdp->sd_vfs->s_dev), MINOR(sdp->sd_vfs->s_dev)); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 64 | } | 
 | 65 |  | 
 | 66 | static ssize_t fsname_show(struct gfs2_sbd *sdp, char *buf) | 
 | 67 | { | 
| David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 68 | 	return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_fsname); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 69 | } | 
 | 70 |  | 
| Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 71 | static int gfs2_uuid_valid(const u8 *uuid) | 
 | 72 | { | 
 | 73 | 	int i; | 
 | 74 |  | 
 | 75 | 	for (i = 0; i < 16; i++) { | 
 | 76 | 		if (uuid[i]) | 
 | 77 | 			return 1; | 
 | 78 | 	} | 
 | 79 | 	return 0; | 
 | 80 | } | 
 | 81 |  | 
 | 82 | static ssize_t uuid_show(struct gfs2_sbd *sdp, char *buf) | 
 | 83 | { | 
| Steven Whitehouse | 32e471e | 2011-05-10 15:01:59 +0100 | [diff] [blame] | 84 | 	struct super_block *s = sdp->sd_vfs; | 
 | 85 | 	const u8 *uuid = s->s_uuid; | 
| Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 86 | 	buf[0] = '\0'; | 
 | 87 | 	if (!gfs2_uuid_valid(uuid)) | 
 | 88 | 		return 0; | 
| Joe Perches | f0b34ae | 2009-12-14 18:01:13 -0800 | [diff] [blame] | 89 | 	return snprintf(buf, PAGE_SIZE, "%pUB\n", uuid); | 
| Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 90 | } | 
 | 91 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 92 | static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf) | 
 | 93 | { | 
 | 94 | 	unsigned int count; | 
 | 95 |  | 
| Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 96 | 	mutex_lock(&sdp->sd_freeze_lock); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 97 | 	count = sdp->sd_freeze_count; | 
| Steven Whitehouse | f55ab26 | 2006-02-21 12:51:39 +0000 | [diff] [blame] | 98 | 	mutex_unlock(&sdp->sd_freeze_lock); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 99 |  | 
| David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 100 | 	return snprintf(buf, PAGE_SIZE, "%u\n", count); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 101 | } | 
 | 102 |  | 
 | 103 | static ssize_t freeze_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | 
 | 104 | { | 
 | 105 | 	ssize_t ret = len; | 
 | 106 | 	int error = 0; | 
 | 107 | 	int n = simple_strtol(buf, NULL, 0); | 
 | 108 |  | 
 | 109 | 	if (!capable(CAP_SYS_ADMIN)) | 
 | 110 | 		return -EACCES; | 
 | 111 |  | 
 | 112 | 	switch (n) { | 
 | 113 | 	case 0: | 
 | 114 | 		gfs2_unfreeze_fs(sdp); | 
 | 115 | 		break; | 
 | 116 | 	case 1: | 
 | 117 | 		error = gfs2_freeze_fs(sdp); | 
 | 118 | 		break; | 
 | 119 | 	default: | 
 | 120 | 		ret = -EINVAL; | 
 | 121 | 	} | 
 | 122 |  | 
 | 123 | 	if (error) | 
 | 124 | 		fs_warn(sdp, "freeze %d error %d", n, error); | 
 | 125 |  | 
 | 126 | 	return ret; | 
 | 127 | } | 
 | 128 |  | 
 | 129 | static ssize_t withdraw_show(struct gfs2_sbd *sdp, char *buf) | 
 | 130 | { | 
 | 131 | 	unsigned int b = test_bit(SDF_SHUTDOWN, &sdp->sd_flags); | 
| David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 132 | 	return snprintf(buf, PAGE_SIZE, "%u\n", b); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 133 | } | 
 | 134 |  | 
 | 135 | static ssize_t withdraw_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | 
 | 136 | { | 
 | 137 | 	if (!capable(CAP_SYS_ADMIN)) | 
 | 138 | 		return -EACCES; | 
 | 139 |  | 
 | 140 | 	if (simple_strtol(buf, NULL, 0) != 1) | 
 | 141 | 		return -EINVAL; | 
 | 142 |  | 
 | 143 | 	gfs2_lm_withdraw(sdp, | 
 | 144 | 		"GFS2: fsid=%s: withdrawing from cluster at user's request\n", | 
 | 145 | 		sdp->sd_fsname); | 
 | 146 | 	return len; | 
 | 147 | } | 
 | 148 |  | 
 | 149 | static ssize_t statfs_sync_store(struct gfs2_sbd *sdp, const char *buf, | 
 | 150 | 				 size_t len) | 
 | 151 | { | 
 | 152 | 	if (!capable(CAP_SYS_ADMIN)) | 
 | 153 | 		return -EACCES; | 
 | 154 |  | 
 | 155 | 	if (simple_strtol(buf, NULL, 0) != 1) | 
 | 156 | 		return -EINVAL; | 
 | 157 |  | 
| Steven Whitehouse | 8c42d63 | 2009-09-11 14:36:44 +0100 | [diff] [blame] | 158 | 	gfs2_statfs_sync(sdp->sd_vfs, 0); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 159 | 	return len; | 
 | 160 | } | 
 | 161 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 162 | static ssize_t quota_sync_store(struct gfs2_sbd *sdp, const char *buf, | 
 | 163 | 				size_t len) | 
 | 164 | { | 
 | 165 | 	if (!capable(CAP_SYS_ADMIN)) | 
 | 166 | 		return -EACCES; | 
 | 167 |  | 
 | 168 | 	if (simple_strtol(buf, NULL, 0) != 1) | 
 | 169 | 		return -EINVAL; | 
 | 170 |  | 
| Christoph Hellwig | 5fb324a | 2010-02-16 03:44:52 -0500 | [diff] [blame] | 171 | 	gfs2_quota_sync(sdp->sd_vfs, 0, 1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 172 | 	return len; | 
 | 173 | } | 
 | 174 |  | 
 | 175 | static ssize_t quota_refresh_user_store(struct gfs2_sbd *sdp, const char *buf, | 
 | 176 | 					size_t len) | 
 | 177 | { | 
| Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 178 | 	int error; | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 179 | 	u32 id; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 180 |  | 
 | 181 | 	if (!capable(CAP_SYS_ADMIN)) | 
 | 182 | 		return -EACCES; | 
 | 183 |  | 
 | 184 | 	id = simple_strtoul(buf, NULL, 0); | 
 | 185 |  | 
| Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 186 | 	error = gfs2_quota_refresh(sdp, 1, id); | 
 | 187 | 	return error ? error : len; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 188 | } | 
 | 189 |  | 
 | 190 | static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf, | 
 | 191 | 					 size_t len) | 
 | 192 | { | 
| Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 193 | 	int error; | 
| Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 194 | 	u32 id; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 195 |  | 
 | 196 | 	if (!capable(CAP_SYS_ADMIN)) | 
 | 197 | 		return -EACCES; | 
 | 198 |  | 
 | 199 | 	id = simple_strtoul(buf, NULL, 0); | 
 | 200 |  | 
| Steven Whitehouse | ea76233 | 2009-09-15 16:20:30 +0100 | [diff] [blame] | 201 | 	error = gfs2_quota_refresh(sdp, 0, id); | 
 | 202 | 	return error ? error : len; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 203 | } | 
 | 204 |  | 
| Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 205 | static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | 
 | 206 | { | 
 | 207 | 	struct gfs2_glock *gl; | 
 | 208 | 	const struct gfs2_glock_operations *glops; | 
 | 209 | 	unsigned int glmode; | 
 | 210 | 	unsigned int gltype; | 
 | 211 | 	unsigned long long glnum; | 
 | 212 | 	char mode[16]; | 
 | 213 | 	int rv; | 
 | 214 |  | 
 | 215 | 	if (!capable(CAP_SYS_ADMIN)) | 
 | 216 | 		return -EACCES; | 
 | 217 |  | 
 | 218 | 	rv = sscanf(buf, "%u:%llu %15s", &gltype, &glnum, | 
 | 219 | 		    mode); | 
 | 220 | 	if (rv != 3) | 
 | 221 | 		return -EINVAL; | 
 | 222 |  | 
 | 223 | 	if (strcmp(mode, "EX") == 0) | 
 | 224 | 		glmode = LM_ST_UNLOCKED; | 
 | 225 | 	else if ((strcmp(mode, "CW") == 0) || (strcmp(mode, "DF") == 0)) | 
 | 226 | 		glmode = LM_ST_DEFERRED; | 
 | 227 | 	else if ((strcmp(mode, "PR") == 0) || (strcmp(mode, "SH") == 0)) | 
 | 228 | 		glmode = LM_ST_SHARED; | 
 | 229 | 	else | 
 | 230 | 		return -EINVAL; | 
 | 231 |  | 
 | 232 | 	if (gltype > LM_TYPE_JOURNAL) | 
 | 233 | 		return -EINVAL; | 
| Steven Whitehouse | 1346698 | 2010-10-06 09:58:44 +0100 | [diff] [blame] | 234 | 	if (gltype == LM_TYPE_NONDISK && glnum == GFS2_TRANS_LOCK) | 
 | 235 | 		glops = &gfs2_trans_glops; | 
 | 236 | 	else | 
 | 237 | 		glops = gfs2_glops_list[gltype]; | 
| Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 238 | 	if (glops == NULL) | 
 | 239 | 		return -EINVAL; | 
| Steven Whitehouse | 6a99be5 | 2010-05-14 14:05:51 +0100 | [diff] [blame] | 240 | 	if (!test_and_set_bit(SDF_DEMOTE, &sdp->sd_flags)) | 
| Steven Whitehouse | 913a71d | 2010-05-06 11:03:29 +0100 | [diff] [blame] | 241 | 		fs_info(sdp, "demote interface used\n"); | 
| Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 242 | 	rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl); | 
 | 243 | 	if (rv) | 
 | 244 | 		return rv; | 
 | 245 | 	gfs2_glock_cb(gl, glmode); | 
 | 246 | 	gfs2_glock_put(gl); | 
 | 247 | 	return len; | 
 | 248 | } | 
 | 249 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 250 |  | 
 | 251 | #define GFS2_ATTR(name, mode, show, store) \ | 
 | 252 | static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store) | 
 | 253 |  | 
 | 254 | GFS2_ATTR(id,                  0444, id_show,       NULL); | 
 | 255 | GFS2_ATTR(fsname,              0444, fsname_show,   NULL); | 
| Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 256 | GFS2_ATTR(uuid,                0444, uuid_show,     NULL); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 257 | GFS2_ATTR(freeze,              0644, freeze_show,   freeze_store); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 258 | GFS2_ATTR(withdraw,            0644, withdraw_show, withdraw_store); | 
 | 259 | GFS2_ATTR(statfs_sync,         0200, NULL,          statfs_sync_store); | 
 | 260 | GFS2_ATTR(quota_sync,          0200, NULL,          quota_sync_store); | 
 | 261 | GFS2_ATTR(quota_refresh_user,  0200, NULL,          quota_refresh_user_store); | 
 | 262 | GFS2_ATTR(quota_refresh_group, 0200, NULL,          quota_refresh_group_store); | 
| Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 263 | GFS2_ATTR(demote_rq,           0200, NULL,	    demote_rq_store); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 264 |  | 
 | 265 | static struct attribute *gfs2_attrs[] = { | 
 | 266 | 	&gfs2_attr_id.attr, | 
 | 267 | 	&gfs2_attr_fsname.attr, | 
| Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 268 | 	&gfs2_attr_uuid.attr, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 269 | 	&gfs2_attr_freeze.attr, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 270 | 	&gfs2_attr_withdraw.attr, | 
 | 271 | 	&gfs2_attr_statfs_sync.attr, | 
 | 272 | 	&gfs2_attr_quota_sync.attr, | 
 | 273 | 	&gfs2_attr_quota_refresh_user.attr, | 
 | 274 | 	&gfs2_attr_quota_refresh_group.attr, | 
| Steven Whitehouse | 64d576b | 2009-02-12 13:31:58 +0000 | [diff] [blame] | 275 | 	&gfs2_attr_demote_rq.attr, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 276 | 	NULL, | 
 | 277 | }; | 
 | 278 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 279 | static struct kobj_type gfs2_ktype = { | 
 | 280 | 	.default_attrs = gfs2_attrs, | 
 | 281 | 	.sysfs_ops     = &gfs2_attr_ops, | 
 | 282 | }; | 
 | 283 |  | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 284 |  | 
 | 285 | /* | 
 | 286 |  * lock_module. Originally from lock_dlm | 
 | 287 |  */ | 
 | 288 |  | 
 | 289 | static ssize_t proto_name_show(struct gfs2_sbd *sdp, char *buf) | 
 | 290 | { | 
 | 291 | 	const struct lm_lockops *ops = sdp->sd_lockstruct.ls_ops; | 
 | 292 | 	return sprintf(buf, "%s\n", ops->lm_proto_name); | 
 | 293 | } | 
 | 294 |  | 
 | 295 | static ssize_t block_show(struct gfs2_sbd *sdp, char *buf) | 
 | 296 | { | 
 | 297 | 	struct lm_lockstruct *ls = &sdp->sd_lockstruct; | 
 | 298 | 	ssize_t ret; | 
 | 299 | 	int val = 0; | 
 | 300 |  | 
 | 301 | 	if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_flags)) | 
 | 302 | 		val = 1; | 
 | 303 | 	ret = sprintf(buf, "%d\n", val); | 
 | 304 | 	return ret; | 
 | 305 | } | 
 | 306 |  | 
 | 307 | static ssize_t block_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | 
 | 308 | { | 
 | 309 | 	struct lm_lockstruct *ls = &sdp->sd_lockstruct; | 
 | 310 | 	ssize_t ret = len; | 
 | 311 | 	int val; | 
 | 312 |  | 
 | 313 | 	val = simple_strtol(buf, NULL, 0); | 
 | 314 |  | 
 | 315 | 	if (val == 1) | 
 | 316 | 		set_bit(DFL_BLOCK_LOCKS, &ls->ls_flags); | 
 | 317 | 	else if (val == 0) { | 
 | 318 | 		clear_bit(DFL_BLOCK_LOCKS, &ls->ls_flags); | 
 | 319 | 		smp_mb__after_clear_bit(); | 
 | 320 | 		gfs2_glock_thaw(sdp); | 
 | 321 | 	} else { | 
 | 322 | 		ret = -EINVAL; | 
 | 323 | 	} | 
 | 324 | 	return ret; | 
 | 325 | } | 
 | 326 |  | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 327 | static ssize_t lkfirst_show(struct gfs2_sbd *sdp, char *buf) | 
 | 328 | { | 
 | 329 | 	struct lm_lockstruct *ls = &sdp->sd_lockstruct; | 
 | 330 | 	return sprintf(buf, "%d\n", ls->ls_first); | 
 | 331 | } | 
 | 332 |  | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 333 | static ssize_t lkfirst_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | 
 | 334 | { | 
 | 335 | 	unsigned first; | 
 | 336 | 	int rv; | 
 | 337 |  | 
 | 338 | 	rv = sscanf(buf, "%u", &first); | 
 | 339 | 	if (rv != 1 || first > 1) | 
 | 340 | 		return -EINVAL; | 
| Steven Whitehouse | 3942ae5 | 2011-07-11 08:53:30 +0100 | [diff] [blame] | 341 | 	rv = wait_for_completion_killable(&sdp->sd_locking_init); | 
 | 342 | 	if (rv) | 
 | 343 | 		return rv; | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 344 | 	spin_lock(&sdp->sd_jindex_spin); | 
 | 345 | 	rv = -EBUSY; | 
 | 346 | 	if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0) | 
 | 347 | 		goto out; | 
 | 348 | 	rv = -EINVAL; | 
 | 349 | 	if (sdp->sd_args.ar_spectator) | 
 | 350 | 		goto out; | 
 | 351 | 	if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL) | 
 | 352 | 		goto out; | 
 | 353 |         sdp->sd_lockstruct.ls_first = first; | 
 | 354 |         rv = 0; | 
 | 355 | out: | 
 | 356 |         spin_unlock(&sdp->sd_jindex_spin); | 
 | 357 |         return rv ? rv : len; | 
 | 358 | } | 
 | 359 |  | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 360 | static ssize_t first_done_show(struct gfs2_sbd *sdp, char *buf) | 
 | 361 | { | 
 | 362 | 	struct lm_lockstruct *ls = &sdp->sd_lockstruct; | 
 | 363 | 	return sprintf(buf, "%d\n", ls->ls_first_done); | 
 | 364 | } | 
 | 365 |  | 
| Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 366 | static ssize_t recover_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 367 | { | 
| Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 368 | 	unsigned jid; | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 369 | 	struct gfs2_jdesc *jd; | 
| Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 370 | 	int rv; | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 371 |  | 
| Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 372 | 	rv = sscanf(buf, "%u", &jid); | 
 | 373 | 	if (rv != 1) | 
 | 374 | 		return -EINVAL; | 
 | 375 |  | 
 | 376 | 	rv = -ESHUTDOWN; | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 377 | 	spin_lock(&sdp->sd_jindex_spin); | 
| Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 378 | 	if (test_bit(SDF_NORECOVERY, &sdp->sd_flags)) | 
 | 379 | 		goto out; | 
 | 380 | 	rv = -EBUSY; | 
 | 381 | 	if (sdp->sd_jdesc->jd_jid == jid) | 
 | 382 | 		goto out; | 
 | 383 | 	rv = -ENOENT; | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 384 | 	list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) { | 
 | 385 | 		if (jd->jd_jid != jid) | 
 | 386 | 			continue; | 
| Tejun Heo | 6ecd7c2 | 2010-07-20 22:09:02 +0200 | [diff] [blame] | 387 | 		rv = gfs2_recover_journal(jd, false); | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 388 | 		break; | 
 | 389 | 	} | 
| Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 390 | out: | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 391 | 	spin_unlock(&sdp->sd_jindex_spin); | 
| Steven Whitehouse | fe64d51 | 2009-05-19 10:01:18 +0100 | [diff] [blame] | 392 | 	return rv ? rv : len; | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 393 | } | 
 | 394 |  | 
 | 395 | static ssize_t recover_done_show(struct gfs2_sbd *sdp, char *buf) | 
 | 396 | { | 
 | 397 | 	struct lm_lockstruct *ls = &sdp->sd_lockstruct; | 
 | 398 | 	return sprintf(buf, "%d\n", ls->ls_recover_jid_done); | 
 | 399 | } | 
 | 400 |  | 
 | 401 | static ssize_t recover_status_show(struct gfs2_sbd *sdp, char *buf) | 
 | 402 | { | 
 | 403 | 	struct lm_lockstruct *ls = &sdp->sd_lockstruct; | 
 | 404 | 	return sprintf(buf, "%d\n", ls->ls_recover_jid_status); | 
 | 405 | } | 
 | 406 |  | 
| Steven Whitehouse | e1b28aa | 2009-05-26 15:41:27 +0100 | [diff] [blame] | 407 | static ssize_t jid_show(struct gfs2_sbd *sdp, char *buf) | 
 | 408 | { | 
| Steven Whitehouse | feb47ca | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 409 | 	return sprintf(buf, "%d\n", sdp->sd_lockstruct.ls_jid); | 
| Steven Whitehouse | e1b28aa | 2009-05-26 15:41:27 +0100 | [diff] [blame] | 410 | } | 
 | 411 |  | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 412 | static ssize_t jid_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | 
 | 413 | { | 
| Steven Whitehouse | feb47ca | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 414 |         int jid; | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 415 | 	int rv; | 
 | 416 |  | 
| Steven Whitehouse | feb47ca | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 417 | 	rv = sscanf(buf, "%d", &jid); | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 418 | 	if (rv != 1) | 
 | 419 | 		return -EINVAL; | 
| Steven Whitehouse | 3942ae5 | 2011-07-11 08:53:30 +0100 | [diff] [blame] | 420 | 	rv = wait_for_completion_killable(&sdp->sd_locking_init); | 
 | 421 | 	if (rv) | 
 | 422 | 		return rv; | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 423 | 	spin_lock(&sdp->sd_jindex_spin); | 
 | 424 | 	rv = -EINVAL; | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 425 | 	if (sdp->sd_lockstruct.ls_ops->lm_mount == NULL) | 
 | 426 | 		goto out; | 
 | 427 | 	rv = -EBUSY; | 
| Steven Whitehouse | feb47ca | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 428 | 	if (test_bit(SDF_NOJOURNALID, &sdp->sd_flags) == 0) | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 429 | 		goto out; | 
| Steven Whitehouse | feb47ca | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 430 | 	rv = 0; | 
 | 431 | 	if (sdp->sd_args.ar_spectator && jid > 0) | 
 | 432 | 		rv = jid = -EINVAL; | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 433 | 	sdp->sd_lockstruct.ls_jid = jid; | 
| Steven Whitehouse | feb47ca | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 434 | 	clear_bit(SDF_NOJOURNALID, &sdp->sd_flags); | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 435 | 	smp_mb__after_clear_bit(); | 
 | 436 | 	wake_up_bit(&sdp->sd_flags, SDF_NOJOURNALID); | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 437 | out: | 
 | 438 | 	spin_unlock(&sdp->sd_jindex_spin); | 
 | 439 | 	return rv ? rv : len; | 
 | 440 | } | 
 | 441 |  | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 442 | #define GDLM_ATTR(_name,_mode,_show,_store) \ | 
| Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 443 | static struct gfs2_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store) | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 444 |  | 
| Steven Whitehouse | d7e623d | 2009-08-11 11:20:11 +0100 | [diff] [blame] | 445 | GDLM_ATTR(proto_name,		0444, proto_name_show,		NULL); | 
 | 446 | GDLM_ATTR(block,		0644, block_show,		block_store); | 
 | 447 | GDLM_ATTR(withdraw,		0644, withdraw_show,		withdraw_store); | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 448 | GDLM_ATTR(jid,			0644, jid_show,			jid_store); | 
 | 449 | GDLM_ATTR(first,		0644, lkfirst_show,		lkfirst_store); | 
| Steven Whitehouse | d7e623d | 2009-08-11 11:20:11 +0100 | [diff] [blame] | 450 | GDLM_ATTR(first_done,		0444, first_done_show,		NULL); | 
 | 451 | GDLM_ATTR(recover,		0600, NULL,			recover_store); | 
 | 452 | GDLM_ATTR(recover_done,		0444, recover_done_show,	NULL); | 
 | 453 | GDLM_ATTR(recover_status,	0444, recover_status_show,	NULL); | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 454 |  | 
 | 455 | static struct attribute *lock_module_attrs[] = { | 
 | 456 | 	&gdlm_attr_proto_name.attr, | 
 | 457 | 	&gdlm_attr_block.attr, | 
 | 458 | 	&gdlm_attr_withdraw.attr, | 
| Steven Whitehouse | e1b28aa | 2009-05-26 15:41:27 +0100 | [diff] [blame] | 459 | 	&gdlm_attr_jid.attr, | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 460 | 	&gdlm_attr_first.attr, | 
 | 461 | 	&gdlm_attr_first_done.attr, | 
 | 462 | 	&gdlm_attr_recover.attr, | 
 | 463 | 	&gdlm_attr_recover_done.attr, | 
 | 464 | 	&gdlm_attr_recover_status.attr, | 
| Steven Whitehouse | ea67eed | 2006-09-05 10:53:09 -0400 | [diff] [blame] | 465 | 	NULL, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 466 | }; | 
 | 467 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 468 | /* | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 469 |  * get and set struct gfs2_tune fields | 
 | 470 |  */ | 
 | 471 |  | 
 | 472 | static ssize_t quota_scale_show(struct gfs2_sbd *sdp, char *buf) | 
 | 473 | { | 
| David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 474 | 	return snprintf(buf, PAGE_SIZE, "%u %u\n", | 
 | 475 | 			sdp->sd_tune.gt_quota_scale_num, | 
 | 476 | 			sdp->sd_tune.gt_quota_scale_den); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 477 | } | 
 | 478 |  | 
 | 479 | static ssize_t quota_scale_store(struct gfs2_sbd *sdp, const char *buf, | 
 | 480 | 				 size_t len) | 
 | 481 | { | 
 | 482 | 	struct gfs2_tune *gt = &sdp->sd_tune; | 
 | 483 | 	unsigned int x, y; | 
 | 484 |  | 
 | 485 | 	if (!capable(CAP_SYS_ADMIN)) | 
 | 486 | 		return -EACCES; | 
 | 487 |  | 
 | 488 | 	if (sscanf(buf, "%u %u", &x, &y) != 2 || !y) | 
 | 489 | 		return -EINVAL; | 
 | 490 |  | 
 | 491 | 	spin_lock(>->gt_spin); | 
 | 492 | 	gt->gt_quota_scale_num = x; | 
 | 493 | 	gt->gt_quota_scale_den = y; | 
 | 494 | 	spin_unlock(>->gt_spin); | 
 | 495 | 	return len; | 
 | 496 | } | 
 | 497 |  | 
 | 498 | static ssize_t tune_set(struct gfs2_sbd *sdp, unsigned int *field, | 
 | 499 | 			int check_zero, const char *buf, size_t len) | 
 | 500 | { | 
 | 501 | 	struct gfs2_tune *gt = &sdp->sd_tune; | 
 | 502 | 	unsigned int x; | 
 | 503 |  | 
 | 504 | 	if (!capable(CAP_SYS_ADMIN)) | 
 | 505 | 		return -EACCES; | 
 | 506 |  | 
 | 507 | 	x = simple_strtoul(buf, NULL, 0); | 
 | 508 |  | 
 | 509 | 	if (check_zero && !x) | 
 | 510 | 		return -EINVAL; | 
 | 511 |  | 
 | 512 | 	spin_lock(>->gt_spin); | 
 | 513 | 	*field = x; | 
 | 514 | 	spin_unlock(>->gt_spin); | 
 | 515 | 	return len; | 
 | 516 | } | 
 | 517 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 518 | #define TUNE_ATTR_3(name, show, store)                                        \ | 
| Steven Whitehouse | 48c2b61 | 2009-05-13 14:49:48 +0100 | [diff] [blame] | 519 | static struct gfs2_attr tune_attr_##name = __ATTR(name, 0644, show, store) | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 520 |  | 
 | 521 | #define TUNE_ATTR_2(name, store)                                              \ | 
 | 522 | static ssize_t name##_show(struct gfs2_sbd *sdp, char *buf)                   \ | 
 | 523 | {                                                                             \ | 
| David Teigland | 3204a6c | 2006-09-06 16:57:06 -0500 | [diff] [blame] | 524 | 	return snprintf(buf, PAGE_SIZE, "%u\n", sdp->sd_tune.gt_##name);      \ | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 525 | }                                                                             \ | 
 | 526 | TUNE_ATTR_3(name, name##_show, store) | 
 | 527 |  | 
 | 528 | #define TUNE_ATTR(name, check_zero)                                           \ | 
 | 529 | static ssize_t name##_store(struct gfs2_sbd *sdp, const char *buf, size_t len)\ | 
 | 530 | {                                                                             \ | 
 | 531 | 	return tune_set(sdp, &sdp->sd_tune.gt_##name, check_zero, buf, len);  \ | 
 | 532 | }                                                                             \ | 
 | 533 | TUNE_ATTR_2(name, name##_store) | 
 | 534 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 535 | TUNE_ATTR(quota_warn_period, 0); | 
 | 536 | TUNE_ATTR(quota_quantum, 0); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 537 | TUNE_ATTR(max_readahead, 0); | 
 | 538 | TUNE_ATTR(complain_secs, 0); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 539 | TUNE_ATTR(statfs_slow, 0); | 
 | 540 | TUNE_ATTR(new_files_jdata, 0); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 541 | TUNE_ATTR(quota_simul_sync, 1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 542 | TUNE_ATTR(statfs_quantum, 1); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 543 | TUNE_ATTR_3(quota_scale, quota_scale_show, quota_scale_store); | 
 | 544 |  | 
 | 545 | static struct attribute *tune_attrs[] = { | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 546 | 	&tune_attr_quota_warn_period.attr, | 
 | 547 | 	&tune_attr_quota_quantum.attr, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 548 | 	&tune_attr_max_readahead.attr, | 
 | 549 | 	&tune_attr_complain_secs.attr, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 550 | 	&tune_attr_statfs_slow.attr, | 
 | 551 | 	&tune_attr_quota_simul_sync.attr, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 552 | 	&tune_attr_statfs_quantum.attr, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 553 | 	&tune_attr_quota_scale.attr, | 
 | 554 | 	&tune_attr_new_files_jdata.attr, | 
| Steven Whitehouse | ea67eed | 2006-09-05 10:53:09 -0400 | [diff] [blame] | 555 | 	NULL, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 556 | }; | 
 | 557 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 558 | static struct attribute_group tune_group = { | 
 | 559 | 	.name = "tune", | 
| Steven Whitehouse | ea67eed | 2006-09-05 10:53:09 -0400 | [diff] [blame] | 560 | 	.attrs = tune_attrs, | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 561 | }; | 
 | 562 |  | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 563 | static struct attribute_group lock_module_group = { | 
 | 564 | 	.name = "lock_module", | 
 | 565 | 	.attrs = lock_module_attrs, | 
 | 566 | }; | 
 | 567 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 568 | int gfs2_sys_fs_add(struct gfs2_sbd *sdp) | 
 | 569 | { | 
| Steven Whitehouse | 440d6da | 2009-07-31 12:16:25 +0100 | [diff] [blame] | 570 | 	struct super_block *sb = sdp->sd_vfs; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 571 | 	int error; | 
| Steven Whitehouse | 440d6da | 2009-07-31 12:16:25 +0100 | [diff] [blame] | 572 | 	char ro[20]; | 
 | 573 | 	char spectator[20]; | 
 | 574 | 	char *envp[] = { ro, spectator, NULL }; | 
 | 575 |  | 
 | 576 | 	sprintf(ro, "RDONLY=%d", (sb->s_flags & MS_RDONLY) ? 1 : 0); | 
 | 577 | 	sprintf(spectator, "SPECTATOR=%d", sdp->sd_args.ar_spectator ? 1 : 0); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 578 |  | 
| Greg Kroah-Hartman | 9bec101 | 2007-10-29 20:13:17 +0100 | [diff] [blame] | 579 | 	sdp->sd_kobj.kset = gfs2_kset; | 
| Greg Kroah-Hartman | 901195e | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 580 | 	error = kobject_init_and_add(&sdp->sd_kobj, &gfs2_ktype, NULL, | 
 | 581 | 				     "%s", sdp->sd_table_name); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 582 | 	if (error) | 
 | 583 | 		goto fail; | 
 | 584 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 585 | 	error = sysfs_create_group(&sdp->sd_kobj, &tune_group); | 
 | 586 | 	if (error) | 
| Steven Whitehouse | f6eb534 | 2009-05-26 15:50:25 +0100 | [diff] [blame] | 587 | 		goto fail_reg; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 588 |  | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 589 | 	error = sysfs_create_group(&sdp->sd_kobj, &lock_module_group); | 
 | 590 | 	if (error) | 
 | 591 | 		goto fail_tune; | 
 | 592 |  | 
| Steven Whitehouse | 31e54b0 | 2009-08-13 12:18:08 +0100 | [diff] [blame] | 593 | 	error = sysfs_create_link(&sdp->sd_kobj, | 
 | 594 | 				  &disk_to_dev(sb->s_bdev->bd_disk)->kobj, | 
 | 595 | 				  "device"); | 
 | 596 | 	if (error) | 
 | 597 | 		goto fail_lock_module; | 
 | 598 |  | 
| Steven Whitehouse | 440d6da | 2009-07-31 12:16:25 +0100 | [diff] [blame] | 599 | 	kobject_uevent_env(&sdp->sd_kobj, KOBJ_ADD, envp); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 600 | 	return 0; | 
 | 601 |  | 
| Steven Whitehouse | 31e54b0 | 2009-08-13 12:18:08 +0100 | [diff] [blame] | 602 | fail_lock_module: | 
 | 603 | 	sysfs_remove_group(&sdp->sd_kobj, &lock_module_group); | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 604 | fail_tune: | 
 | 605 | 	sysfs_remove_group(&sdp->sd_kobj, &tune_group); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 606 | fail_reg: | 
| Greg Kroah-Hartman | 197b12d | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 607 | 	kobject_put(&sdp->sd_kobj); | 
| Steven Whitehouse | a91ea69 | 2006-09-04 12:04:26 -0400 | [diff] [blame] | 608 | fail: | 
| David Teigland | 65952fb | 2006-09-15 13:09:11 -0500 | [diff] [blame] | 609 | 	fs_err(sdp, "error %d adding sysfs files", error); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 610 | 	return error; | 
 | 611 | } | 
 | 612 |  | 
 | 613 | void gfs2_sys_fs_del(struct gfs2_sbd *sdp) | 
 | 614 | { | 
| Steven Whitehouse | 31e54b0 | 2009-08-13 12:18:08 +0100 | [diff] [blame] | 615 | 	sysfs_remove_link(&sdp->sd_kobj, "device"); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 616 | 	sysfs_remove_group(&sdp->sd_kobj, &tune_group); | 
| Steven Whitehouse | f057f6c | 2009-01-12 10:43:39 +0000 | [diff] [blame] | 617 | 	sysfs_remove_group(&sdp->sd_kobj, &lock_module_group); | 
| Greg Kroah-Hartman | 197b12d | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 618 | 	kobject_put(&sdp->sd_kobj); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 619 | } | 
 | 620 |  | 
| Steven Whitehouse | fdd1062 | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 621 | static int gfs2_uevent(struct kset *kset, struct kobject *kobj, | 
 | 622 | 		       struct kobj_uevent_env *env) | 
 | 623 | { | 
 | 624 | 	struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); | 
| Steven Whitehouse | 32e471e | 2011-05-10 15:01:59 +0100 | [diff] [blame] | 625 | 	struct super_block *s = sdp->sd_vfs; | 
 | 626 | 	const u8 *uuid = s->s_uuid; | 
| Steven Whitehouse | 02e3cc7 | 2009-02-10 13:48:30 +0000 | [diff] [blame] | 627 |  | 
| Steven Whitehouse | fdd1062 | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 628 | 	add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name); | 
 | 629 | 	add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name); | 
| Steven Whitehouse | ba6e936 | 2010-06-14 10:01:30 +0100 | [diff] [blame] | 630 | 	if (!test_bit(SDF_NOJOURNALID, &sdp->sd_flags)) | 
| Steven Whitehouse | feb47ca | 2010-09-29 15:04:18 +0100 | [diff] [blame] | 631 | 		add_uevent_var(env, "JOURNALID=%d", sdp->sd_lockstruct.ls_jid); | 
| Joe Perches | f0b34ae | 2009-12-14 18:01:13 -0800 | [diff] [blame] | 632 | 	if (gfs2_uuid_valid(uuid)) | 
 | 633 | 		add_uevent_var(env, "UUID=%pUB", uuid); | 
| Steven Whitehouse | fdd1062 | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 634 | 	return 0; | 
 | 635 | } | 
 | 636 |  | 
| Emese Revfy | 9cd4361 | 2009-12-31 14:52:51 +0100 | [diff] [blame] | 637 | static const struct kset_uevent_ops gfs2_uevent_ops = { | 
| Steven Whitehouse | fdd1062 | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 638 | 	.uevent = gfs2_uevent, | 
 | 639 | }; | 
 | 640 |  | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 641 | int gfs2_sys_init(void) | 
 | 642 | { | 
| Steven Whitehouse | fdd1062 | 2008-11-26 10:26:38 +0000 | [diff] [blame] | 643 | 	gfs2_kset = kset_create_and_add("gfs2", &gfs2_uevent_ops, fs_kobj); | 
| Greg Kroah-Hartman | 9bec101 | 2007-10-29 20:13:17 +0100 | [diff] [blame] | 644 | 	if (!gfs2_kset) | 
 | 645 | 		return -ENOMEM; | 
 | 646 | 	return 0; | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 647 | } | 
 | 648 |  | 
 | 649 | void gfs2_sys_uninit(void) | 
 | 650 | { | 
| Greg Kroah-Hartman | 9bec101 | 2007-10-29 20:13:17 +0100 | [diff] [blame] | 651 | 	kset_unregister(gfs2_kset); | 
| David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 652 | } | 
 | 653 |  |