Commit 6c0f6218 authored by Steve French's avatar Steve French

[CIFS] Fix checkpatch warnings and bump cifs version number

Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent d3f1322a
...@@ -112,5 +112,5 @@ extern long cifs_ioctl(struct file *filep, unsigned int cmd, unsigned long arg); ...@@ -112,5 +112,5 @@ extern long cifs_ioctl(struct file *filep, unsigned int cmd, unsigned long arg);
extern const struct export_operations cifs_export_ops; extern const struct export_operations cifs_export_ops;
#endif /* EXPERIMENTAL */ #endif /* EXPERIMENTAL */
#define CIFS_VERSION "1.67" #define CIFS_VERSION "1.68"
#endif /* _CIFSFS_H */ #endif /* _CIFSFS_H */
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
* CIFS vfs client Status information (based on what we know.) * CIFS vfs client Status information (based on what we know.)
*/ */
/* associated with each tcp and smb session */ /* associated with each tcp and smb session */
enum statusEnum { enum statusEnum {
CifsNew = 0, CifsNew = 0,
CifsGood, CifsGood,
...@@ -395,7 +395,7 @@ struct cifsFileInfo { ...@@ -395,7 +395,7 @@ struct cifsFileInfo {
struct list_head llist; /* list of byte range locks we have. */ struct list_head llist; /* list of byte range locks we have. */
bool invalidHandle:1; /* file closed via session abend */ bool invalidHandle:1; /* file closed via session abend */
bool oplock_break_cancelled:1; bool oplock_break_cancelled:1;
int count; /* refcount -- protected by cifs_file_list_lock */ int count; /* refcount protected by cifs_file_list_lock */
struct mutex fh_mutex; /* prevents reopen race after dead ses*/ struct mutex fh_mutex; /* prevents reopen race after dead ses*/
struct cifs_search_info srch_inf; struct cifs_search_info srch_inf;
struct work_struct oplock_break; /* work for oplock breaks */ struct work_struct oplock_break; /* work for oplock breaks */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment