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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Greg Kroah-Hartman 2013-08-21 16:36:02 -07:00
Родитель 060cc749e9
Коммит 37814ee0ba
1 изменённых файлов: 8 добавлений и 7 удалений

Просмотреть файл

@ -990,13 +990,14 @@ 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)
struct rb_node *node = rb_next(&pos->s_rb); do {
if (!node) struct rb_node *node = rb_next(&pos->s_rb);
pos = NULL; if (!node)
else pos = NULL;
pos = to_sysfs_dirent(node); else
} while (pos && pos->s_ns != ns); pos = to_sysfs_dirent(node);
} while (pos && pos->s_ns != ns);
return pos; return pos;
} }