소스 검색

fs: remove now stale label in anon_inode_init()

The previous commit removed the register_filesystem() call and the
associated error handling, but left the label for the error path that no
longer exists.  Remove that too.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Linus Torvalds 11 년 전
부모
커밋
fce7fc79c8
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      fs/anon_inodes.c

+ 0 - 1
fs/anon_inodes.c

@@ -186,7 +186,6 @@ static int __init anon_inode_init(void)
 
 
 err_unregister_filesystem:
 err_unregister_filesystem:
 	unregister_filesystem(&anon_inode_fs_type);
 	unregister_filesystem(&anon_inode_fs_type);
-err_exit:
 	panic(KERN_ERR "anon_inode_init() failed (%d)\n", error);
 	panic(KERN_ERR "anon_inode_init() failed (%d)\n", error);
 }
 }