From: Ryusuke Konishi Date: Mon, 28 Jun 2010 10:15:25 +0000 (+0900) Subject: nilfs2: add missing error code in comment of nilfs_search_super_root X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2d72b99ecdf8cbb5d9422c54b401d9d590b2faf5;p=linux-beck.git nilfs2: add missing error code in comment of nilfs_search_super_root nilfs_search_super_root can return -ENOMEM, but this error code is not described in its kernel-doc comment. This fixes the discrepancy. Signed-off-by: Ryusuke Konishi --- diff --git a/fs/nilfs2/recovery.c b/fs/nilfs2/recovery.c index f5d9c3f954ae..83e3d8c61a01 100644 --- a/fs/nilfs2/recovery.c +++ b/fs/nilfs2/recovery.c @@ -804,6 +804,8 @@ int nilfs_salvage_orphan_logs(struct the_nilfs *nilfs, * %-EINVAL - No valid segment found * * %-EIO - I/O error + * + * %-ENOMEM - Insufficient memory available. */ int nilfs_search_super_root(struct the_nilfs *nilfs, struct nilfs_recovery_info *ri)