Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 213403
b: refs/heads/master
c: d3bf522
h: refs/heads/master
i:
  213401: c9eebd1
  213399: af0f573
v: v3
  • Loading branch information
Steve French committed Sep 29, 2010
1 parent 2712b9a commit 77c7dee
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 17edec6f563ba6b5630329fbe9473557bb475c3d
refs/heads/master: d3bf5221d3274b5015ad18a55060b074cca8d2f0
18 changes: 9 additions & 9 deletions trunk/fs/cifs/cifsfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -933,11 +933,11 @@ init_cifs(void)

rc = cifs_fscache_register();
if (rc)
goto out;
goto out_clean_proc;

rc = cifs_init_inodecache();
if (rc)
goto out_clean_proc;
goto out_unreg_fscache;

rc = cifs_init_mids();
if (rc)
Expand All @@ -959,19 +959,19 @@ init_cifs(void)
return 0;

#ifdef CONFIG_CIFS_UPCALL
out_unregister_filesystem:
out_unregister_filesystem:
unregister_filesystem(&cifs_fs_type);
#endif
out_destroy_request_bufs:
out_destroy_request_bufs:
cifs_destroy_request_bufs();
out_destroy_mids:
out_destroy_mids:
cifs_destroy_mids();
out_destroy_inodecache:
out_destroy_inodecache:
cifs_destroy_inodecache();
out_clean_proc:
cifs_proc_clean();
out_unreg_fscache:
cifs_fscache_unregister();
out:
out_clean_proc:
cifs_proc_clean();
return rc;
}

Expand Down
1 change: 0 additions & 1 deletion trunk/fs/cifs/connect.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
#include "ntlmssp.h"
#include "nterr.h"
#include "rfc1002pdu.h"
#include "cn_cifs.h"
#include "fscache.h"

#define CIFS_PORT 445
Expand Down

0 comments on commit 77c7dee

Please sign in to comment.