mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-21 17:00:01 +00:00
UBI: rename ubi_dbg_dump_seb
I am going to remove the "UBI debugging" compilation option and make the debugging stuff to be always compiled it. This patch is a preparation which renames 'ubi_dbg_dump_seb()' to 'ubi_dump_seb()'. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
This commit is contained in:
parent
614c74a75c
commit
b989bd4c57
@ -190,11 +190,11 @@ void ubi_dump_sv(const struct ubi_scan_volume *sv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ubi_dbg_dump_seb - dump a &struct ubi_scan_leb object.
|
* ubi_dump_seb - dump a &struct ubi_scan_leb object.
|
||||||
* @seb: the object to dump
|
* @seb: the object to dump
|
||||||
* @type: object type: 0 - not corrupted, 1 - corrupted
|
* @type: object type: 0 - not corrupted, 1 - corrupted
|
||||||
*/
|
*/
|
||||||
void ubi_dbg_dump_seb(const struct ubi_scan_leb *seb, int type)
|
void ubi_dump_seb(const struct ubi_scan_leb *seb, int type)
|
||||||
{
|
{
|
||||||
printk(KERN_DEBUG "eraseblock scanning information dump:\n");
|
printk(KERN_DEBUG "eraseblock scanning information dump:\n");
|
||||||
printk(KERN_DEBUG "\tec %d\n", seb->ec);
|
printk(KERN_DEBUG "\tec %d\n", seb->ec);
|
||||||
|
@ -63,7 +63,7 @@ void ubi_dump_vid_hdr(const struct ubi_vid_hdr *vid_hdr);
|
|||||||
void ubi_dump_vol_info(const struct ubi_volume *vol);
|
void ubi_dump_vol_info(const struct ubi_volume *vol);
|
||||||
void ubi_dump_vtbl_record(const struct ubi_vtbl_record *r, int idx);
|
void ubi_dump_vtbl_record(const struct ubi_vtbl_record *r, int idx);
|
||||||
void ubi_dump_sv(const struct ubi_scan_volume *sv);
|
void ubi_dump_sv(const struct ubi_scan_volume *sv);
|
||||||
void ubi_dbg_dump_seb(const struct ubi_scan_leb *seb, int type);
|
void ubi_dump_seb(const struct ubi_scan_leb *seb, int type);
|
||||||
void ubi_dbg_dump_mkvol_req(const struct ubi_mkvol_req *req);
|
void ubi_dbg_dump_mkvol_req(const struct ubi_mkvol_req *req);
|
||||||
int ubi_dbg_check_all_ff(struct ubi_device *ubi, int pnum, int offset, int len);
|
int ubi_dbg_check_all_ff(struct ubi_device *ubi, int pnum, int offset, int len);
|
||||||
int ubi_dbg_check_write(struct ubi_device *ubi, const void *buf, int pnum,
|
int ubi_dbg_check_write(struct ubi_device *ubi, const void *buf, int pnum,
|
||||||
@ -198,7 +198,7 @@ ubi_dump_vol_info(const struct ubi_volume *vol) { return; }
|
|||||||
static inline void
|
static inline void
|
||||||
ubi_dump_vtbl_record(const struct ubi_vtbl_record *r, int idx) { return; }
|
ubi_dump_vtbl_record(const struct ubi_vtbl_record *r, int idx) { return; }
|
||||||
static inline void ubi_dump_sv(const struct ubi_scan_volume *sv) { return; }
|
static inline void ubi_dump_sv(const struct ubi_scan_volume *sv) { return; }
|
||||||
static inline void ubi_dbg_dump_seb(const struct ubi_scan_leb *seb,
|
static inline void ubi_dump_seb(const struct ubi_scan_leb *seb,
|
||||||
int type) { return; }
|
int type) { return; }
|
||||||
static inline void
|
static inline void
|
||||||
ubi_dbg_dump_mkvol_req(const struct ubi_mkvol_req *req) { return; }
|
ubi_dbg_dump_mkvol_req(const struct ubi_mkvol_req *req) { return; }
|
||||||
|
@ -510,7 +510,7 @@ int ubi_scan_add_used(struct ubi_device *ubi, struct ubi_scan_info *si,
|
|||||||
if (seb->sqnum == sqnum && sqnum != 0) {
|
if (seb->sqnum == sqnum && sqnum != 0) {
|
||||||
ubi_err("two LEBs with same sequence number %llu",
|
ubi_err("two LEBs with same sequence number %llu",
|
||||||
sqnum);
|
sqnum);
|
||||||
ubi_dbg_dump_seb(seb, 0);
|
ubi_dump_seb(seb, 0);
|
||||||
ubi_dump_vid_hdr(vid_hdr);
|
ubi_dump_vid_hdr(vid_hdr);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
@ -1583,7 +1583,7 @@ static int paranoid_check_si(struct ubi_device *ubi, struct ubi_scan_info *si)
|
|||||||
|
|
||||||
bad_seb:
|
bad_seb:
|
||||||
ubi_err("bad scanning information about LEB %d", seb->lnum);
|
ubi_err("bad scanning information about LEB %d", seb->lnum);
|
||||||
ubi_dbg_dump_seb(seb, 0);
|
ubi_dump_seb(seb, 0);
|
||||||
ubi_dump_sv(sv);
|
ubi_dump_sv(sv);
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user