diff options
author | Steve French <sfrench@us.ibm.com> | 2008-11-17 03:57:13 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2008-11-17 03:57:13 +0000 |
commit | c2b3382cd4d6c6adef1347e81f20e16c93a39feb (patch) | |
tree | ac039e2d2cc37f25df3b8346cf5a980ee7988599 /fs | |
parent | f1987b44f642e96176adc88b7ce23a1d74806f89 (diff) |
[CIFS] Fix build break
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/cifs_debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/cifs_debug.c b/fs/cifs/cifs_debug.c index 1d6dfa8923c..490e34bbf27 100644 --- a/fs/cifs/cifs_debug.c +++ b/fs/cifs/cifs_debug.c @@ -249,9 +249,9 @@ static ssize_t cifs_stats_proc_write(struct file *file, list_for_each(tmp1, &cifs_tcp_ses_list) { server = list_entry(tmp1, struct TCP_Server_Info, tcp_ses_list); - list_for_each(tmp2, &server->smb_session_list) { + list_for_each(tmp2, &server->smb_ses_list) { ses = list_entry(tmp2, struct cifsSesInfo, - smb_session_list); + smb_ses_list); list_for_each(tmp3, &ses->tcon_list) { tcon = list_entry(tmp3, struct cifsTconInfo, |