mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
[CIFS] Fix build break
Signed-off-by: Steve French <sfrench@us.ibm.com>
This commit is contained in:
parent
f1987b44f6
commit
c2b3382cd4
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue