sys.c 16 KB

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