blob: 3a89c8b4efc294ad53b57127d03ee943f2c0fcbf [file] [log] [blame]
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001/*
2 * This file is part of UBIFS.
3 *
4 * Copyright (C) 2006-2008 Nokia Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 * Authors: Artem Bityutskiy (Битюцкий Артём)
20 * Adrian Hunter
21 */
22
23#ifndef __UBIFS_DEBUG_H__
24#define __UBIFS_DEBUG_H__
25
Maksim Rayskiy1dcffad2011-04-12 15:14:56 -070026/* Checking helper functions */
27typedef int (*dbg_leaf_callback)(struct ubifs_info *c,
28 struct ubifs_zbranch *zbr, void *priv);
29typedef int (*dbg_znode_callback)(struct ubifs_info *c,
30 struct ubifs_znode *znode, void *priv);
31
Artem Bityutskiy1e517642008-07-14 19:08:37 +030032#ifdef CONFIG_UBIFS_FS_DEBUG
33
Artem Bityutskiybc3f07f2011-04-05 13:52:20 +030034#include <linux/random.h>
35
Artem Bityutskiy17c2f9f2008-10-17 13:31:39 +030036/**
37 * ubifs_debug_info - per-FS debugging information.
Artem Bityutskiy17c2f9f2008-10-17 13:31:39 +030038 * @old_zroot: old index root - used by 'dbg_check_old_index()'
39 * @old_zroot_level: old index root level - used by 'dbg_check_old_index()'
40 * @old_zroot_sqnum: old index root sqnum - used by 'dbg_check_old_index()'
41 * @failure_mode: failure mode for recovery testing
42 * @fail_delay: 0=>don't delay, 1=>delay a time, 2=>delay a number of calls
43 * @fail_timeout: time in jiffies when delay of failure mode expires
44 * @fail_cnt: current number of calls to failure mode I/O functions
45 * @fail_cnt_max: number of calls by which to delay failure mode
46 * @chk_lpt_sz: used by LPT tree size checker
47 * @chk_lpt_sz2: used by LPT tree size checker
48 * @chk_lpt_wastage: used by LPT tree size checker
49 * @chk_lpt_lebs: used by LPT tree size checker
50 * @new_nhead_offs: used by LPT tree size checker
Artem Bityutskiy84abf972009-01-23 14:54:59 +020051 * @new_ihead_lnum: used by debugging to check @c->ihead_lnum
52 * @new_ihead_offs: used by debugging to check @c->ihead_offs
Artem Bityutskiy552ff312008-10-23 11:49:28 +030053 *
Artem Bityutskiy84abf972009-01-23 14:54:59 +020054 * @saved_lst: saved lprops statistics (used by 'dbg_save_space_info()')
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +030055 * @saved_bi: saved budgeting information
56 * @saved_free: saved amount of free space
57 * @saved_idx_gc_cnt: saved value of @c->idx_gc_cnt
Artem Bityutskiy84abf972009-01-23 14:54:59 +020058 *
Artem Bityutskiybdc1a1b2011-05-17 14:07:24 +030059 * @dfs_dir_name: name of debugfs directory containing this file-system's files
60 * @dfs_dir: direntry object of the file-system debugfs directory
61 * @dfs_dump_lprops: "dump lprops" debugfs knob
62 * @dfs_dump_budg: "dump budgeting information" debugfs knob
63 * @dfs_dump_tnc: "dump TNC" debugfs knob
Artem Bityutskiy17c2f9f2008-10-17 13:31:39 +030064 */
65struct ubifs_debug_info {
Artem Bityutskiy17c2f9f2008-10-17 13:31:39 +030066 struct ubifs_zbranch old_zroot;
67 int old_zroot_level;
68 unsigned long long old_zroot_sqnum;
69 int failure_mode;
70 int fail_delay;
71 unsigned long fail_timeout;
72 unsigned int fail_cnt;
73 unsigned int fail_cnt_max;
74 long long chk_lpt_sz;
75 long long chk_lpt_sz2;
76 long long chk_lpt_wastage;
77 int chk_lpt_lebs;
78 int new_nhead_offs;
79 int new_ihead_lnum;
80 int new_ihead_offs;
Artem Bityutskiy552ff312008-10-23 11:49:28 +030081
Artem Bityutskiy84abf972009-01-23 14:54:59 +020082 struct ubifs_lp_stats saved_lst;
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +030083 struct ubifs_budg_info saved_bi;
Artem Bityutskiy84abf972009-01-23 14:54:59 +020084 long long saved_free;
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +030085 int saved_idx_gc_cnt;
Artem Bityutskiy84abf972009-01-23 14:54:59 +020086
87 char dfs_dir_name[100];
88 struct dentry *dfs_dir;
89 struct dentry *dfs_dump_lprops;
90 struct dentry *dfs_dump_budg;
91 struct dentry *dfs_dump_tnc;
Artem Bityutskiy17c2f9f2008-10-17 13:31:39 +030092};
Artem Bityutskiy1e517642008-07-14 19:08:37 +030093
Artem Bityutskiy840dc6b2008-08-01 18:13:37 +030094#define ubifs_assert(expr) do { \
Artem Bityutskiy1e517642008-07-14 19:08:37 +030095 if (unlikely(!(expr))) { \
96 printk(KERN_CRIT "UBIFS assert failed in %s at %u (pid %d)\n", \
97 __func__, __LINE__, current->pid); \
98 dbg_dump_stack(); \
99 } \
100} while (0)
101
102#define ubifs_assert_cmt_locked(c) do { \
103 if (unlikely(down_write_trylock(&(c)->commit_sem))) { \
104 up_write(&(c)->commit_sem); \
105 printk(KERN_CRIT "commit lock is not locked!\n"); \
106 ubifs_assert(0); \
107 } \
108} while (0)
109
Artem Bityutskiyec068142011-04-26 10:21:54 +0300110#define dbg_dump_stack() dump_stack()
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300111
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300112#define dbg_err(fmt, ...) do { \
113 spin_lock(&dbg_lock); \
114 ubifs_err(fmt, ##__VA_ARGS__); \
115 spin_unlock(&dbg_lock); \
116} while (0)
117
118const char *dbg_key_str0(const struct ubifs_info *c,
119 const union ubifs_key *key);
120const char *dbg_key_str1(const struct ubifs_info *c,
121 const union ubifs_key *key);
122
123/*
Artem Bityutskiy840dc6b2008-08-01 18:13:37 +0300124 * DBGKEY macros require @dbg_lock to be held, which it is in the dbg message
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300125 * macros.
126 */
127#define DBGKEY(key) dbg_key_str0(c, (key))
128#define DBGKEY1(key) dbg_key_str1(c, (key))
129
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300130#define ubifs_dbg_msg(type, fmt, ...) do { \
131 spin_lock(&dbg_lock); \
132 pr_debug("UBIFS DBG " type ": " fmt "\n", ##__VA_ARGS__); \
133 spin_unlock(&dbg_lock); \
134} while (0)
135
136/* Just a debugging messages not related to any specific UBIFS subsystem */
Artem Bityutskiy8aee2e22012-01-10 19:32:30 +0200137#define dbg_msg(fmt, ...) \
138 printk(KERN_DEBUG "UBIFS DBG (pid %d): %s: " fmt "\n", current->pid, \
139 __func__, ##__VA_ARGS__)
140
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300141/* General messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300142#define dbg_gen(fmt, ...) ubifs_dbg_msg("gen", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300143/* Additional journal messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300144#define dbg_jnl(fmt, ...) ubifs_dbg_msg("jnl", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300145/* Additional TNC messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300146#define dbg_tnc(fmt, ...) ubifs_dbg_msg("tnc", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300147/* Additional lprops messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300148#define dbg_lp(fmt, ...) ubifs_dbg_msg("lp", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300149/* Additional LEB find messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300150#define dbg_find(fmt, ...) ubifs_dbg_msg("find", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300151/* Additional mount messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300152#define dbg_mnt(fmt, ...) ubifs_dbg_msg("mnt", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300153/* Additional I/O messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300154#define dbg_io(fmt, ...) ubifs_dbg_msg("io", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300155/* Additional commit messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300156#define dbg_cmt(fmt, ...) ubifs_dbg_msg("cmt", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300157/* Additional budgeting messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300158#define dbg_budg(fmt, ...) ubifs_dbg_msg("budg", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300159/* Additional log messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300160#define dbg_log(fmt, ...) ubifs_dbg_msg("log", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300161/* Additional gc messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300162#define dbg_gc(fmt, ...) ubifs_dbg_msg("gc", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300163/* Additional scan messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300164#define dbg_scan(fmt, ...) ubifs_dbg_msg("scan", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300165/* Additional recovery messages */
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300166#define dbg_rcvry(fmt, ...) ubifs_dbg_msg("rcvry", fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300167
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300168/*
Artem Bityutskiy5d630e42011-03-14 17:55:40 +0200169 * Debugging check flags.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300170 *
171 * UBIFS_CHK_GEN: general checks
172 * UBIFS_CHK_TNC: check TNC
173 * UBIFS_CHK_IDX_SZ: check index size
174 * UBIFS_CHK_ORPH: check orphans
175 * UBIFS_CHK_OLD_IDX: check the old index
176 * UBIFS_CHK_LPROPS: check lprops
177 * UBIFS_CHK_FS: check the file-system
178 */
179enum {
180 UBIFS_CHK_GEN = 0x1,
181 UBIFS_CHK_TNC = 0x2,
182 UBIFS_CHK_IDX_SZ = 0x4,
183 UBIFS_CHK_ORPH = 0x8,
184 UBIFS_CHK_OLD_IDX = 0x10,
185 UBIFS_CHK_LPROPS = 0x20,
186 UBIFS_CHK_FS = 0x40,
187};
188
189/*
Artem Bityutskiy5d630e42011-03-14 17:55:40 +0200190 * Special testing flags.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300191 *
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300192 * UBIFS_TST_RCVRY: failure mode for recovery testing
193 */
194enum {
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300195 UBIFS_TST_RCVRY = 0x4,
196};
197
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300198extern spinlock_t dbg_lock;
199
200extern unsigned int ubifs_msg_flags;
201extern unsigned int ubifs_chk_flags;
202extern unsigned int ubifs_tst_flags;
203
Artem Bityutskiy17c2f9f2008-10-17 13:31:39 +0300204int ubifs_debugging_init(struct ubifs_info *c);
205void ubifs_debugging_exit(struct ubifs_info *c);
206
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300207/* Dump functions */
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300208const char *dbg_ntype(int type);
209const char *dbg_cstate(int cmt_state);
Artem Bityutskiy77a7ae52009-09-15 15:03:51 +0300210const char *dbg_jhead(int jhead);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300211const char *dbg_get_key_dump(const struct ubifs_info *c,
212 const union ubifs_key *key);
213void dbg_dump_inode(const struct ubifs_info *c, const struct inode *inode);
214void dbg_dump_node(const struct ubifs_info *c, const void *node);
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200215void dbg_dump_lpt_node(const struct ubifs_info *c, void *node, int lnum,
216 int offs);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300217void dbg_dump_budget_req(const struct ubifs_budget_req *req);
218void dbg_dump_lstats(const struct ubifs_lp_stats *lst);
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +0300219void dbg_dump_budg(struct ubifs_info *c, const struct ubifs_budg_info *bi);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300220void dbg_dump_lprop(const struct ubifs_info *c, const struct ubifs_lprops *lp);
221void dbg_dump_lprops(struct ubifs_info *c);
Adrian Hunter73944a62008-09-12 18:13:31 +0300222void dbg_dump_lpt_info(struct ubifs_info *c);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300223void dbg_dump_leb(const struct ubifs_info *c, int lnum);
224void dbg_dump_znode(const struct ubifs_info *c,
225 const struct ubifs_znode *znode);
226void dbg_dump_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, int cat);
227void dbg_dump_pnode(struct ubifs_info *c, struct ubifs_pnode *pnode,
228 struct ubifs_nnode *parent, int iip);
229void dbg_dump_tnc(struct ubifs_info *c);
230void dbg_dump_index(struct ubifs_info *c);
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200231void dbg_dump_lpt_lebs(const struct ubifs_info *c);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300232
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300233int dbg_walk_index(struct ubifs_info *c, dbg_leaf_callback leaf_cb,
234 dbg_znode_callback znode_cb, void *priv);
235
236/* Checking functions */
Artem Bityutskiy84abf972009-01-23 14:54:59 +0200237void dbg_save_space_info(struct ubifs_info *c);
238int dbg_check_space_info(struct ubifs_info *c);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300239int dbg_check_lprops(struct ubifs_info *c);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300240int dbg_old_index_check_init(struct ubifs_info *c, struct ubifs_zbranch *zroot);
241int dbg_check_old_index(struct ubifs_info *c, struct ubifs_zbranch *zroot);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300242int dbg_check_cats(struct ubifs_info *c);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300243int dbg_check_ltab(struct ubifs_info *c);
Adrian Hunter73944a62008-09-12 18:13:31 +0300244int dbg_chk_lpt_free_spc(struct ubifs_info *c);
245int dbg_chk_lpt_sz(struct ubifs_info *c, int action, int len);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300246int dbg_check_synced_i_size(struct inode *inode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300247int dbg_check_dir_size(struct ubifs_info *c, const struct inode *dir);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300248int dbg_check_tnc(struct ubifs_info *c, int extra);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300249int dbg_check_idx_size(struct ubifs_info *c, long long idx_size);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300250int dbg_check_filesystem(struct ubifs_info *c);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300251void dbg_check_heap(struct ubifs_info *c, struct ubifs_lpt_heap *heap, int cat,
252 int add_pos);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300253int dbg_check_lpt_nodes(struct ubifs_info *c, struct ubifs_cnode *cnode,
254 int row, int col);
Artem Bityutskiye3c3efc2009-08-27 16:34:19 +0300255int dbg_check_inode_size(struct ubifs_info *c, const struct inode *inode,
256 loff_t size);
Artem Bityutskiy3bb66b42010-08-07 10:06:11 +0300257int dbg_check_data_nodes_order(struct ubifs_info *c, struct list_head *head);
258int dbg_check_nondata_nodes_order(struct ubifs_info *c, struct list_head *head);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300259
260/* Force the use of in-the-gaps method for testing */
Artem Bityutskiybc3f07f2011-04-05 13:52:20 +0300261static inline int dbg_force_in_the_gaps_enabled(void)
262{
263 return ubifs_chk_flags & UBIFS_CHK_GEN;
264}
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300265int dbg_force_in_the_gaps(void);
266
267/* Failure mode for recovery testing */
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300268#define dbg_failure_mode (ubifs_tst_flags & UBIFS_TST_RCVRY)
269
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300270#ifndef UBIFS_DBG_PRESERVE_UBI
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300271#define ubi_leb_read dbg_leb_read
272#define ubi_leb_write dbg_leb_write
273#define ubi_leb_change dbg_leb_change
274#define ubi_leb_erase dbg_leb_erase
275#define ubi_leb_unmap dbg_leb_unmap
276#define ubi_is_mapped dbg_is_mapped
277#define ubi_leb_map dbg_leb_map
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300278#endif
279
280int dbg_leb_read(struct ubi_volume_desc *desc, int lnum, char *buf, int offset,
281 int len, int check);
282int dbg_leb_write(struct ubi_volume_desc *desc, int lnum, const void *buf,
283 int offset, int len, int dtype);
284int dbg_leb_change(struct ubi_volume_desc *desc, int lnum, const void *buf,
285 int len, int dtype);
286int dbg_leb_erase(struct ubi_volume_desc *desc, int lnum);
287int dbg_leb_unmap(struct ubi_volume_desc *desc, int lnum);
288int dbg_is_mapped(struct ubi_volume_desc *desc, int lnum);
289int dbg_leb_map(struct ubi_volume_desc *desc, int lnum, int dtype);
290
291static inline int dbg_read(struct ubi_volume_desc *desc, int lnum, char *buf,
292 int offset, int len)
293{
294 return dbg_leb_read(desc, lnum, buf, offset, len, 0);
295}
296
297static inline int dbg_write(struct ubi_volume_desc *desc, int lnum,
298 const void *buf, int offset, int len)
299{
300 return dbg_leb_write(desc, lnum, buf, offset, len, UBI_UNKNOWN);
301}
302
303static inline int dbg_change(struct ubi_volume_desc *desc, int lnum,
304 const void *buf, int len)
305{
306 return dbg_leb_change(desc, lnum, buf, len, UBI_UNKNOWN);
307}
308
Artem Bityutskiy552ff312008-10-23 11:49:28 +0300309/* Debugfs-related stuff */
310int dbg_debugfs_init(void);
311void dbg_debugfs_exit(void);
312int dbg_debugfs_init_fs(struct ubifs_info *c);
313void dbg_debugfs_exit_fs(struct ubifs_info *c);
314
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300315#else /* !CONFIG_UBIFS_FS_DEBUG */
316
Artem Bityutskiy840dc6b2008-08-01 18:13:37 +0300317/* Use "if (0)" to make compiler check arguments even if debugging is off */
318#define ubifs_assert(expr) do { \
319 if (0 && (expr)) \
320 printk(KERN_CRIT "UBIFS assert failed in %s at %u (pid %d)\n", \
321 __func__, __LINE__, current->pid); \
322} while (0)
323
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300324#define dbg_err(fmt, ...) do { \
325 if (0) \
326 ubifs_err(fmt, ##__VA_ARGS__); \
Artem Bityutskiy840dc6b2008-08-01 18:13:37 +0300327} while (0)
328
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300329#define ubifs_dbg_msg(fmt, ...) do { \
330 if (0) \
331 pr_debug(fmt "\n", ##__VA_ARGS__); \
Artem Bityutskiy840dc6b2008-08-01 18:13:37 +0300332} while (0)
333
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300334#define dbg_dump_stack()
Artem Bityutskiy840dc6b2008-08-01 18:13:37 +0300335#define ubifs_assert_cmt_locked(c)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300336
Artem Bityutskiy56e46742011-05-17 15:15:30 +0300337#define dbg_msg(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
338#define dbg_gen(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
339#define dbg_jnl(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
340#define dbg_tnc(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
341#define dbg_lp(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
342#define dbg_find(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
343#define dbg_mnt(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
344#define dbg_io(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
345#define dbg_cmt(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
346#define dbg_budg(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
347#define dbg_log(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
348#define dbg_gc(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
349#define dbg_scan(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
350#define dbg_rcvry(fmt, ...) ubifs_dbg_msg(fmt, ##__VA_ARGS__)
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300351
Artem Bityutskiy840dc6b2008-08-01 18:13:37 +0300352#define DBGKEY(key) ((char *)(key))
353#define DBGKEY1(key) ((char *)(key))
354
Maksim Rayskiy1dcffad2011-04-12 15:14:56 -0700355static inline int ubifs_debugging_init(struct ubifs_info *c) { return 0; }
356static inline void ubifs_debugging_exit(struct ubifs_info *c) { return; }
357static inline const char *dbg_ntype(int type) { return ""; }
358static inline const char *dbg_cstate(int cmt_state) { return ""; }
359static inline const char *dbg_jhead(int jhead) { return ""; }
360static inline const char *
361dbg_get_key_dump(const struct ubifs_info *c,
362 const union ubifs_key *key) { return ""; }
363static inline void dbg_dump_inode(const struct ubifs_info *c,
364 const struct inode *inode) { return; }
365static inline void dbg_dump_node(const struct ubifs_info *c,
366 const void *node) { return; }
367static inline void dbg_dump_lpt_node(const struct ubifs_info *c,
368 void *node, int lnum,
369 int offs) { return; }
370static inline void
371dbg_dump_budget_req(const struct ubifs_budget_req *req) { return; }
372static inline void
373dbg_dump_lstats(const struct ubifs_lp_stats *lst) { return; }
Artem Bityutskiyf1bd66a2011-03-29 18:36:21 +0300374static inline void
375dbg_dump_budg(struct ubifs_info *c,
376 const struct ubifs_budg_info *bi) { return; }
Maksim Rayskiy1dcffad2011-04-12 15:14:56 -0700377static inline void dbg_dump_lprop(const struct ubifs_info *c,
378 const struct ubifs_lprops *lp) { return; }
379static inline void dbg_dump_lprops(struct ubifs_info *c) { return; }
380static inline void dbg_dump_lpt_info(struct ubifs_info *c) { return; }
381static inline void dbg_dump_leb(const struct ubifs_info *c,
382 int lnum) { return; }
383static inline void
384dbg_dump_znode(const struct ubifs_info *c,
385 const struct ubifs_znode *znode) { return; }
386static inline void dbg_dump_heap(struct ubifs_info *c,
387 struct ubifs_lpt_heap *heap,
388 int cat) { return; }
389static inline void dbg_dump_pnode(struct ubifs_info *c,
390 struct ubifs_pnode *pnode,
391 struct ubifs_nnode *parent,
392 int iip) { return; }
393static inline void dbg_dump_tnc(struct ubifs_info *c) { return; }
394static inline void dbg_dump_index(struct ubifs_info *c) { return; }
395static inline void dbg_dump_lpt_lebs(const struct ubifs_info *c) { return; }
Artem Bityutskiy17c2f9f2008-10-17 13:31:39 +0300396
Maksim Rayskiy1dcffad2011-04-12 15:14:56 -0700397static inline int dbg_walk_index(struct ubifs_info *c,
398 dbg_leaf_callback leaf_cb,
399 dbg_znode_callback znode_cb,
400 void *priv) { return 0; }
401static inline void dbg_save_space_info(struct ubifs_info *c) { return; }
402static inline int dbg_check_space_info(struct ubifs_info *c) { return 0; }
403static inline int dbg_check_lprops(struct ubifs_info *c) { return 0; }
404static inline int
405dbg_old_index_check_init(struct ubifs_info *c,
406 struct ubifs_zbranch *zroot) { return 0; }
407static inline int
408dbg_check_old_index(struct ubifs_info *c,
409 struct ubifs_zbranch *zroot) { return 0; }
410static inline int dbg_check_cats(struct ubifs_info *c) { return 0; }
411static inline int dbg_check_ltab(struct ubifs_info *c) { return 0; }
412static inline int dbg_chk_lpt_free_spc(struct ubifs_info *c) { return 0; }
413static inline int dbg_chk_lpt_sz(struct ubifs_info *c,
414 int action, int len) { return 0; }
415static inline int dbg_check_synced_i_size(struct inode *inode) { return 0; }
416static inline int dbg_check_dir_size(struct ubifs_info *c,
417 const struct inode *dir) { return 0; }
418static inline int dbg_check_tnc(struct ubifs_info *c, int extra) { return 0; }
419static inline int dbg_check_idx_size(struct ubifs_info *c,
420 long long idx_size) { return 0; }
421static inline int dbg_check_filesystem(struct ubifs_info *c) { return 0; }
422static inline void dbg_check_heap(struct ubifs_info *c,
423 struct ubifs_lpt_heap *heap,
424 int cat, int add_pos) { return; }
425static inline int dbg_check_lpt_nodes(struct ubifs_info *c,
426 struct ubifs_cnode *cnode, int row, int col) { return 0; }
427static inline int dbg_check_inode_size(struct ubifs_info *c,
428 const struct inode *inode,
429 loff_t size) { return 0; }
430static inline int
431dbg_check_data_nodes_order(struct ubifs_info *c,
432 struct list_head *head) { return 0; }
433static inline int
434dbg_check_nondata_nodes_order(struct ubifs_info *c,
435 struct list_head *head) { return 0; }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300436
Maksim Rayskiy1dcffad2011-04-12 15:14:56 -0700437static inline int dbg_force_in_the_gaps(void) { return 0; }
Artem Bityutskiybc3f07f2011-04-05 13:52:20 +0300438#define dbg_force_in_the_gaps_enabled() 0
439#define dbg_failure_mode 0
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300440
Maksim Rayskiy1dcffad2011-04-12 15:14:56 -0700441static inline int dbg_debugfs_init(void) { return 0; }
442static inline void dbg_debugfs_exit(void) { return; }
443static inline int dbg_debugfs_init_fs(struct ubifs_info *c) { return 0; }
444static inline int dbg_debugfs_exit_fs(struct ubifs_info *c) { return 0; }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300445
Artem Bityutskiy552ff312008-10-23 11:49:28 +0300446#endif /* !CONFIG_UBIFS_FS_DEBUG */
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300447#endif /* !__UBIFS_DEBUG_H__ */