diff options
author | Pavel Shilovsky <pshilovsky@samba.org> | 2012-05-25 14:47:16 +0400 |
---|---|---|
committer | Pavel Shilovsky <pshilovsky@samba.org> | 2012-07-24 21:55:15 +0400 |
commit | f6d7617862e106affc59c6933099e45629af5c4e (patch) | |
tree | e2e6ff0197e1adddb99079580db191955610cf54 /fs/cifs/cifsglob.h | |
parent | c95b8eeda3efcb419ea0a3f864cf99e32c038c21 (diff) | |
download | talos-obmc-linux-f6d7617862e106affc59c6933099e45629af5c4e.tar.gz talos-obmc-linux-f6d7617862e106affc59c6933099e45629af5c4e.zip |
CIFS: Move echo code to osp struct
Signed-off-by: Pavel Shilovsky <pshilovsky@samba.org>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r-- | fs/cifs/cifsglob.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 5e4d1c56767d..0c53a8339253 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -234,6 +234,10 @@ struct smb_version_operations { /* build a full path to the root of the mount */ char * (*build_path_to_root)(struct smb_vol *, struct cifs_sb_info *, struct cifs_tcon *); + /* check if we can send an echo or nor */ + bool (*can_echo)(struct TCP_Server_Info *); + /* send echo request */ + int (*echo)(struct TCP_Server_Info *); }; struct smb_version_values { |