Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
209e101b
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
209e101b
编写于
6月 06, 2007
作者:
D
Dave Kleikamp
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
JFS: use print_hex_dump() rather than private dump_mem() function
Signed-off-by:
N
Dave Kleikamp
<
shaggy@linux.vnet.ibm.com
>
上级
f720e3ba
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
29 addition
and
45 deletion
+29
-45
fs/jfs/jfs_debug.c
fs/jfs/jfs_debug.c
+0
-28
fs/jfs/jfs_debug.h
fs/jfs/jfs_debug.h
+0
-2
fs/jfs/jfs_imap.c
fs/jfs/jfs_imap.c
+2
-1
fs/jfs/jfs_logmgr.c
fs/jfs/jfs_logmgr.c
+12
-6
fs/jfs/jfs_metapage.c
fs/jfs/jfs_metapage.c
+2
-1
fs/jfs/jfs_txnmgr.c
fs/jfs/jfs_txnmgr.c
+11
-6
fs/jfs/xattr.c
fs/jfs/xattr.c
+2
-1
未找到文件。
fs/jfs/jfs_debug.c
浏览文件 @
209e101b
...
...
@@ -26,34 +26,6 @@
#include "jfs_filsys.h"
#include "jfs_debug.h"
#ifdef CONFIG_JFS_DEBUG
void
dump_mem
(
char
*
label
,
void
*
data
,
int
length
)
{
int
i
,
j
;
int
*
intptr
=
data
;
char
*
charptr
=
data
;
char
buf
[
10
],
line
[
80
];
printk
(
"%s: dump of %d bytes of data at 0x%p
\n\n
"
,
label
,
length
,
data
);
for
(
i
=
0
;
i
<
length
;
i
+=
16
)
{
line
[
0
]
=
0
;
for
(
j
=
0
;
(
j
<
4
)
&&
(
i
+
j
*
4
<
length
);
j
++
)
{
sprintf
(
buf
,
" %08x"
,
intptr
[
i
/
4
+
j
]);
strcat
(
line
,
buf
);
}
buf
[
0
]
=
' '
;
buf
[
2
]
=
0
;
for
(
j
=
0
;
(
j
<
16
)
&&
(
i
+
j
<
length
);
j
++
)
{
buf
[
1
]
=
isprint
(
charptr
[
i
+
j
])
?
charptr
[
i
+
j
]
:
'.'
;
strcat
(
line
,
buf
);
}
printk
(
"%s
\n
"
,
line
);
}
}
#endif
#ifdef PROC_FS_JFS
/* see jfs_debug.h */
static
struct
proc_dir_entry
*
base
;
...
...
fs/jfs/jfs_debug.h
浏览文件 @
209e101b
...
...
@@ -62,7 +62,6 @@ extern void jfs_proc_clean(void);
extern
int
jfsloglevel
;
extern
void
dump_mem
(
char
*
label
,
void
*
data
,
int
length
);
extern
int
jfs_txanchor_read
(
char
*
,
char
**
,
off_t
,
int
,
int
*
,
void
*
);
/* information message: e.g., configuration, major event */
...
...
@@ -94,7 +93,6 @@ extern int jfs_txanchor_read(char *, char **, off_t, int, int *, void *);
* ---------
*/
#else
/* CONFIG_JFS_DEBUG */
#define dump_mem(label,data,length) do {} while (0)
#define ASSERT(p) do {} while (0)
#define jfs_info(fmt, arg...) do {} while (0)
#define jfs_debug(fmt, arg...) do {} while (0)
...
...
fs/jfs/jfs_imap.c
浏览文件 @
209e101b
...
...
@@ -890,7 +890,8 @@ int diFree(struct inode *ip)
* the map.
*/
if
(
iagno
>=
imap
->
im_nextiag
)
{
dump_mem
(
"imap"
,
imap
,
32
);
printk
(
KERN_ERR
"Dump of imap:
\n
"
);
print_hex_dump
(
KERN_ERR
,
DUMP_PREFIX_ADDRESS
,
imap
,
32
);
jfs_error
(
ip
->
i_sb
,
"diFree: inum = %d, iagno = %d, nextiag = %d"
,
(
uint
)
inum
,
iagno
,
imap
->
im_nextiag
);
...
...
fs/jfs/jfs_logmgr.c
浏览文件 @
209e101b
...
...
@@ -1622,16 +1622,22 @@ void jfs_flush_journal(struct jfs_log *log, int wait)
if
(
!
list_empty
(
&
log
->
synclist
))
{
struct
logsyncblk
*
lp
;
printk
(
KERN_ERR
"jfs_flush_journal: synclist not empty
\n
"
);
list_for_each_entry
(
lp
,
&
log
->
synclist
,
synclist
)
{
if
(
lp
->
xflag
&
COMMIT_PAGE
)
{
struct
metapage
*
mp
=
(
struct
metapage
*
)
lp
;
dump_mem
(
"orphan metapage"
,
lp
,
sizeof
(
struct
metapage
));
dump_mem
(
"page"
,
mp
->
page
,
sizeof
(
struct
page
));
printk
(
KERN_ERR
"orphan metapage:
\n
"
);
print_hex_dump
(
KERN_ERR
,
DUMP_PREFIX_ADDRESS
,
lp
,
sizeof
(
struct
metapage
));
printk
(
KERN_ERR
"page:
\n
"
);
print_hex_dump
(
KERN_ERR
,
DUMP_PREFIX_ADDRESS
,
mp
->
page
,
sizeof
(
struct
page
));
}
else
{
printk
(
KERN_ERR
"orphan tblock:
\n
"
);
print_hex_dump
(
KERN_ERR
,
DUMP_PREFIX_ADDRESS
,
lp
,
sizeof
(
struct
tblock
));
}
else
dump_mem
(
"orphan tblock"
,
lp
,
sizeof
(
struct
tblock
));
}
}
#endif
...
...
fs/jfs/jfs_metapage.c
浏览文件 @
209e101b
...
...
@@ -472,7 +472,8 @@ static int metapage_writepage(struct page *page, struct writeback_control *wbc)
printk
(
KERN_ERR
"JFS: bio_add_page failed unexpectedly
\n
"
);
goto
skip
;
dump_bio:
dump_mem
(
"bio"
,
bio
,
sizeof
(
*
bio
));
printk
(
KERN_ERR
"JFS: dump of bio:
\n
"
);
print_hex_dump
(
KERN_ERR
,
DUMP_PREFIX_ADDRESS
,
bio
,
sizeof
(
*
bio
));
skip:
bio_put
(
bio
);
unlock_page
(
page
);
...
...
fs/jfs/jfs_txnmgr.c
浏览文件 @
209e101b
...
...
@@ -829,12 +829,17 @@ struct tlock *txLock(tid_t tid, struct inode *ip, struct metapage * mp,
/* Only locks on ipimap or ipaimap should reach here */
/* assert(jfs_ip->fileset == AGGREGATE_I); */
if
(
jfs_ip
->
fileset
!=
AGGREGATE_I
)
{
jfs_err
(
"txLock: trying to lock locked page!"
);
dump_mem
(
"ip"
,
ip
,
sizeof
(
struct
inode
));
dump_mem
(
"mp"
,
mp
,
sizeof
(
struct
metapage
));
dump_mem
(
"Locker's tblk"
,
tid_to_tblock
(
tid
),
sizeof
(
struct
tblock
));
dump_mem
(
"Tlock"
,
tlck
,
sizeof
(
struct
tlock
));
printk
(
KERN_ERR
"txLock: trying to lock locked page!"
);
printk
(
KERN_ERR
"ip:
\n
"
);
print_hex_dump
(
KERN_ERR
,
DUMP_PREFIX_ADDRESS
,
ip
,
sizeof
(
*
ip
));
printk
(
KERN_ERR
"mp:
\n
"
);
print_hex_dump
(
KERN_ERR
,
DUMP_PREFIX_ADDRESS
,
mp
,
sizeof
(
*
mp
));
printk
(
KERN_ERR
"Locker's tblk:
\n
"
);
print_hex_dump
(
KERN_ERR
,
DUMP_PREFIX_ADDRESS
,
tid_to_tblock
(
tid
),
sizeof
(
struct
tblock
));
printk
(
KERN_ERR
"Tlock:
\n
"
);
print_hex_dump
(
KERN_ERR
,
DUMP_PREFIX_ADDRESS
,
tlck
,
sizeof
(
*
tlck
));
BUG
();
}
INCREMENT
(
stattx
.
waitlock
);
/* statistics */
...
...
fs/jfs/xattr.c
浏览文件 @
209e101b
...
...
@@ -590,7 +590,8 @@ static int ea_get(struct inode *inode, struct ea_buffer *ea_buf, int min_size)
size_check:
if
(
EALIST_SIZE
(
ea_buf
->
xattr
)
!=
ea_size
)
{
printk
(
KERN_ERR
"ea_get: invalid extended attribute
\n
"
);
dump_mem
(
"xattr"
,
ea_buf
->
xattr
,
ea_size
);
print_hex_dump
(
KERN_ERR
,
DUMP_PREFIX_ADDRESS
,
ea_buf
->
xattr
,
ea_size
);
ea_release
(
inode
,
ea_buf
);
rc
=
-
EIO
;
goto
clean_up
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录