1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2016 CNEX Labs
4 * Initial release: Javier Gonzalez <javier@cnexlabs.com>
5 * Matias Bjorling <matias@cnexlabs.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * Implementation of a physical block-device target for Open-channel SSDs.
18 * pblk-sysfs.c - pblk's sysfs
24 static ssize_t
pblk_sysfs_luns_show(struct pblk
*pblk
, char *page
)
26 struct nvm_tgt_dev
*dev
= pblk
->dev
;
27 struct nvm_geo
*geo
= &dev
->geo
;
28 struct pblk_lun
*rlun
;
32 for (i
= 0; i
< geo
->all_luns
; i
++) {
35 rlun
= &pblk
->luns
[i
];
36 if (!down_trylock(&rlun
->wr_sem
)) {
40 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
,
41 "pblk: pos:%d, ch:%d, lun:%d - %d\n",
51 static ssize_t
pblk_sysfs_rate_limiter(struct pblk
*pblk
, char *page
)
53 int free_blocks
, free_user_blocks
, total_blocks
;
54 int rb_user_max
, rb_user_cnt
;
55 int rb_gc_max
, rb_gc_cnt
, rb_budget
, rb_state
;
57 free_blocks
= pblk_rl_nr_free_blks(&pblk
->rl
);
58 free_user_blocks
= pblk_rl_nr_user_free_blks(&pblk
->rl
);
59 rb_user_max
= pblk
->rl
.rb_user_max
;
60 rb_user_cnt
= atomic_read(&pblk
->rl
.rb_user_cnt
);
61 rb_gc_max
= pblk
->rl
.rb_gc_max
;
62 rb_gc_cnt
= atomic_read(&pblk
->rl
.rb_gc_cnt
);
63 rb_budget
= pblk
->rl
.rb_budget
;
64 rb_state
= pblk
->rl
.rb_state
;
66 total_blocks
= pblk
->rl
.total_blocks
;
68 return snprintf(page
, PAGE_SIZE
,
69 "u:%u/%u,gc:%u/%u(%u)(stop:<%u,full:>%u,free:%d/%d/%d)-%d\n",
80 READ_ONCE(pblk
->rl
.rb_user_active
));
83 static ssize_t
pblk_sysfs_gc_state_show(struct pblk
*pblk
, char *page
)
85 int gc_enabled
, gc_active
;
87 pblk_gc_sysfs_state_show(pblk
, &gc_enabled
, &gc_active
);
88 return snprintf(page
, PAGE_SIZE
, "gc_enabled=%d, gc_active=%d\n",
89 gc_enabled
, gc_active
);
92 static ssize_t
pblk_sysfs_stats(struct pblk
*pblk
, char *page
)
96 sz
= snprintf(page
, PAGE_SIZE
,
97 "read_failed=%lu, read_high_ecc=%lu, read_empty=%lu, read_failed_gc=%lu, write_failed=%lu, erase_failed=%lu\n",
98 atomic_long_read(&pblk
->read_failed
),
99 atomic_long_read(&pblk
->read_high_ecc
),
100 atomic_long_read(&pblk
->read_empty
),
101 atomic_long_read(&pblk
->read_failed_gc
),
102 atomic_long_read(&pblk
->write_failed
),
103 atomic_long_read(&pblk
->erase_failed
));
108 static ssize_t
pblk_sysfs_write_buffer(struct pblk
*pblk
, char *page
)
110 return pblk_rb_sysfs(&pblk
->rwb
, page
);
113 static ssize_t
pblk_sysfs_ppaf(struct pblk
*pblk
, char *page
)
115 struct nvm_tgt_dev
*dev
= pblk
->dev
;
116 struct nvm_geo
*geo
= &dev
->geo
;
119 if (geo
->version
== NVM_OCSSD_SPEC_12
) {
120 struct nvm_addrf_12
*ppaf
= (struct nvm_addrf_12
*)&pblk
->addrf
;
121 struct nvm_addrf_12
*gppaf
= (struct nvm_addrf_12
*)&geo
->addrf
;
123 sz
= snprintf(page
, PAGE_SIZE
,
124 "g:(b:%d)blk:%d/%d,pg:%d/%d,lun:%d/%d,ch:%d/%d,pl:%d/%d,sec:%d/%d\n",
126 ppaf
->blk_offset
, ppaf
->blk_len
,
127 ppaf
->pg_offset
, ppaf
->pg_len
,
128 ppaf
->lun_offset
, ppaf
->lun_len
,
129 ppaf
->ch_offset
, ppaf
->ch_len
,
130 ppaf
->pln_offset
, ppaf
->pln_len
,
131 ppaf
->sec_offset
, ppaf
->sec_len
);
133 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
,
134 "d:blk:%d/%d,pg:%d/%d,lun:%d/%d,ch:%d/%d,pl:%d/%d,sec:%d/%d\n",
135 gppaf
->blk_offset
, gppaf
->blk_len
,
136 gppaf
->pg_offset
, gppaf
->pg_len
,
137 gppaf
->lun_offset
, gppaf
->lun_len
,
138 gppaf
->ch_offset
, gppaf
->ch_len
,
139 gppaf
->pln_offset
, gppaf
->pln_len
,
140 gppaf
->sec_offset
, gppaf
->sec_len
);
142 struct nvm_addrf
*ppaf
= &pblk
->addrf
;
143 struct nvm_addrf
*gppaf
= &geo
->addrf
;
145 sz
= snprintf(page
, PAGE_SIZE
,
146 "pblk:(s:%d)ch:%d/%d,lun:%d/%d,chk:%d/%d/sec:%d/%d\n",
148 ppaf
->ch_offset
, ppaf
->ch_len
,
149 ppaf
->lun_offset
, ppaf
->lun_len
,
150 ppaf
->chk_offset
, ppaf
->chk_len
,
151 ppaf
->sec_offset
, ppaf
->sec_len
);
153 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
,
154 "device:ch:%d/%d,lun:%d/%d,chk:%d/%d,sec:%d/%d\n",
155 gppaf
->ch_offset
, gppaf
->ch_len
,
156 gppaf
->lun_offset
, gppaf
->lun_len
,
157 gppaf
->chk_offset
, gppaf
->chk_len
,
158 gppaf
->sec_offset
, gppaf
->sec_len
);
164 static ssize_t
pblk_sysfs_lines(struct pblk
*pblk
, char *page
)
166 struct nvm_tgt_dev
*dev
= pblk
->dev
;
167 struct nvm_geo
*geo
= &dev
->geo
;
168 struct pblk_line_meta
*lm
= &pblk
->lm
;
169 struct pblk_line_mgmt
*l_mg
= &pblk
->l_mg
;
170 struct pblk_line
*line
;
173 int cur_data
, cur_log
;
174 int free_line_cnt
= 0, closed_line_cnt
= 0, emeta_line_cnt
= 0;
175 int d_line_cnt
= 0, l_line_cnt
= 0;
176 int gc_full
= 0, gc_high
= 0, gc_mid
= 0, gc_low
= 0, gc_empty
= 0;
179 int bad
= 0, cor
= 0;
180 int msecs
= 0, cur_sec
= 0, vsc
= 0, sec_in_line
= 0;
181 int map_weight
= 0, meta_weight
= 0;
183 spin_lock(&l_mg
->free_lock
);
184 cur_data
= (l_mg
->data_line
) ? l_mg
->data_line
->id
: -1;
185 cur_log
= (l_mg
->log_line
) ? l_mg
->log_line
->id
: -1;
186 nr_free_lines
= l_mg
->nr_free_lines
;
188 list_for_each_entry(line
, &l_mg
->free_list
, list
)
190 spin_unlock(&l_mg
->free_lock
);
192 spin_lock(&l_mg
->close_lock
);
193 list_for_each_entry(line
, &l_mg
->emeta_list
, list
)
195 spin_unlock(&l_mg
->close_lock
);
197 spin_lock(&l_mg
->gc_lock
);
198 list_for_each_entry(line
, &l_mg
->gc_full_list
, list
) {
199 if (line
->type
== PBLK_LINETYPE_DATA
)
201 else if (line
->type
== PBLK_LINETYPE_LOG
)
207 list_for_each_entry(line
, &l_mg
->gc_high_list
, list
) {
208 if (line
->type
== PBLK_LINETYPE_DATA
)
210 else if (line
->type
== PBLK_LINETYPE_LOG
)
216 list_for_each_entry(line
, &l_mg
->gc_mid_list
, list
) {
217 if (line
->type
== PBLK_LINETYPE_DATA
)
219 else if (line
->type
== PBLK_LINETYPE_LOG
)
225 list_for_each_entry(line
, &l_mg
->gc_low_list
, list
) {
226 if (line
->type
== PBLK_LINETYPE_DATA
)
228 else if (line
->type
== PBLK_LINETYPE_LOG
)
234 list_for_each_entry(line
, &l_mg
->gc_empty_list
, list
) {
235 if (line
->type
== PBLK_LINETYPE_DATA
)
237 else if (line
->type
== PBLK_LINETYPE_LOG
)
243 list_for_each_entry(line
, &l_mg
->gc_werr_list
, list
) {
244 if (line
->type
== PBLK_LINETYPE_DATA
)
246 else if (line
->type
== PBLK_LINETYPE_LOG
)
252 list_for_each_entry(line
, &l_mg
->bad_list
, list
)
254 list_for_each_entry(line
, &l_mg
->corrupt_list
, list
)
256 spin_unlock(&l_mg
->gc_lock
);
258 spin_lock(&l_mg
->free_lock
);
259 if (l_mg
->data_line
) {
260 cur_sec
= l_mg
->data_line
->cur_sec
;
261 msecs
= l_mg
->data_line
->left_msecs
;
262 vsc
= le32_to_cpu(*l_mg
->data_line
->vsc
);
263 sec_in_line
= l_mg
->data_line
->sec_in_line
;
264 meta_weight
= bitmap_weight(&l_mg
->meta_bitmap
,
267 spin_lock(&l_mg
->data_line
->lock
);
268 if (l_mg
->data_line
->map_bitmap
)
269 map_weight
= bitmap_weight(l_mg
->data_line
->map_bitmap
,
273 spin_unlock(&l_mg
->data_line
->lock
);
275 spin_unlock(&l_mg
->free_lock
);
277 if (nr_free_lines
!= free_line_cnt
)
278 pblk_err(pblk
, "corrupted free line list:%d/%d\n",
279 nr_free_lines
, free_line_cnt
);
281 sz
= snprintf(page
, PAGE_SIZE
- sz
,
282 "line: nluns:%d, nblks:%d, nsecs:%d\n",
283 geo
->all_luns
, lm
->blk_per_line
, lm
->sec_per_line
);
285 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
,
286 "lines:d:%d,l:%d-f:%d,m:%d/%d,c:%d,b:%d,co:%d(d:%d,l:%d)t:%d\n",
289 emeta_line_cnt
, meta_weight
,
292 d_line_cnt
, l_line_cnt
,
295 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
,
296 "GC: full:%d, high:%d, mid:%d, low:%d, empty:%d, werr: %d, queue:%d\n",
297 gc_full
, gc_high
, gc_mid
, gc_low
, gc_empty
, gc_werr
,
298 atomic_read(&pblk
->gc
.read_inflight_gc
));
300 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
,
301 "data (%d) cur:%d, left:%d, vsc:%d, s:%d, map:%d/%d (%d)\n",
302 cur_data
, cur_sec
, msecs
, vsc
, sec_in_line
,
303 map_weight
, lm
->sec_per_line
,
304 atomic_read(&pblk
->inflight_io
));
309 static ssize_t
pblk_sysfs_lines_info(struct pblk
*pblk
, char *page
)
311 struct nvm_tgt_dev
*dev
= pblk
->dev
;
312 struct nvm_geo
*geo
= &dev
->geo
;
313 struct pblk_line_meta
*lm
= &pblk
->lm
;
316 sz
= snprintf(page
, PAGE_SIZE
- sz
,
317 "smeta - len:%d, secs:%d\n",
318 lm
->smeta_len
, lm
->smeta_sec
);
319 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
,
320 "emeta - len:%d, sec:%d, bb_start:%d\n",
321 lm
->emeta_len
[0], lm
->emeta_sec
[0],
323 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
,
324 "bitmap lengths: sec:%d, blk:%d, lun:%d\n",
328 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
,
329 "blk_line:%d, sec_line:%d, sec_blk:%d\n",
337 static ssize_t
pblk_sysfs_get_sec_per_write(struct pblk
*pblk
, char *page
)
339 return snprintf(page
, PAGE_SIZE
, "%d\n", pblk
->sec_per_write
);
342 static ssize_t
pblk_get_write_amp(u64 user
, u64 gc
, u64 pad
,
347 sz
= snprintf(page
, PAGE_SIZE
,
348 "user:%lld gc:%lld pad:%lld WA:",
352 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
, "NaN\n");
357 wa_int
= (user
+ gc
+ pad
) * 100000;
358 wa_int
= div64_u64(wa_int
, user
);
359 wa_int
= div_u64_rem(wa_int
, 100000, &wa_frac
);
361 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
, "%llu.%05u\n",
368 static ssize_t
pblk_sysfs_get_write_amp_mileage(struct pblk
*pblk
, char *page
)
370 return pblk_get_write_amp(atomic64_read(&pblk
->user_wa
),
371 atomic64_read(&pblk
->gc_wa
), atomic64_read(&pblk
->pad_wa
),
375 static ssize_t
pblk_sysfs_get_write_amp_trip(struct pblk
*pblk
, char *page
)
377 return pblk_get_write_amp(
378 atomic64_read(&pblk
->user_wa
) - pblk
->user_rst_wa
,
379 atomic64_read(&pblk
->gc_wa
) - pblk
->gc_rst_wa
,
380 atomic64_read(&pblk
->pad_wa
) - pblk
->pad_rst_wa
, page
);
383 static long long bucket_percentage(unsigned long long bucket
,
384 unsigned long long total
)
386 int p
= bucket
* 100;
388 p
= div_u64(p
, total
);
393 static ssize_t
pblk_sysfs_get_padding_dist(struct pblk
*pblk
, char *page
)
396 unsigned long long total
;
397 unsigned long long total_buckets
= 0;
398 int buckets
= pblk
->min_write_pgs
- 1;
401 total
= atomic64_read(&pblk
->nr_flush
) - pblk
->nr_flush_rst
;
403 for (i
= 0; i
< (buckets
+ 1); i
++)
404 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
,
406 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
, "\n");
411 for (i
= 0; i
< buckets
; i
++)
412 total_buckets
+= atomic64_read(&pblk
->pad_dist
[i
]);
414 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
, "0:%lld%% ",
415 bucket_percentage(total
- total_buckets
, total
));
417 for (i
= 0; i
< buckets
; i
++) {
418 unsigned long long p
;
420 p
= bucket_percentage(atomic64_read(&pblk
->pad_dist
[i
]),
422 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
, "%d:%lld%% ",
425 sz
+= snprintf(page
+ sz
, PAGE_SIZE
- sz
, "\n");
430 #ifdef CONFIG_NVM_PBLK_DEBUG
431 static ssize_t
pblk_sysfs_stats_debug(struct pblk
*pblk
, char *page
)
433 return snprintf(page
, PAGE_SIZE
,
434 "%lu\t%lu\t%ld\t%llu\t%ld\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\t%lu\n",
435 atomic_long_read(&pblk
->inflight_writes
),
436 atomic_long_read(&pblk
->inflight_reads
),
437 atomic_long_read(&pblk
->req_writes
),
438 (u64
)atomic64_read(&pblk
->nr_flush
),
439 atomic_long_read(&pblk
->padded_writes
),
440 atomic_long_read(&pblk
->padded_wb
),
441 atomic_long_read(&pblk
->sub_writes
),
442 atomic_long_read(&pblk
->sync_writes
),
443 atomic_long_read(&pblk
->recov_writes
),
444 atomic_long_read(&pblk
->recov_gc_writes
),
445 atomic_long_read(&pblk
->recov_gc_reads
),
446 atomic_long_read(&pblk
->cache_reads
),
447 atomic_long_read(&pblk
->sync_reads
));
451 static ssize_t
pblk_sysfs_gc_force(struct pblk
*pblk
, const char *page
,
457 c_len
= strcspn(page
, "\n");
461 if (kstrtouint(page
, 0, &force
))
464 pblk_gc_sysfs_force(pblk
, force
);
469 static ssize_t
pblk_sysfs_set_sec_per_write(struct pblk
*pblk
,
470 const char *page
, size_t len
)
475 c_len
= strcspn(page
, "\n");
479 if (kstrtouint(page
, 0, &sec_per_write
))
482 if (!pblk_is_oob_meta_supported(pblk
)) {
483 /* For packed metadata case it is
484 * not allowed to change sec_per_write.
489 if (sec_per_write
< pblk
->min_write_pgs
490 || sec_per_write
> pblk
->max_write_pgs
491 || sec_per_write
% pblk
->min_write_pgs
!= 0)
494 pblk_set_sec_per_write(pblk
, sec_per_write
);
499 static ssize_t
pblk_sysfs_set_write_amp_trip(struct pblk
*pblk
,
500 const char *page
, size_t len
)
505 c_len
= strcspn(page
, "\n");
509 if (kstrtouint(page
, 0, &reset_value
))
512 if (reset_value
!= 0)
515 pblk
->user_rst_wa
= atomic64_read(&pblk
->user_wa
);
516 pblk
->pad_rst_wa
= atomic64_read(&pblk
->pad_wa
);
517 pblk
->gc_rst_wa
= atomic64_read(&pblk
->gc_wa
);
523 static ssize_t
pblk_sysfs_set_padding_dist(struct pblk
*pblk
,
524 const char *page
, size_t len
)
528 int buckets
= pblk
->min_write_pgs
- 1;
531 c_len
= strcspn(page
, "\n");
535 if (kstrtouint(page
, 0, &reset_value
))
538 if (reset_value
!= 0)
541 for (i
= 0; i
< buckets
; i
++)
542 atomic64_set(&pblk
->pad_dist
[i
], 0);
544 pblk
->nr_flush_rst
= atomic64_read(&pblk
->nr_flush
);
549 static struct attribute sys_write_luns
= {
550 .name
= "write_luns",
554 static struct attribute sys_rate_limiter_attr
= {
555 .name
= "rate_limiter",
559 static struct attribute sys_gc_state
= {
564 static struct attribute sys_errors_attr
= {
569 static struct attribute sys_rb_attr
= {
570 .name
= "write_buffer",
574 static struct attribute sys_stats_ppaf_attr
= {
575 .name
= "ppa_format",
579 static struct attribute sys_lines_attr
= {
584 static struct attribute sys_lines_info_attr
= {
585 .name
= "lines_info",
589 static struct attribute sys_gc_force
= {
594 static struct attribute sys_max_sec_per_write
= {
595 .name
= "max_sec_per_write",
599 static struct attribute sys_write_amp_mileage
= {
600 .name
= "write_amp_mileage",
604 static struct attribute sys_write_amp_trip
= {
605 .name
= "write_amp_trip",
609 static struct attribute sys_padding_dist
= {
610 .name
= "padding_dist",
614 #ifdef CONFIG_NVM_PBLK_DEBUG
615 static struct attribute sys_stats_debug_attr
= {
621 static struct attribute
*pblk_attrs
[] = {
623 &sys_rate_limiter_attr
,
627 &sys_max_sec_per_write
,
629 &sys_stats_ppaf_attr
,
631 &sys_lines_info_attr
,
632 &sys_write_amp_mileage
,
635 #ifdef CONFIG_NVM_PBLK_DEBUG
636 &sys_stats_debug_attr
,
641 static ssize_t
pblk_sysfs_show(struct kobject
*kobj
, struct attribute
*attr
,
644 struct pblk
*pblk
= container_of(kobj
, struct pblk
, kobj
);
646 if (strcmp(attr
->name
, "rate_limiter") == 0)
647 return pblk_sysfs_rate_limiter(pblk
, buf
);
648 else if (strcmp(attr
->name
, "write_luns") == 0)
649 return pblk_sysfs_luns_show(pblk
, buf
);
650 else if (strcmp(attr
->name
, "gc_state") == 0)
651 return pblk_sysfs_gc_state_show(pblk
, buf
);
652 else if (strcmp(attr
->name
, "errors") == 0)
653 return pblk_sysfs_stats(pblk
, buf
);
654 else if (strcmp(attr
->name
, "write_buffer") == 0)
655 return pblk_sysfs_write_buffer(pblk
, buf
);
656 else if (strcmp(attr
->name
, "ppa_format") == 0)
657 return pblk_sysfs_ppaf(pblk
, buf
);
658 else if (strcmp(attr
->name
, "lines") == 0)
659 return pblk_sysfs_lines(pblk
, buf
);
660 else if (strcmp(attr
->name
, "lines_info") == 0)
661 return pblk_sysfs_lines_info(pblk
, buf
);
662 else if (strcmp(attr
->name
, "max_sec_per_write") == 0)
663 return pblk_sysfs_get_sec_per_write(pblk
, buf
);
664 else if (strcmp(attr
->name
, "write_amp_mileage") == 0)
665 return pblk_sysfs_get_write_amp_mileage(pblk
, buf
);
666 else if (strcmp(attr
->name
, "write_amp_trip") == 0)
667 return pblk_sysfs_get_write_amp_trip(pblk
, buf
);
668 else if (strcmp(attr
->name
, "padding_dist") == 0)
669 return pblk_sysfs_get_padding_dist(pblk
, buf
);
670 #ifdef CONFIG_NVM_PBLK_DEBUG
671 else if (strcmp(attr
->name
, "stats") == 0)
672 return pblk_sysfs_stats_debug(pblk
, buf
);
677 static ssize_t
pblk_sysfs_store(struct kobject
*kobj
, struct attribute
*attr
,
678 const char *buf
, size_t len
)
680 struct pblk
*pblk
= container_of(kobj
, struct pblk
, kobj
);
682 if (strcmp(attr
->name
, "gc_force") == 0)
683 return pblk_sysfs_gc_force(pblk
, buf
, len
);
684 else if (strcmp(attr
->name
, "max_sec_per_write") == 0)
685 return pblk_sysfs_set_sec_per_write(pblk
, buf
, len
);
686 else if (strcmp(attr
->name
, "write_amp_trip") == 0)
687 return pblk_sysfs_set_write_amp_trip(pblk
, buf
, len
);
688 else if (strcmp(attr
->name
, "padding_dist") == 0)
689 return pblk_sysfs_set_padding_dist(pblk
, buf
, len
);
693 static const struct sysfs_ops pblk_sysfs_ops
= {
694 .show
= pblk_sysfs_show
,
695 .store
= pblk_sysfs_store
,
698 static struct kobj_type pblk_ktype
= {
699 .sysfs_ops
= &pblk_sysfs_ops
,
700 .default_attrs
= pblk_attrs
,
703 int pblk_sysfs_init(struct gendisk
*tdisk
)
705 struct pblk
*pblk
= tdisk
->private_data
;
706 struct device
*parent_dev
= disk_to_dev(pblk
->disk
);
709 ret
= kobject_init_and_add(&pblk
->kobj
, &pblk_ktype
,
710 kobject_get(&parent_dev
->kobj
),
713 pblk_err(pblk
, "could not register\n");
717 kobject_uevent(&pblk
->kobj
, KOBJ_ADD
);
721 void pblk_sysfs_exit(struct gendisk
*tdisk
)
723 struct pblk
*pblk
= tdisk
->private_data
;
725 kobject_uevent(&pblk
->kobj
, KOBJ_REMOVE
);
726 kobject_del(&pblk
->kobj
);
727 kobject_put(&pblk
->kobj
);