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/cifsfs.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/cifsfs.c')
-rw-r--r-- | fs/cifs/cifsfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 26981bf2cf3f..989442dcfb45 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c | |||
@@ -208,7 +208,7 @@ cifs_statfs(struct dentry *dentry, struct kstatfs *buf) | |||
208 | { | 208 | { |
209 | struct super_block *sb = dentry->d_sb; | 209 | struct super_block *sb = dentry->d_sb; |
210 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); | 210 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
211 | struct cifsTconInfo *tcon = cifs_sb_master_tcon(cifs_sb); | 211 | struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); |
212 | int rc = -EOPNOTSUPP; | 212 | int rc = -EOPNOTSUPP; |
213 | int xid; | 213 | int xid; |
214 | 214 | ||
@@ -361,7 +361,7 @@ static int | |||
361 | cifs_show_options(struct seq_file *s, struct vfsmount *m) | 361 | cifs_show_options(struct seq_file *s, struct vfsmount *m) |
362 | { | 362 | { |
363 | struct cifs_sb_info *cifs_sb = CIFS_SB(m->mnt_sb); | 363 | struct cifs_sb_info *cifs_sb = CIFS_SB(m->mnt_sb); |
364 | struct cifsTconInfo *tcon = cifs_sb_master_tcon(cifs_sb); | 364 | struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); |
365 | struct sockaddr *srcaddr; | 365 | struct sockaddr *srcaddr; |
366 | srcaddr = (struct sockaddr *)&tcon->ses->server->srcaddr; | 366 | srcaddr = (struct sockaddr *)&tcon->ses->server->srcaddr; |
367 | 367 | ||
@@ -461,7 +461,7 @@ cifs_show_options(struct seq_file *s, struct vfsmount *m) | |||
461 | static void cifs_umount_begin(struct super_block *sb) | 461 | static void cifs_umount_begin(struct super_block *sb) |
462 | { | 462 | { |
463 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); | 463 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
464 | struct cifsTconInfo *tcon; | 464 | struct cifs_tcon *tcon; |
465 | 465 | ||
466 | if (cifs_sb == NULL) | 466 | if (cifs_sb == NULL) |
467 | return; | 467 | return; |