aboutsummaryrefslogtreecommitdiff
blob: 3bc1eb5a96c63f609d848822b81eeec1b947df8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
From 2110d1028da0bab44e1b3494ba4642155195a735 Mon Sep 17 00:00:00 2001
From: James Simmons <uja.ornl@gmail.com>
Date: Mon, 2 Dec 2013 12:36:06 -0500
Subject: [PATCH 16/18] LU-3319 procfs: move mdt/mds proc handling to seq_files

With 3.10 linux kernel and above proc handling now only
uses struct seq_files. This patch migrates the mdt/mds
layer proc entries over to using seq_files.

Signed-off-by: James Simmons <uja.ornl@gmail.com>
Change-Id: Icbafdcd2c2fe3959a51dda3f9c715b0ff8d95742
Signed-off-by: Alexey Shvetsov <alexxy@gentoo.org>
---
 lustre/mdt/mdt_coordinator.c      | 246 +++++++---------
 lustre/mdt/mdt_handler.c          |  16 +-
 lustre/mdt/mdt_hsm_cdt_actions.c  |   5 +-
 lustre/mdt/mdt_hsm_cdt_agent.c    |   5 +-
 lustre/mdt/mdt_hsm_cdt_requests.c |   5 +-
 lustre/mdt/mdt_internal.h         |  14 +-
 lustre/mdt/mdt_lproc.c            | 603 ++++++++++++++++++--------------------
 lustre/mdt/mdt_mds.c              |  12 +-
 8 files changed, 401 insertions(+), 505 deletions(-)

diff --git a/lustre/mdt/mdt_coordinator.c b/lustre/mdt/mdt_coordinator.c
index 3915e21..eb05bdf 100644
--- a/lustre/mdt/mdt_coordinator.c
+++ b/lustre/mdt/mdt_coordinator.c
@@ -46,7 +46,7 @@
 #include <lustre_log.h>
 #include "mdt_internal.h"
 
-static struct lprocfs_vars lprocfs_mdt_hsm_vars[];
+static struct lprocfs_seq_vars lprocfs_mdt_hsm_vars[];
 
 /**
  * get obj and HSM attributes on a fid
@@ -393,7 +393,7 @@ int hsm_cdt_procfs_init(struct mdt_device *mdt)
 	ENTRY;
 
 	/* init /proc entries, failure is not critical */
-	cdt->cdt_proc_dir = lprocfs_register("hsm",
+	cdt->cdt_proc_dir = lprocfs_seq_register("hsm",
 					     mdt2obd_dev(mdt)->obd_proc_entry,
 					     lprocfs_mdt_hsm_vars, mdt);
 	if (IS_ERR(cdt->cdt_proc_dir)) {
@@ -425,7 +425,7 @@ void  hsm_cdt_procfs_fini(struct mdt_device *mdt)
  * \param none
  * \retval var vector
  */
-struct lprocfs_vars *hsm_cdt_get_proc_vars(void)
+struct lprocfs_seq_vars *hsm_cdt_get_proc_vars(void)
 {
 	return lprocfs_mdt_hsm_vars;
 }
@@ -1769,22 +1769,17 @@ static __u64 hsm_policy_str2bit(const char *name)
  * \param hexa [IN] print mask before bit names
  * \param buffer [OUT] string
  * \param count [IN] size of buffer
- * \retval size filled in buffer
  */
-static int hsm_policy_bit2str(const __u64 mask, const bool hexa, char *buffer,
-			      int count)
+static void hsm_policy_bit2str(struct seq_file *m, const __u64 mask,
+				const bool hexa)
 {
-	int	 i, j, sz;
-	char	*ptr;
+	int	 i, j;
 	__u64	 bit;
 	ENTRY;
 
-	ptr = buffer;
-	if (hexa) {
-		sz = snprintf(buffer, count, "("LPX64") ", mask);
-		ptr += sz;
-		count -= sz;
-	}
+	if (hexa)
+		seq_printf(m, "("LPX64") ", mask);
+
 	for (i = 0; i < CDT_POLICY_SHIFT_COUNT; i++) {
 		bit = (1ULL << i);
 
@@ -1793,48 +1788,34 @@ static int hsm_policy_bit2str(const __u64 mask, const bool hexa, char *buffer,
 				break;
 		}
 		if (bit & mask)
-			sz = snprintf(ptr, count, "[%s] ",
-				      hsm_policy_names[j].name);
+			seq_printf(m, "[%s] ", hsm_policy_names[j].name);
 		else
-			sz = snprintf(ptr, count, "%s ",
-				      hsm_policy_names[j].name);
-
-		ptr += sz;
-		count -= sz;
+			seq_printf(m, "%s ", hsm_policy_names[j].name);
 	}
-	/* remove last ' ' */
-	*ptr = '\0';
-	ptr--;
-	RETURN(ptr - buffer);
 }
 
 /* methods to read/write HSM policy flags */
-static int lprocfs_rd_hsm_policy(char *page, char **start, off_t off,
-				 int count, int *eof, void *data)
+static int mdt_hsm_policy_seq_show(struct seq_file *m, void *data)
 {
-	struct mdt_device	*mdt = data;
+	struct mdt_device	*mdt = m->private;
 	struct coordinator	*cdt = &mdt->mdt_coordinator;
-	int			 sz;
 	ENTRY;
 
-	sz = hsm_policy_bit2str(cdt->cdt_policy, false, page, count);
-	page[sz] = '\n';
-	sz++;
-	page[sz] = '\0';
-	*eof = 1;
-	RETURN(sz);
+	hsm_policy_bit2str(m, cdt->cdt_policy, false);
+	RETURN(0);
 }
 
-static int lprocfs_wr_hsm_policy(struct file *file, const char *buffer,
-				 unsigned long count, void *data)
+static ssize_t
+mdt_hsm_policy_seq_write(struct file *file, const char *buffer,
+				size_t count, loff_t *off)
 {
-	struct mdt_device	*mdt = data;
+	struct seq_file		*m = file->private_data;
+	struct mdt_device	*mdt = m->private;
 	struct coordinator	*cdt = &mdt->mdt_coordinator;
 	char			*start, *token, sign;
 	char			*buf;
 	__u64			 policy;
 	__u64			 add_mask, remove_mask, set_mask;
-	int			 sz;
 	int			 rc;
 	ENTRY;
 
@@ -1867,18 +1848,10 @@ static int lprocfs_wr_hsm_policy(struct file *file, const char *buffer,
 
 		policy = hsm_policy_str2bit(token);
 		if (policy == 0) {
-			char *msg;
-
-			sz = PAGE_SIZE;
-			OBD_ALLOC(msg, sz);
-			if (!msg)
-				GOTO(out, rc = -ENOMEM);
-
-			hsm_policy_bit2str(0, false, msg, sz);
 			CWARN("%s: '%s' is unknown, "
-			      "supported policies are: %s\n", mdt_obd_name(mdt),
-			      token, msg);
-			OBD_FREE(msg, sz);
+				"supported policies are: \n", mdt_obd_name(mdt),
+				token);
+			hsm_policy_bit2str(m, 0, false);
 			GOTO(out, rc = -EINVAL);
 		}
 		switch (sign) {
@@ -1917,25 +1890,24 @@ out:
 	OBD_FREE(buf, count + 1);
 	RETURN(rc);
 }
+LPROC_SEQ_FOPS(mdt_hsm_policy);
 
 #define GENERATE_PROC_METHOD(VAR)					\
-static int lprocfs_rd_hsm_##VAR(char *page, char **start, off_t off,	\
-				int count, int *eof, void *data)	\
+static int mdt_hsm_##VAR##_seq_show(struct seq_file *m, void *data)	\
 {									\
-	struct mdt_device	*mdt = data;				\
+	struct mdt_device	*mdt = m->private;			\
 	struct coordinator	*cdt = &mdt->mdt_coordinator;		\
-	int			 sz;					\
 	ENTRY;								\
 									\
-	sz = snprintf(page, count, LPU64"\n", (__u64)cdt->VAR);		\
-	*eof = 1;							\
-	RETURN(sz);							\
+	seq_printf(m, LPU64"\n", (__u64)cdt->VAR);			\
+	RETURN(0);							\
 }									\
-static int lprocfs_wr_hsm_##VAR(struct file *file, const char *buffer,	\
-				unsigned long count, void *data)	\
+static ssize_t								\
+mdt_hsm_##VAR##_seq_write(struct file *file, const char *buffer,	\
+			  size_t count, loff_t *off)			\
 									\
 {									\
-	struct mdt_device	*mdt = data;				\
+	struct mdt_device	*mdt = ((struct seq_file *)file->private_data)->private;\
 	struct coordinator	*cdt = &mdt->mdt_coordinator;		\
 	int			 val;					\
 	int			 rc;					\
@@ -1949,7 +1921,7 @@ static int lprocfs_wr_hsm_##VAR(struct file *file, const char *buffer,	\
 		RETURN(count);						\
 	}								\
 	RETURN(-EINVAL);						\
-}
+}									\
 
 GENERATE_PROC_METHOD(cdt_loop_period)
 GENERATE_PROC_METHOD(cdt_grace_delay)
@@ -1967,10 +1939,11 @@ GENERATE_PROC_METHOD(cdt_default_archive_id)
 #define CDT_PURGE_CMD    "purge"
 #define CDT_HELP_CMD     "help"
 
-int lprocfs_wr_hsm_cdt_control(struct file *file, const char *buffer,
-			       unsigned long count, void *data)
+ssize_t
+mdt_hsm_cdt_control_seq_write(struct file *file, const char *buffer,
+			      size_t count, loff_t *off)
 {
-	struct obd_device	*obd = data;
+	struct obd_device	*obd = ((struct seq_file *)file->private_data)->private;
 	struct mdt_device	*mdt = mdt_dev(obd->obd_lu_dev);
 	struct coordinator	*cdt = &(mdt->mdt_coordinator);
 	int			 rc, usage = 0;
@@ -2024,83 +1997,71 @@ int lprocfs_wr_hsm_cdt_control(struct file *file, const char *buffer,
 	RETURN(count);
 }
 
-int lprocfs_rd_hsm_cdt_control(char *page, char **start, off_t off,
-			       int count, int *eof, void *data)
+int mdt_hsm_cdt_control_seq_show(struct seq_file *m, void *data)
 {
-	struct obd_device	*obd = data;
+	struct obd_device	*obd = m->private;
 	struct coordinator	*cdt;
-	int			 sz;
 	ENTRY;
 
 	cdt = &(mdt_dev(obd->obd_lu_dev)->mdt_coordinator);
-	*eof = 1;
 
 	if (cdt->cdt_state == CDT_INIT)
-		sz = snprintf(page, count, "init\n");
+		seq_printf(m, "init\n");
 	else if (cdt->cdt_state == CDT_RUNNING)
-		sz = snprintf(page, count, "enabled\n");
+		seq_printf(m, "enabled\n");
 	else if (cdt->cdt_state == CDT_STOPPING)
-		sz = snprintf(page, count, "stopping\n");
+		seq_printf(m, "stopping\n");
 	else if (cdt->cdt_state == CDT_STOPPED)
-		sz = snprintf(page, count, "stopped\n");
+		seq_printf(m, "stopped\n");
 	else if (cdt->cdt_state == CDT_DISABLE)
-		sz = snprintf(page, count, "disabled\n");
+		seq_printf(m, "disabled\n");
 	else
-		sz = snprintf(page, count, "unknown\n");
+		seq_printf(m, "unknown\n");
 
-	RETURN(sz);
+	RETURN(0);
 }
 
 static int
-lprocfs_rd_hsm_request_mask(char *page, char **start, off_t off,
-			    int count, int *eof, __u64 mask)
+mdt_hsm_request_mask_show(struct seq_file *m, __u64 mask)
 {
 	int i, rc = 0;
 	ENTRY;
 
 	for (i = 0; i < 8 * sizeof(mask); i++) {
 		if (mask & (1UL << i))
-			rc += snprintf(page + rc, count - rc, "%s%s",
-				       rc == 0 ? "" : " ",
-				       hsm_copytool_action2name(i));
+			rc += seq_printf(m, "%s%s", rc == 0 ? "" : " ",
+					hsm_copytool_action2name(i));
 	}
-
-	rc += snprintf(page + rc, count - rc, "\n");
+	rc += seq_printf(m, "\n");
 
 	RETURN(rc);
 }
 
 static int
-lprocfs_rd_hsm_user_request_mask(char *page, char **start, off_t off,
-				 int count, int *eof, void *data)
+mdt_hsm_user_request_mask_seq_show(struct seq_file *m, void *data)
 {
-	struct mdt_device *mdt = data;
+	struct mdt_device *mdt = m->private;
 	struct coordinator *cdt = &mdt->mdt_coordinator;
 
-	return lprocfs_rd_hsm_request_mask(page, start, off, count, eof,
-					   cdt->cdt_user_request_mask);
+	return mdt_hsm_request_mask_show(m, cdt->cdt_user_request_mask);
 }
 
 static int
-lprocfs_rd_hsm_group_request_mask(char *page, char **start, off_t off,
-				  int count, int *eof, void *data)
+mdt_hsm_group_request_mask_seq_show(struct seq_file *m, void *data)
 {
-	struct mdt_device *mdt = data;
+	struct mdt_device *mdt = m->private;
 	struct coordinator *cdt = &mdt->mdt_coordinator;
 
-	return lprocfs_rd_hsm_request_mask(page, start, off, count, eof,
-					   cdt->cdt_group_request_mask);
+	return mdt_hsm_request_mask_show(m, cdt->cdt_group_request_mask);
 }
 
 static int
-lprocfs_rd_hsm_other_request_mask(char *page, char **start, off_t off,
-				  int count, int *eof, void *data)
+mdt_hsm_other_request_mask_seq_show(struct seq_file *m, void *data)
 {
-	struct mdt_device *mdt = data;
+	struct mdt_device *mdt = m->private;
 	struct coordinator *cdt = &mdt->mdt_coordinator;
 
-	return lprocfs_rd_hsm_request_mask(page, start, off, count, eof,
-					   cdt->cdt_other_request_mask);
+	return mdt_hsm_request_mask_show(m, cdt->cdt_other_request_mask);
 }
 
 static inline enum hsm_copytool_action
@@ -2120,9 +2081,9 @@ hsm_copytool_name2action(const char *name)
 		return -1;
 }
 
-static int
-lprocfs_wr_hsm_request_mask(struct file *file, const char __user *user_buf,
-			    unsigned long user_count, __u64 *mask)
+static ssize_t
+mdt_write_hsm_request_mask(struct file *file, const char __user *user_buf,
+			    size_t user_count, __u64 *mask)
 {
 	char *buf, *pos, *name;
 	size_t buf_size;
@@ -2166,69 +2127,60 @@ out:
 	RETURN(rc);
 }
 
-static int
-lprocfs_wr_hsm_user_request_mask(struct file *file, const char __user *buf,
-				 unsigned long count, void *data)
+static ssize_t
+mdt_hsm_user_request_mask_seq_write(struct file *file, const char __user *buf,
+					size_t count, loff_t *off)
 {
-	struct mdt_device *mdt = data;
+	struct mdt_device *mdt = ((struct seq_file *)file->private_data)->private;
 	struct coordinator *cdt = &mdt->mdt_coordinator;
 
-	return lprocfs_wr_hsm_request_mask(file, buf, count,
+	return mdt_write_hsm_request_mask(file, buf, count,
 					   &cdt->cdt_user_request_mask);
 }
 
-static int
-lprocfs_wr_hsm_group_request_mask(struct file *file, const char __user *buf,
-				  unsigned long count, void *data)
+static ssize_t
+mdt_hsm_group_request_mask_seq_write(struct file *file, const char __user *buf,
+					size_t count, loff_t *off)
 {
-	struct mdt_device *mdt = data;
+	struct mdt_device *mdt = ((struct seq_file *)file->private_data)->private;
 	struct coordinator *cdt = &mdt->mdt_coordinator;
 
-	return lprocfs_wr_hsm_request_mask(file, buf, count,
+	return mdt_write_hsm_request_mask(file, buf, count,
 					   &cdt->cdt_group_request_mask);
 }
 
-static int
-lprocfs_wr_hsm_other_request_mask(struct file *file, const char __user *buf,
-				  unsigned long count, void *data)
+static ssize_t
+mdt_hsm_other_request_mask_seq_write(struct file *file, const char __user *buf,
+					size_t count, loff_t *off)
 {
-	struct mdt_device *mdt = data;
+	struct mdt_device *mdt = ((struct seq_file *)file->private_data)->private;
 	struct coordinator *cdt = &mdt->mdt_coordinator;
 
-	return lprocfs_wr_hsm_request_mask(file, buf, count,
+	return mdt_write_hsm_request_mask(file, buf, count,
 					   &cdt->cdt_other_request_mask);
 }
 
-static struct lprocfs_vars lprocfs_mdt_hsm_vars[] = {
-	{ "agents",			NULL, NULL, NULL, &mdt_hsm_agent_fops,
-					0 },
-	{ "actions",			NULL, NULL, NULL, &mdt_hsm_actions_fops,
-					0444 },
-	{ "default_archive_id",		lprocfs_rd_hsm_cdt_default_archive_id,
-					lprocfs_wr_hsm_cdt_default_archive_id,
-					NULL, NULL, 0 },
-	{ "grace_delay",		lprocfs_rd_hsm_cdt_grace_delay,
-					lprocfs_wr_hsm_cdt_grace_delay,
-					NULL, NULL, 0 },
-	{ "loop_period",		lprocfs_rd_hsm_cdt_loop_period,
-					lprocfs_wr_hsm_cdt_loop_period,
-					NULL, NULL, 0 },
-	{ "max_requests",		lprocfs_rd_hsm_cdt_max_requests,
-					lprocfs_wr_hsm_cdt_max_requests,
-					NULL, NULL, 0 },
-	{ "policy",			lprocfs_rd_hsm_policy,
-					lprocfs_wr_hsm_policy,
-					NULL, NULL, 0 },
-	{ "active_request_timeout",	lprocfs_rd_hsm_cdt_active_req_timeout,
-					lprocfs_wr_hsm_cdt_active_req_timeout,
-					NULL, NULL, 0 },
-	{ "active_requests",		NULL, NULL, NULL,
-					&mdt_hsm_active_requests_fops, 0 },
-	{ "user_request_mask",		lprocfs_rd_hsm_user_request_mask,
-					lprocfs_wr_hsm_user_request_mask, },
-	{ "group_request_mask", 	lprocfs_rd_hsm_group_request_mask,
-					lprocfs_wr_hsm_group_request_mask, },
-	{ "other_request_mask",		lprocfs_rd_hsm_other_request_mask,
-					lprocfs_wr_hsm_other_request_mask, },
+LPROC_SEQ_FOPS(mdt_hsm_cdt_loop_period);
+LPROC_SEQ_FOPS(mdt_hsm_cdt_grace_delay);
+LPROC_SEQ_FOPS(mdt_hsm_cdt_active_req_timeout);
+LPROC_SEQ_FOPS(mdt_hsm_cdt_max_requests);
+LPROC_SEQ_FOPS(mdt_hsm_cdt_default_archive_id);
+LPROC_SEQ_FOPS(mdt_hsm_user_request_mask);
+LPROC_SEQ_FOPS(mdt_hsm_group_request_mask);
+LPROC_SEQ_FOPS(mdt_hsm_other_request_mask);
+
+static struct lprocfs_seq_vars lprocfs_mdt_hsm_vars[] = {
+	{ "agents",		&mdt_hsm_agent_fops			},
+	{ "actions",		&mdt_hsm_actions_fops, NULL,	0444	},
+	{ "default_archive_id",	&mdt_hsm_cdt_default_archive_id_fops	},
+	{ "grace_delay",	&mdt_hsm_cdt_grace_delay_fops		},
+	{ "loop_period",	&mdt_hsm_cdt_loop_period_fops		},
+	{ "max_requests",	&mdt_hsm_cdt_max_requests_fops		},
+	{ "policy",		&mdt_hsm_policy_fops			},
+	{ "active_request_timeout",&mdt_hsm_cdt_active_req_timeout_fops	},
+	{ "active_requests",	&mdt_hsm_active_requests_fops		},
+	{ "user_request_mask",	&mdt_hsm_user_request_mask_fops,	},
+	{ "group_request_mask",	&mdt_hsm_group_request_mask_fops,	},
+	{ "other_request_mask",	&mdt_hsm_other_request_mask_fops,	},
 	{ 0 }
 };
diff --git a/lustre/mdt/mdt_handler.c b/lustre/mdt/mdt_handler.c
index 8daf7e1..9f7d4ba 100644
--- a/lustre/mdt/mdt_handler.c
+++ b/lustre/mdt/mdt_handler.c
@@ -4508,7 +4508,6 @@ static int mdt_process_config(const struct lu_env *env,
 
 	switch (cfg->lcfg_command) {
 	case LCFG_PARAM: {
-		struct lprocfs_static_vars  lvars;
 		struct obd_device	   *obd = d->ld_obd;
 
 		/* For interoperability */
@@ -4543,14 +4542,13 @@ static int mdt_process_config(const struct lu_env *env,
 			}
 		}
 
-		lprocfs_mdt_init_vars(&lvars);
-		rc = class_process_proc_param(PARAM_MDT, lvars.obd_vars,
-					      cfg, obd);
+		rc = class_process_proc_seq_param(PARAM_MDT, obd->obd_vars,
+							cfg, obd);
 		if (rc > 0 || rc == -ENOSYS) {
 			/* is it an HSM var ? */
-			rc = class_process_proc_param(PARAM_HSM,
-						      hsm_cdt_get_proc_vars(),
-						      cfg, obd);
+			rc = class_process_proc_seq_param(PARAM_HSM,
+							hsm_cdt_get_proc_vars(),
+							cfg, obd);
 			if (rc > 0 || rc == -ENOSYS)
 				/* we don't understand; pass it on */
 				rc = next->ld_ops->ldo_process_config(env, next,
@@ -5725,7 +5723,6 @@ static struct lu_device_type mdt_device_type = {
 
 static int __init mdt_mod_init(void)
 {
-	struct lprocfs_static_vars lvars;
 	int rc;
 
 	CLASSERT(sizeof("0x0123456789ABCDEF:0x01234567:0x01234567") ==
@@ -5740,10 +5737,9 @@ static int __init mdt_mod_init(void)
 	if (rc)
 		GOTO(lu_fini, rc);
 
-	lprocfs_mdt_init_vars(&lvars);
 	rc = class_register_type(&mdt_obd_device_ops, NULL, NULL,
 #ifndef HAVE_ONLY_PROCFS_SEQ
-				lvars.module_vars,
+				NULL,
 #endif
 				LUSTRE_MDT_NAME, &mdt_device_type);
 	if (rc)
diff --git a/lustre/mdt/mdt_hsm_cdt_actions.c b/lustre/mdt/mdt_hsm_cdt_actions.c
index da7f5a9..49c6b8b 100644
--- a/lustre/mdt/mdt_hsm_cdt_actions.c
+++ b/lustre/mdt/mdt_hsm_cdt_actions.c
@@ -513,9 +513,6 @@ static int lprocfs_open_hsm_actions(struct inode *inode, struct file *file)
 	struct mdt_device		*mdt;
 	ENTRY;
 
-	if (LPROCFS_ENTRY_CHECK(PDE(inode)))
-		RETURN(-ENOENT);
-
 	rc = seq_open(file, &mdt_hsm_actions_proc_ops);
 	if (rc)
 		RETURN(rc);
@@ -532,7 +529,7 @@ static int lprocfs_open_hsm_actions(struct inode *inode, struct file *file)
 	/* mdt is saved in proc_dir_entry->data by
 	 * mdt_coordinator_procfs_init() calling lprocfs_register()
 	 */
-	mdt = (struct mdt_device *)PDE(inode)->data;
+	mdt = (struct mdt_device *)PDE_DATA(inode);
 	aai->aai_mdt = mdt;
 	s = file->private_data;
 	s->private = aai;
diff --git a/lustre/mdt/mdt_hsm_cdt_agent.c b/lustre/mdt/mdt_hsm_cdt_agent.c
index 9a9ce6d..158cced 100644
--- a/lustre/mdt/mdt_hsm_cdt_agent.c
+++ b/lustre/mdt/mdt_hsm_cdt_agent.c
@@ -621,15 +621,12 @@ static int lprocfs_open_hsm_agent(struct inode *inode, struct file *file)
 	int		 rc;
 	ENTRY;
 
-	if (LPROCFS_ENTRY_CHECK(PDE(inode)))
-		RETURN(-ENOENT);
-
 	rc = seq_open(file, &mdt_hsm_agent_proc_ops);
 	if (rc)
 		RETURN(rc);
 
 	s = file->private_data;
-	s->private = PDE(inode)->data;
+	s->private = PDE_DATA(inode);
 
 	RETURN(rc);
 }
diff --git a/lustre/mdt/mdt_hsm_cdt_requests.c b/lustre/mdt/mdt_hsm_cdt_requests.c
index 796cbea..7bbc771 100644
--- a/lustre/mdt/mdt_hsm_cdt_requests.c
+++ b/lustre/mdt/mdt_hsm_cdt_requests.c
@@ -569,15 +569,12 @@ static int lprocfs_open_hsm_active_requests(struct inode *inode,
 	int		 rc;
 	ENTRY;
 
-	if (LPROCFS_ENTRY_CHECK(PDE(inode)))
-		RETURN(-ENOENT);
-
 	rc = seq_open(file, &mdt_hsm_active_requests_proc_ops);
 	if (rc) {
 		RETURN(rc);
 	}
 	s = file->private_data;
-	s->private = PDE(inode)->data;
+	s->private = PDE_DATA(inode);
 
 	RETURN(rc);
 }
diff --git a/lustre/mdt/mdt_internal.h b/lustre/mdt/mdt_internal.h
index dd36201..43cf9eb 100644
--- a/lustre/mdt/mdt_internal.h
+++ b/lustre/mdt/mdt_internal.h
@@ -778,9 +778,6 @@ void mdt_thread_info_init(struct ptlrpc_request *req,
 void mdt_thread_info_fini(struct mdt_thread_info *mti);
 struct mdt_thread_info *tsi2mdt_info(struct tgt_session_info *tsi);
 
-extern struct lprocfs_vars lprocfs_mds_module_vars[];
-extern struct lprocfs_vars lprocfs_mds_obd_vars[];
-
 int mdt_hsm_attr_set(struct mdt_thread_info *info, struct mdt_object *obj,
 		     const struct md_hsm *mh);
 
@@ -913,13 +910,12 @@ int mdt_hsm_cdt_fini(struct mdt_device *mdt);
 int mdt_hsm_cdt_wakeup(struct mdt_device *mdt);
 
 /* coordinator control /proc interface */
-int lprocfs_wr_hsm_cdt_control(struct file *file, const char *buffer,
-			       unsigned long count, void *data);
-int lprocfs_rd_hsm_cdt_control(char *page, char **start, off_t off,
-			       int count, int *eof, void *data);
+ssize_t mdt_hsm_cdt_control_seq_write(struct file *file, const char *buffer,
+					size_t count, loff_t *off);
+int mdt_hsm_cdt_control_seq_show(struct seq_file *m, void *data);
 int hsm_cdt_procfs_init(struct mdt_device *mdt);
 void hsm_cdt_procfs_fini(struct mdt_device *mdt);
-struct lprocfs_vars *hsm_cdt_get_proc_vars(void);
+struct lprocfs_seq_vars *hsm_cdt_get_proc_vars(void);
 /* md_hsm helpers */
 struct mdt_object *mdt_hsm_get_md_hsm(struct mdt_thread_info *mti,
 				      const struct lu_fid *fid,
@@ -1087,8 +1083,6 @@ enum {
 };
 void mdt_counter_incr(struct ptlrpc_request *req, int opcode);
 void mdt_stats_counter_init(struct lprocfs_stats *stats);
-void lprocfs_mdt_init_vars(struct lprocfs_static_vars *lvars);
-void lprocfs_mds_init_vars(struct lprocfs_static_vars *lvars);
 int mdt_procfs_init(struct mdt_device *mdt, const char *name);
 void mdt_procfs_fini(struct mdt_device *mdt);
 void mdt_rename_counter_tally(struct mdt_thread_info *info,
diff --git a/lustre/mdt/mdt_lproc.c b/lustre/mdt/mdt_lproc.c
index 4abb532..236b6c2 100644
--- a/lustre/mdt/mdt_lproc.c
+++ b/lustre/mdt/mdt_lproc.c
@@ -156,7 +156,6 @@ static ssize_t mdt_rename_stats_seq_write(struct file *file, const char *buf,
 
         return len;
 }
-
 LPROC_SEQ_FOPS(mdt_rename_stats);
 
 static int lproc_mdt_attach_rename_seqstat(struct mdt_device *mdt)
@@ -213,143 +212,73 @@ void mdt_rename_counter_tally(struct mdt_thread_info *info,
                               (unsigned int)ma->ma_attr.la_size);
 }
 
-int mdt_procfs_init(struct mdt_device *mdt, const char *name)
-{
-	struct obd_device		*obd = mdt2obd_dev(mdt);
-	struct lprocfs_static_vars	 lvars;
-	int				 rc;
-	ENTRY;
-
-	LASSERT(name != NULL);
-
-	lprocfs_mdt_init_vars(&lvars);
-	rc = lprocfs_obd_setup(obd, lvars.obd_vars);
-	if (rc) {
-		CERROR("%s: cannot create proc entries: rc = %d\n",
-		       mdt_obd_name(mdt), rc);
-		return rc;
-	}
-
-	rc = hsm_cdt_procfs_init(mdt);
-	if (rc) {
-		CERROR("%s: cannot create hsm proc entries: rc = %d\n",
-		       mdt_obd_name(mdt), rc);
-		return rc;
-	}
-
-	obd->obd_proc_exports_entry = proc_mkdir("exports",
-						 obd->obd_proc_entry);
-	if (obd->obd_proc_exports_entry)
-		lprocfs_add_simple(obd->obd_proc_exports_entry,
-				   "clear", lprocfs_nid_stats_clear_read,
-				   lprocfs_nid_stats_clear_write, obd, NULL);
-	rc = lprocfs_alloc_md_stats(obd, LPROC_MDT_LAST);
-	if (rc)
-		return rc;
-	mdt_stats_counter_init(obd->obd_md_stats);
-
-	rc = lprocfs_job_stats_init(obd, LPROC_MDT_LAST,
-				    mdt_stats_counter_init);
-
-	rc = lproc_mdt_attach_rename_seqstat(mdt);
-	if (rc)
-		CERROR("%s: MDT can not create rename stats rc = %d\n",
-		       mdt_obd_name(mdt), rc);
-
-	RETURN(rc);
-}
-
-void mdt_procfs_fini(struct mdt_device *mdt)
-{
-	struct obd_device *obd = mdt2obd_dev(mdt);
-
-	if (obd->obd_proc_exports_entry != NULL) {
-		lprocfs_remove_proc_entry("clear", obd->obd_proc_exports_entry);
-		obd->obd_proc_exports_entry = NULL;
-	}
-
-	lprocfs_free_per_client_stats(obd);
-	hsm_cdt_procfs_fini(mdt);
-	lprocfs_obd_cleanup(obd);
-	lprocfs_free_md_stats(obd);
-	lprocfs_free_obd_stats(obd);
-	lprocfs_job_stats_fini(obd);
-}
-
-static int lprocfs_rd_identity_expire(char *page, char **start, off_t off,
-                                      int count, int *eof, void *data)
+static int mdt_identity_expire_seq_show(struct seq_file *m, void *data)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct obd_device *obd = m->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-        *eof = 1;
-        return snprintf(page, count, "%u\n",
-                        mdt->mdt_identity_cache->uc_entry_expire);
+	return seq_printf(m, "%u\n", mdt->mdt_identity_cache->uc_entry_expire);
 }
 
-static int lprocfs_wr_identity_expire(struct file *file, const char *buffer,
-                                      unsigned long count, void *data)
+static ssize_t
+mdt_identity_expire_seq_write(struct file *file, const char *buffer,
+				size_t count, loff_t *off)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
-        int rc, val;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	int rc, val;
 
-        rc = lprocfs_write_helper(buffer, count, &val);
-        if (rc)
-                return rc;
+	rc = lprocfs_write_helper(buffer, count, &val);
+	if (rc)
+		return rc;
 
-        mdt->mdt_identity_cache->uc_entry_expire = val;
-        return count;
+	mdt->mdt_identity_cache->uc_entry_expire = val;
+	return count;
 }
+LPROC_SEQ_FOPS(mdt_identity_expire);
 
-static int lprocfs_rd_identity_acquire_expire(char *page, char **start,
-                                              off_t off, int count, int *eof,
-                                              void *data)
+static int mdt_identity_acquire_expire_seq_show(struct seq_file *m, void *data)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct obd_device *obd = m->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-        *eof = 1;
-        return snprintf(page, count, "%u\n",
-                        mdt->mdt_identity_cache->uc_acquire_expire);
+	return seq_printf(m,"%u\n", mdt->mdt_identity_cache->uc_acquire_expire);
 }
 
-static int lprocfs_wr_identity_acquire_expire(struct file *file,
-                                              const char *buffer,
-                                              unsigned long count,
-                                              void *data)
+static ssize_t
+mdt_identity_acquire_expire_seq_write(struct file *file, const char *buffer,
+					size_t count, loff_t *off)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
-        int rc, val;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	int rc, val;
 
-        rc = lprocfs_write_helper(buffer, count, &val);
-        if (rc)
-                return rc;
+	rc = lprocfs_write_helper(buffer, count, &val);
+	if (rc)
+		return rc;
 
-        mdt->mdt_identity_cache->uc_acquire_expire = val;
-        return count;
+	mdt->mdt_identity_cache->uc_acquire_expire = val;
+	return count;
 }
+LPROC_SEQ_FOPS(mdt_identity_acquire_expire);
 
-static int lprocfs_rd_identity_upcall(char *page, char **start, off_t off,
-                                      int count, int *eof, void *data)
+static int mdt_identity_upcall_seq_show(struct seq_file *m, void *data)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
-        struct upcall_cache *hash = mdt->mdt_identity_cache;
-        int len;
+	struct obd_device *obd = m->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct upcall_cache *hash = mdt->mdt_identity_cache;
 
-	*eof = 1;
 	read_lock(&hash->uc_upcall_rwlock);
-	len = snprintf(page, count, "%s\n", hash->uc_upcall);
+	seq_printf(m, "%s\n", hash->uc_upcall);
 	read_unlock(&hash->uc_upcall_rwlock);
-	return len;
+	return 0;
 }
 
-static int lprocfs_wr_identity_upcall(struct file *file, const char *buffer,
-				      unsigned long count, void *data)
+static ssize_t
+mdt_identity_upcall_seq_write(struct file *file, const char *buffer,
+				size_t count, loff_t *off)
 {
-	struct obd_device	*obd = data;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
 	struct mdt_device	*mdt = mdt_dev(obd->obd_lu_dev);
 	struct upcall_cache	*hash = mdt->mdt_identity_cache;
 	int			 rc;
@@ -388,11 +317,13 @@ static int lprocfs_wr_identity_upcall(struct file *file, const char *buffer,
 		OBD_FREE(kernbuf, count + 1);
 	RETURN(rc);
 }
+LPROC_SEQ_FOPS(mdt_identity_upcall);
 
-static int lprocfs_wr_identity_flush(struct file *file, const char *buffer,
-                                     unsigned long count, void *data)
+static ssize_t
+lprocfs_identity_flush_seq_write(struct file *file, const char *buffer,
+				 size_t count, void *data)
 {
-        struct obd_device *obd = data;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
         int rc, uid;
 
@@ -403,11 +334,13 @@ static int lprocfs_wr_identity_flush(struct file *file, const char *buffer,
         mdt_flush_identity(mdt->mdt_identity_cache, uid);
         return count;
 }
+LPROC_SEQ_FOPS_WO_TYPE(mdt, identity_flush);
 
-static int lprocfs_wr_identity_info(struct file *file, const char *buffer,
-				    unsigned long count, void *data)
+static ssize_t
+lprocfs_identity_info_seq_write(struct file *file, const char *buffer,
+				size_t count, void *data)
 {
-	struct obd_device *obd = data;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
 	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 	struct identity_downcall_data *param;
 	int size = sizeof(*param), rc, checked = 0;
@@ -468,23 +401,24 @@ out:
 
 	return rc ? rc : count;
 }
+LPROC_SEQ_FOPS_WO_TYPE(mdt, identity_info);
 
 /* for debug only */
-static int lprocfs_rd_capa(char *page, char **start, off_t off,
-                           int count, int *eof, void *data)
+static int mdt_capa_seq_show(struct seq_file *m, void *data)
 {
-	struct obd_device *obd = data;
+	struct obd_device *obd = m->private;
 	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-	return snprintf(page, count, "capability on: %s %s\n",
+	return seq_printf(m, "capability on: %s %s\n",
 			mdt->mdt_lut.lut_oss_capa ? "oss" : "",
 			mdt->mdt_lut.lut_mds_capa ? "mds" : "");
 }
 
-static int lprocfs_wr_capa(struct file *file, const char *buffer,
-			   unsigned long count, void *data)
+static ssize_t
+mdt_capa_seq_write(struct file *file, const char *buffer,
+			size_t count, loff_t *off)
 {
-	struct obd_device *obd = data;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
 	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 	int val, rc;
 
@@ -521,64 +455,65 @@ static int lprocfs_wr_capa(struct file *file, const char *buffer,
 		      mdt->mdt_lut.lut_oss_capa ? "enabled" : "disabled");
 	return count;
 }
+LPROC_SEQ_FOPS(mdt_capa);
 
-static int lprocfs_rd_capa_count(char *page, char **start, off_t off,
-                                 int count, int *eof, void *data)
+static int mdt_capa_count_seq_show(struct seq_file *m, void *data)
 {
-        return snprintf(page, count, "%d %d\n",
-                        capa_count[CAPA_SITE_CLIENT],
-                        capa_count[CAPA_SITE_SERVER]);
+	return seq_printf(m, "%d %d\n", capa_count[CAPA_SITE_CLIENT],
+			  capa_count[CAPA_SITE_SERVER]);
 }
+LPROC_SEQ_FOPS_RO(mdt_capa_count);
 
-static int lprocfs_rd_site_stats(char *page, char **start, off_t off,
-                                 int count, int *eof, void *data)
+static int mdt_site_stats_seq_show(struct seq_file *m, void *data)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct obd_device *obd = m->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-        return lu_site_stats_print(mdt_lu_site(mdt), page, count);
+	return lu_site_stats_seq_print(mdt_lu_site(mdt), m);
 }
+LPROC_SEQ_FOPS_RO(mdt_site_stats);
 
-static int lprocfs_rd_capa_timeout(char *page, char **start, off_t off,
-                                   int count, int *eof, void *data)
+static int mdt_capa_timeout_seq_show(struct seq_file *m, void *data)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct obd_device *obd = m->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-        return snprintf(page, count, "%lu\n", mdt->mdt_capa_timeout);
+	return seq_printf(m, "%lu\n", mdt->mdt_capa_timeout);
 }
 
-static int lprocfs_wr_capa_timeout(struct file *file, const char *buffer,
-                                   unsigned long count, void *data)
+static ssize_t
+mdt_capa_timeout_seq_write(struct file *file, const char *buffer,
+			   size_t count, loff_t *off)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
-        int val, rc;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	int val, rc;
 
-        rc = lprocfs_write_helper(buffer, count, &val);
-        if (rc)
-                return rc;
+	rc = lprocfs_write_helper(buffer, count, &val);
+	if (rc)
+		return rc;
 
-        mdt->mdt_capa_timeout = (unsigned long)val;
-        mdt->mdt_capa_conf = 1;
-        return count;
+	mdt->mdt_capa_timeout = (unsigned long)val;
+	mdt->mdt_capa_conf = 1;
+	return count;
 }
+LPROC_SEQ_FOPS(mdt_capa_timeout);
 
-static int lprocfs_rd_ck_timeout(char *page, char **start, off_t off, int count,
-                                 int *eof, void *data)
+static int mdt_ck_timeout_seq_show(struct seq_file *m, void *data)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct obd_device *obd = m->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-        return snprintf(page, count, "%lu\n", mdt->mdt_ck_timeout);
+	return seq_printf(m, "%lu\n", mdt->mdt_ck_timeout);
 }
 
-static int lprocfs_wr_ck_timeout(struct file *file, const char *buffer,
-                                 unsigned long count, void *data)
+static ssize_t
+mdt_ck_timeout_seq_write(struct file *file, const char *buffer,
+			 size_t count, loff_t *off)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
-        int val, rc;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	int val, rc;
 
         rc = lprocfs_write_helper(buffer, count, &val);
         if (rc)
@@ -588,11 +523,13 @@ static int lprocfs_wr_ck_timeout(struct file *file, const char *buffer,
         mdt->mdt_capa_conf = 1;
         return count;
 }
+LPROC_SEQ_FOPS(mdt_ck_timeout);
 
 #define BUFLEN (UUID_MAX + 4)
 
-static int lprocfs_mdt_wr_evict_client(struct file *file, const char *buffer,
-                                       unsigned long count, void *data)
+static ssize_t
+lprocfs_mds_evict_client_seq_write(struct file *file, const char *buffer,
+				   size_t count, loff_t *off)
 {
         char *kbuf;
         char *tmpbuf;
@@ -614,7 +551,7 @@ static int lprocfs_mdt_wr_evict_client(struct file *file, const char *buffer,
         tmpbuf = cfs_firststr(kbuf, min_t(unsigned long, BUFLEN - 1, count));
 
         if (strncmp(tmpbuf, "nid:", 4) != 0) {
-                count = lprocfs_wr_evict_client(file, buffer, count, data);
+		count = lprocfs_evict_client_seq_write(file, buffer, count, off);
                 goto out;
         }
 
@@ -627,21 +564,21 @@ out:
 
 #undef BUFLEN
 
-static int lprocfs_rd_sec_level(char *page, char **start, off_t off,
-                                int count, int *eof, void *data)
+static int mdt_sec_level_seq_show(struct seq_file *m, void *data)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct obd_device *obd = m->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-	return snprintf(page, count, "%d\n", mdt->mdt_lut.lut_sec_level);
+	return seq_printf(m, "%d\n", mdt->mdt_lut.lut_sec_level);
 }
 
-static int lprocfs_wr_sec_level(struct file *file, const char *buffer,
-                                unsigned long count, void *data)
+static ssize_t
+mdt_sec_level_seq_write(struct file *file, const char *buffer,
+			size_t count, loff_t *off)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
-        int val, rc;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	int val, rc;
 
         rc = lprocfs_write_helper(buffer, count, &val);
         if (rc)
@@ -659,22 +596,23 @@ static int lprocfs_wr_sec_level(struct file *file, const char *buffer,
 	mdt->mdt_lut.lut_sec_level = val;
 	return count;
 }
+LPROC_SEQ_FOPS(mdt_sec_level);
 
-static int lprocfs_rd_cos(char *page, char **start, off_t off,
-                              int count, int *eof, void *data)
+static int mdt_cos_seq_show(struct seq_file *m, void *data)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct obd_device *obd = m->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-        return snprintf(page, count, "%u\n", mdt_cos_is_enabled(mdt));
+	return seq_printf(m, "%u\n", mdt_cos_is_enabled(mdt));
 }
 
-static int lprocfs_wr_cos(struct file *file, const char *buffer,
-                                  unsigned long count, void *data)
+static ssize_t
+mdt_cos_seq_write(struct file *file, const char *buffer,
+		  size_t count, loff_t *off)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
-        int val, rc;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	int val, rc;
 
         rc = lprocfs_write_helper(buffer, count, &val);
         if (rc)
@@ -682,15 +620,15 @@ static int lprocfs_wr_cos(struct file *file, const char *buffer,
         mdt_enable_cos(mdt, val);
         return count;
 }
+LPROC_SEQ_FOPS(mdt_cos);
 
-static int lprocfs_rd_root_squash(char *page, char **start, off_t off,
-                                  int count, int *eof, void *data)
+static int mdt_root_squash_seq_show(struct seq_file *m, void *data)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct obd_device *obd = m->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-        return snprintf(page, count, "%u:%u\n", mdt->mdt_squash_uid,
-                        mdt->mdt_squash_gid);
+	return seq_printf(m, "%u:%u\n", mdt->mdt_squash_uid,
+			  mdt->mdt_squash_gid);
 }
 
 static int safe_strtoul(const char *str, char **endp, unsigned long *res)
@@ -708,10 +646,11 @@ static int safe_strtoul(const char *str, char **endp, unsigned long *res)
         return 0;
 }
 
-static int lprocfs_wr_root_squash(struct file *file, const char *buffer,
-				  unsigned long count, void *data)
+static ssize_t
+mdt_root_squash_seq_write(struct file *file, const char *buffer,
+			  size_t count, loff_t *off)
 {
-	struct obd_device *obd = data;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
 	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 	int rc;
 	char kernbuf[50], *tmp, *end, *errmsg;
@@ -765,22 +704,23 @@ failed:
 	      mdt_obd_name(mdt), buffer, errmsg, rc);
 	RETURN(rc);
 }
+LPROC_SEQ_FOPS(mdt_root_squash);
 
-static int lprocfs_rd_nosquash_nids(char *page, char **start, off_t off,
-                                    int count, int *eof, void *data)
+static int mdt_nosquash_nids_seq_show(struct seq_file *m, void *data)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct obd_device *obd = m->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-        if (mdt->mdt_nosquash_str)
-                return snprintf(page, count, "%s\n", mdt->mdt_nosquash_str);
-        return snprintf(page, count, "NONE\n");
+	if (mdt->mdt_nosquash_str)
+		return seq_printf(m, "%s\n", mdt->mdt_nosquash_str);
+	return seq_printf(m, "NONE\n");
 }
 
-static int lprocfs_wr_nosquash_nids(struct file *file, const char *buffer,
-				    unsigned long count, void *data)
+static ssize_t
+mdt_nosquash_nids_seq_write(struct file *file, const char *buffer,
+			    size_t count, loff_t *off)
 {
-	struct obd_device *obd = data;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
 	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 	int rc;
 	char *kernbuf, *errmsg;
@@ -842,25 +782,26 @@ failed:
 		OBD_FREE(kernbuf, count + 1);
 	RETURN(rc);
 }
+LPROC_SEQ_FOPS(mdt_nosquash_nids);
 
-static int lprocfs_rd_mdt_som(char *page, char **start, off_t off,
-                              int count, int *eof, void *data)
+static int mdt_som_seq_show(struct seq_file *m, void *data)
 {
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct obd_device *obd = m->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-        return snprintf(page, count, "%sabled\n",
-                        mdt->mdt_som_conf ? "en" : "dis");
+	return seq_printf(m, "%sabled\n",
+			  mdt->mdt_som_conf ? "en" : "dis");
 }
 
-static int lprocfs_wr_mdt_som(struct file *file, const char *buffer,
-                              unsigned long count, void *data)
+static ssize_t
+mdt_som_seq_write(struct file *file, const char *buffer,
+		  size_t count, loff_t *off)
 {
-        struct obd_export *exp;
-        struct obd_device *obd = data;
-        struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
-        char kernbuf[16];
-        unsigned long val = 0;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
+	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
+	struct obd_export *exp;
+	char kernbuf[16];
+	unsigned long val = 0;
 
         if (count > (sizeof(kernbuf) - 1))
                 return -EINVAL;
@@ -902,20 +843,21 @@ static int lprocfs_wr_mdt_som(struct file *file, const char *buffer,
 
         return count;
 }
+LPROC_SEQ_FOPS(mdt_som);
 
-static int lprocfs_rd_enable_remote_dir(char *page, char **start, off_t off,
-					int count, int *eof, void *data)
+static int mdt_enable_remote_dir_seq_show(struct seq_file *m, void *data)
 {
-	struct obd_device *obd = data;
+	struct obd_device *obd = m->private;
 	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-	return snprintf(page, count, "%u\n", mdt->mdt_enable_remote_dir);
+	return seq_printf(m, "%u\n", mdt->mdt_enable_remote_dir);
 }
 
-static int lprocfs_wr_enable_remote_dir(struct file *file, const char *buffer,
-					unsigned long count, void *data)
+static ssize_t
+mdt_enable_remote_dir_seq_write(struct file *file, const char *buffer,
+				size_t count, loff_t *off)
 {
-	struct obd_device *obd = data;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
 	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 	__u32 val;
 	int rc;
@@ -930,22 +872,22 @@ static int lprocfs_wr_enable_remote_dir(struct file *file, const char *buffer,
 	mdt->mdt_enable_remote_dir = val;
 	return count;
 }
+LPROC_SEQ_FOPS(mdt_enable_remote_dir);
 
-static int lprocfs_rd_enable_remote_dir_gid(char *page, char **start, off_t off,
-					    int count, int *eof, void *data)
+static int mdt_enable_remote_dir_gid_seq_show(struct seq_file *m, void *data)
 {
-	struct obd_device *obd = data;
+	struct obd_device *obd = m->private;
 	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 
-	return snprintf(page, count, "%d\n",
-			(int)mdt->mdt_enable_remote_dir_gid);
+	return seq_printf(m, "%d\n",
+			  (int)mdt->mdt_enable_remote_dir_gid);
 }
 
-static int lprocfs_wr_enable_remote_dir_gid(struct file *file,
-					    const char *buffer,
-					    unsigned long count, void *data)
+static ssize_t
+mdt_enable_remote_dir_gid_seq_write(struct file *file, const char *buffer,
+				    size_t count, loff_t *off)
 {
-	struct obd_device *obd = data;
+	struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
 	struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
 	__u32 val;
 	int rc;
@@ -957,97 +899,46 @@ static int lprocfs_wr_enable_remote_dir_gid(struct file *file,
 	mdt->mdt_enable_remote_dir_gid = val;
 	return count;
 }
-
-static struct lprocfs_vars lprocfs_mdt_obd_vars[] = {
-	{ "uuid",			lprocfs_rd_uuid, NULL,
-					NULL, NULL, 0 },
-	{ "recovery_status",		lprocfs_obd_rd_recovery_status, NULL,
-					NULL, NULL, 0 },
-	{ "num_exports",		lprocfs_rd_num_exports,	NULL,
-					NULL, NULL, 0 },
-	{ "identity_expire",		lprocfs_rd_identity_expire,
-					lprocfs_wr_identity_expire,
-					NULL, NULL, 0 },
-	{ "identity_acquire_expire",    lprocfs_rd_identity_acquire_expire,
-					lprocfs_wr_identity_acquire_expire,
-					NULL, NULL, 0 },
-	{ "identity_upcall",		lprocfs_rd_identity_upcall,
-					lprocfs_wr_identity_upcall,
-					NULL, NULL, 0 },
-	{ "identity_flush",		NULL, lprocfs_wr_identity_flush,
-					NULL, NULL, 0 },
-	{ "identity_info",		NULL, lprocfs_wr_identity_info,
-					NULL, NULL, 0 },
-	{ "capa",			lprocfs_rd_capa,
-					lprocfs_wr_capa,
-					NULL, NULL, 0 },
-	{ "capa_timeout",		lprocfs_rd_capa_timeout,
-					lprocfs_wr_capa_timeout,
-					NULL, NULL, 0 },
-	{ "capa_key_timeout",		lprocfs_rd_ck_timeout,
-					lprocfs_wr_ck_timeout,
-					NULL, NULL, 0 },
-	{ "capa_count",			lprocfs_rd_capa_count, NULL,
-					NULL, NULL, 0 },
-	{ "site_stats",			lprocfs_rd_site_stats, NULL,
-					NULL, NULL, 0 },
-	{ "evict_client",		NULL, lprocfs_mdt_wr_evict_client,
-					NULL, NULL, 0 },
-	{ "hash_stats",			lprocfs_obd_rd_hash, NULL,
-					NULL, NULL, 0 },
-	{ "sec_level",			lprocfs_rd_sec_level,
-					lprocfs_wr_sec_level,
-					NULL, NULL, 0 },
-	{ "commit_on_sharing",		lprocfs_rd_cos, lprocfs_wr_cos,
-					NULL, NULL, 0 },
-	{ "root_squash",		lprocfs_rd_root_squash,
-					lprocfs_wr_root_squash,
-					NULL, NULL, 0 },
-	{ "nosquash_nids",		lprocfs_rd_nosquash_nids,
-					lprocfs_wr_nosquash_nids,
-					NULL, NULL, 0 },
-	{ "som",			lprocfs_rd_mdt_som,
-					lprocfs_wr_mdt_som,
-					NULL, NULL, 0 },
-	{ "instance",			lprocfs_target_rd_instance, NULL,
-					NULL, NULL, 0},
-	{ "ir_factor",			lprocfs_obd_rd_ir_factor,
-					lprocfs_obd_wr_ir_factor,
-					NULL, NULL, 0 },
-	{ "job_cleanup_interval",       lprocfs_rd_job_interval,
-					lprocfs_wr_job_interval,
-					NULL, NULL, 0 },
-	{ "enable_remote_dir",		lprocfs_rd_enable_remote_dir,
-					lprocfs_wr_enable_remote_dir,
-					NULL, NULL, 0},
-	{ "enable_remote_dir_gid",	lprocfs_rd_enable_remote_dir_gid,
-					lprocfs_wr_enable_remote_dir_gid,
-					NULL, NULL, 0},
-	{ "hsm_control",		lprocfs_rd_hsm_cdt_control,
-					lprocfs_wr_hsm_cdt_control,
-					NULL, NULL, 0 },
-	{ 0 }
-};
-
-static struct lprocfs_vars lprocfs_mdt_module_vars[] = {
-	{ "num_refs",			lprocfs_rd_numrefs, NULL,
-					NULL, NULL, 0 },
-        { 0 }
-};
-
-void lprocfs_mdt_init_vars(struct lprocfs_static_vars *lvars)
-{
-	lvars->module_vars  = lprocfs_mdt_module_vars;
-	lvars->obd_vars     = lprocfs_mdt_obd_vars;
-}
-
-struct lprocfs_vars lprocfs_mds_obd_vars[] = {
-	{ "uuid",	lprocfs_rd_uuid, NULL, NULL, NULL, 0 },
-	{ 0 }
-};
-
-struct lprocfs_vars lprocfs_mds_module_vars[] = {
-	{ "num_refs",	lprocfs_rd_numrefs, NULL, NULL, NULL, 0 },
+LPROC_SEQ_FOPS(mdt_enable_remote_dir_gid);
+
+LPROC_SEQ_FOPS_RO_TYPE(mdt, uuid);
+LPROC_SEQ_FOPS_RO_TYPE(mdt, recovery_status);
+LPROC_SEQ_FOPS_RO_TYPE(mdt, num_exports);
+LPROC_SEQ_FOPS_RO_TYPE(mdt, target_instance);
+LPROC_SEQ_FOPS_RO_TYPE(mdt, hash);
+LPROC_SEQ_FOPS_WO_TYPE(mdt, mds_evict_client);
+LPROC_SEQ_FOPS_RW_TYPE(mdt, job_interval);
+LPROC_SEQ_FOPS_RW_TYPE(mdt, ir_factor);
+LPROC_SEQ_FOPS_RW_TYPE(mdt, nid_stats_clear);
+LPROC_SEQ_FOPS(mdt_hsm_cdt_control);
+
+static struct lprocfs_seq_vars lprocfs_mdt_obd_vars[] = {
+	{ "uuid",			&mdt_uuid_fops			},
+	{ "recovery_status",		&mdt_recovery_status_fops	},
+	{ "num_exports",		&mdt_num_exports_fops		},
+	{ "identity_expire",		&mdt_identity_expire_fops	},
+	{ "identity_acquire_expire",	&mdt_identity_acquire_expire_fops },
+	{ "identity_upcall",		&mdt_identity_upcall_fops	},
+	{ "identity_flush",		&mdt_identity_flush_fops	},
+	{ "identity_info",		&mdt_identity_info_fops		},
+	{ "capa",			&mdt_capa_fops			},
+	{ "capa_timeout",		&mdt_capa_timeout_fops		},
+	{ "capa_key_timeout",		&mdt_ck_timeout_fops		},
+	{ "capa_count",			&mdt_capa_count_fops		},
+	{ "site_stats",			&mdt_site_stats_fops		},
+	{ "evict_client",		&mdt_mds_evict_client_fops	},
+	{ "hash_stats",			&mdt_hash_fops			},
+	{ "sec_level",			&mdt_sec_level_fops		},
+	{ "commit_on_sharing",		&mdt_cos_fops			},
+	{ "root_squash",		&mdt_root_squash_fops		},
+	{ "nosquash_nids",		&mdt_nosquash_nids_fops		},
+	{ "som",			&mdt_som_fops			},
+	{ "instance",			&mdt_target_instance_fops	},
+	{ "ir_factor",			&mdt_ir_factor_fops		},
+	{ "job_cleanup_interval",	&mdt_job_interval_fops		},
+	{ "enable_remote_dir",		&mdt_enable_remote_dir_fops	},
+	{ "enable_remote_dir_gid",	&mdt_enable_remote_dir_gid_fops	},
+	{ "hsm_control",		&mdt_hsm_cdt_control_fops	},
 	{ 0 }
 };
 
@@ -1087,3 +978,67 @@ void mdt_stats_counter_init(struct lprocfs_stats *stats)
         lprocfs_counter_init(stats, LPROC_MDT_CROSSDIR_RENAME, 0,
                              "crossdir_rename", "reqs");
 }
+
+int mdt_procfs_init(struct mdt_device *mdt, const char *name)
+{
+	struct obd_device		*obd = mdt2obd_dev(mdt);
+	int				 rc;
+	ENTRY;
+
+	LASSERT(name != NULL);
+
+	obd->obd_vars = lprocfs_mdt_obd_vars;
+	rc = lprocfs_seq_obd_setup(obd);
+	if (rc) {
+		CERROR("%s: cannot create proc entries: rc = %d\n",
+			mdt_obd_name(mdt), rc);
+		return rc;
+	}
+
+	rc = hsm_cdt_procfs_init(mdt);
+	if (rc) {
+		CERROR("%s: cannot create hsm proc entries: rc = %d\n",
+			mdt_obd_name(mdt), rc);
+		return rc;
+	}
+
+	obd->obd_proc_exports_entry = proc_mkdir("exports",
+						 obd->obd_proc_entry);
+	if (obd->obd_proc_exports_entry)
+		lprocfs_add_simple(obd->obd_proc_exports_entry, "clear",
+#ifndef HAVE_ONLY_PROCFS_SEQ
+				   NULL, NULL,
+#endif
+				   obd, &mdt_nid_stats_clear_fops);
+	rc = lprocfs_alloc_md_stats(obd, LPROC_MDT_LAST);
+	if (rc)
+		return rc;
+	mdt_stats_counter_init(obd->obd_md_stats);
+
+	rc = lprocfs_job_stats_init(obd, LPROC_MDT_LAST,
+				    mdt_stats_counter_init);
+
+	rc = lproc_mdt_attach_rename_seqstat(mdt);
+	if (rc)
+		CERROR("%s: MDT can not create rename stats rc = %d\n",
+		       mdt_obd_name(mdt), rc);
+
+	RETURN(rc);
+}
+
+void mdt_procfs_fini(struct mdt_device *mdt)
+{
+	struct obd_device *obd = mdt2obd_dev(mdt);
+
+	if (obd->obd_proc_exports_entry != NULL) {
+		lprocfs_remove_proc_entry("clear", obd->obd_proc_exports_entry);
+		obd->obd_proc_exports_entry = NULL;
+	}
+
+	lprocfs_free_per_client_stats(obd);
+	hsm_cdt_procfs_fini(mdt);
+	lprocfs_obd_cleanup(obd);
+	lprocfs_free_md_stats(obd);
+	lprocfs_free_obd_stats(obd);
+	lprocfs_job_stats_fini(obd);
+}
diff --git a/lustre/mdt/mdt_mds.c b/lustre/mdt/mdt_mds.c
index 367f659..4fa66c3 100644
--- a/lustre/mdt/mdt_mds.c
+++ b/lustre/mdt/mdt_mds.c
@@ -464,6 +464,13 @@ static struct lu_device *mds_device_free(const struct lu_env *env,
 	RETURN(NULL);
 }
 
+LPROC_SEQ_FOPS_RO_TYPE(mds, uuid);
+
+static struct lprocfs_seq_vars lprocfs_mds_obd_vars[] = {
+	{ "uuid",	&mds_uuid_fops  },
+	{ 0 }
+};
+
 static struct lu_device *mds_device_alloc(const struct lu_env *env,
 					  struct lu_device_type *t,
 					  struct lustre_cfg *cfg)
@@ -487,7 +494,8 @@ static struct lu_device *mds_device_alloc(const struct lu_env *env,
 	/* set this lu_device to obd, because error handling need it */
 	obd->obd_lu_dev = l;
 
-	rc = lprocfs_obd_setup(obd, lprocfs_mds_obd_vars);
+	obd->obd_vars = lprocfs_mds_obd_vars;
+	rc = lprocfs_seq_obd_setup(obd);
 	if (rc != 0) {
 		mds_device_free(env, l);
 		l = ERR_PTR(rc);
@@ -541,7 +549,7 @@ int mds_mod_init(void)
 
 	return class_register_type(&mds_obd_device_ops, NULL, NULL,
 #ifndef HAVE_ONLY_PROCFS_SEQ
-					lprocfs_mds_module_vars,
+					NULL,
 #endif
 					LUSTRE_MDS_NAME, &mds_device_type);
 }
-- 
1.8.5.1