diff options
author | Steve French <sfrench@us.ibm.com> | 2011-05-27 00:34:02 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2011-05-27 00:34:02 -0400 |
commit | 96daf2b09178d8ebde2b0d56b027de917c17dfdf (patch) | |
tree | 74802fa44e87925e49067d5106eb762cc27b9b97 /fs/cifs/cifs_debug.c | |
parent | 07cc6cf9ef84bcf6a60ee513332bcb0ad5d628d8 (diff) |
[CIFS] Rename three structures to avoid camel case
secMode to sec_mode
and
cifsTconInfo to cifs_tcon
and
cifsSesInfo to cifs_ses
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifs_debug.c')
-rw-r--r-- | fs/cifs/cifs_debug.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/fs/cifs/cifs_debug.c b/fs/cifs/cifs_debug.c index 18f4272d9047..2fe3cf13b2e9 100644 --- a/fs/cifs/cifs_debug.c +++ b/fs/cifs/cifs_debug.c | |||
@@ -110,8 +110,8 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) | |||
110 | struct list_head *tmp1, *tmp2, *tmp3; | 110 | struct list_head *tmp1, *tmp2, *tmp3; |
111 | struct mid_q_entry *mid_entry; | 111 | struct mid_q_entry *mid_entry; |
112 | struct TCP_Server_Info *server; | 112 | struct TCP_Server_Info *server; |
113 | struct cifsSesInfo *ses; | 113 | struct cifs_ses *ses; |
114 | struct cifsTconInfo *tcon; | 114 | struct cifs_tcon *tcon; |
115 | int i, j; | 115 | int i, j; |
116 | __u32 dev_type; | 116 | __u32 dev_type; |
117 | 117 | ||
@@ -152,7 +152,7 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) | |||
152 | tcp_ses_list); | 152 | tcp_ses_list); |
153 | i++; | 153 | i++; |
154 | list_for_each(tmp2, &server->smb_ses_list) { | 154 | list_for_each(tmp2, &server->smb_ses_list) { |
155 | ses = list_entry(tmp2, struct cifsSesInfo, | 155 | ses = list_entry(tmp2, struct cifs_ses, |
156 | smb_ses_list); | 156 | smb_ses_list); |
157 | if ((ses->serverDomain == NULL) || | 157 | if ((ses->serverDomain == NULL) || |
158 | (ses->serverOS == NULL) || | 158 | (ses->serverOS == NULL) || |
@@ -171,7 +171,7 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) | |||
171 | seq_printf(m, "TCP status: %d\n\tLocal Users To " | 171 | seq_printf(m, "TCP status: %d\n\tLocal Users To " |
172 | "Server: %d SecMode: 0x%x Req On Wire: %d", | 172 | "Server: %d SecMode: 0x%x Req On Wire: %d", |
173 | server->tcpStatus, server->srv_count, | 173 | server->tcpStatus, server->srv_count, |
174 | server->secMode, | 174 | server->sec_mode, |
175 | atomic_read(&server->inFlight)); | 175 | atomic_read(&server->inFlight)); |
176 | 176 | ||
177 | #ifdef CONFIG_CIFS_STATS2 | 177 | #ifdef CONFIG_CIFS_STATS2 |
@@ -183,7 +183,7 @@ static int cifs_debug_data_proc_show(struct seq_file *m, void *v) | |||
183 | seq_puts(m, "\n\tShares:"); | 183 | seq_puts(m, "\n\tShares:"); |
184 | j = 0; | 184 | j = 0; |
185 | list_for_each(tmp3, &ses->tcon_list) { | 185 | list_for_each(tmp3, &ses->tcon_list) { |
186 | tcon = list_entry(tmp3, struct cifsTconInfo, | 186 | tcon = list_entry(tmp3, struct cifs_tcon, |
187 | tcon_list); | 187 | tcon_list); |
188 | ++j; | 188 | ++j; |
189 | dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType); | 189 | dev_type = le32_to_cpu(tcon->fsDevInfo.DeviceType); |
@@ -256,8 +256,8 @@ static ssize_t cifs_stats_proc_write(struct file *file, | |||
256 | int rc; | 256 | int rc; |
257 | struct list_head *tmp1, *tmp2, *tmp3; | 257 | struct list_head *tmp1, *tmp2, *tmp3; |
258 | struct TCP_Server_Info *server; | 258 | struct TCP_Server_Info *server; |
259 | struct cifsSesInfo *ses; | 259 | struct cifs_ses *ses; |
260 | struct cifsTconInfo *tcon; | 260 | struct cifs_tcon *tcon; |
261 | 261 | ||
262 | rc = get_user(c, buffer); | 262 | rc = get_user(c, buffer); |
263 | if (rc) | 263 | if (rc) |
@@ -273,11 +273,11 @@ static ssize_t cifs_stats_proc_write(struct file *file, | |||
273 | server = list_entry(tmp1, struct TCP_Server_Info, | 273 | server = list_entry(tmp1, struct TCP_Server_Info, |
274 | tcp_ses_list); | 274 | tcp_ses_list); |
275 | list_for_each(tmp2, &server->smb_ses_list) { | 275 | list_for_each(tmp2, &server->smb_ses_list) { |
276 | ses = list_entry(tmp2, struct cifsSesInfo, | 276 | ses = list_entry(tmp2, struct cifs_ses, |
277 | smb_ses_list); | 277 | smb_ses_list); |
278 | list_for_each(tmp3, &ses->tcon_list) { | 278 | list_for_each(tmp3, &ses->tcon_list) { |
279 | tcon = list_entry(tmp3, | 279 | tcon = list_entry(tmp3, |
280 | struct cifsTconInfo, | 280 | struct cifs_tcon, |
281 | tcon_list); | 281 | tcon_list); |
282 | atomic_set(&tcon->num_smbs_sent, 0); | 282 | atomic_set(&tcon->num_smbs_sent, 0); |
283 | atomic_set(&tcon->num_writes, 0); | 283 | atomic_set(&tcon->num_writes, 0); |
@@ -312,8 +312,8 @@ static int cifs_stats_proc_show(struct seq_file *m, void *v) | |||
312 | int i; | 312 | int i; |
313 | struct list_head *tmp1, *tmp2, *tmp3; | 313 | struct list_head *tmp1, *tmp2, *tmp3; |
314 | struct TCP_Server_Info *server; | 314 | struct TCP_Server_Info *server; |
315 | struct cifsSesInfo *ses; | 315 | struct cifs_ses *ses; |
316 | struct cifsTconInfo *tcon; | 316 | struct cifs_tcon *tcon; |
317 | 317 | ||
318 | seq_printf(m, | 318 | seq_printf(m, |
319 | "Resources in use\nCIFS Session: %d\n", | 319 | "Resources in use\nCIFS Session: %d\n", |
@@ -346,11 +346,11 @@ static int cifs_stats_proc_show(struct seq_file *m, void *v) | |||
346 | server = list_entry(tmp1, struct TCP_Server_Info, | 346 | server = list_entry(tmp1, struct TCP_Server_Info, |
347 | tcp_ses_list); | 347 | tcp_ses_list); |
348 | list_for_each(tmp2, &server->smb_ses_list) { | 348 | list_for_each(tmp2, &server->smb_ses_list) { |
349 | ses = list_entry(tmp2, struct cifsSesInfo, | 349 | ses = list_entry(tmp2, struct cifs_ses, |
350 | smb_ses_list); | 350 | smb_ses_list); |
351 | list_for_each(tmp3, &ses->tcon_list) { | 351 | list_for_each(tmp3, &ses->tcon_list) { |
352 | tcon = list_entry(tmp3, | 352 | tcon = list_entry(tmp3, |
353 | struct cifsTconInfo, | 353 | struct cifs_tcon, |
354 | tcon_list); | 354 | tcon_list); |
355 | i++; | 355 | i++; |
356 | seq_printf(m, "\n%d) %s", i, tcon->treeName); | 356 | seq_printf(m, "\n%d) %s", i, tcon->treeName); |