提交 37814ee0 编写于 作者: G Greg Kroah-Hartman

sysfs: dir.c: fix up odd do/while indentation

This fixes up the odd do/while after an if statement warning in dir.c
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 060cc749
...@@ -990,7 +990,8 @@ static struct sysfs_dirent *sysfs_dir_next_pos(const void *ns, ...@@ -990,7 +990,8 @@ static struct sysfs_dirent *sysfs_dir_next_pos(const void *ns,
struct sysfs_dirent *parent_sd, ino_t ino, struct sysfs_dirent *pos) struct sysfs_dirent *parent_sd, ino_t ino, struct sysfs_dirent *pos)
{ {
pos = sysfs_dir_pos(ns, parent_sd, ino, pos); pos = sysfs_dir_pos(ns, parent_sd, ino, pos);
if (pos) do { if (pos)
do {
struct rb_node *node = rb_next(&pos->s_rb); struct rb_node *node = rb_next(&pos->s_rb);
if (!node) if (!node)
pos = NULL; pos = NULL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册