diff options
author | Anand Avati <avati@gluster.com> | 2009-11-13 02:58:25 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-11-13 02:13:20 -0800 |
commit | 590e5879f819018aee63b800b0f66fd6ff49641d (patch) | |
tree | 25cddbfbd7bb428a19096517e5eaeb142b33e80b /xlators/protocol/client/src/client-protocol.h | |
parent | 63ece0f8bc81c2ec145465ff132a18ca47e50be5 (diff) |
protocol/client: whitespace cleanup
Signed-off-by: Anand V. Avati <avati@blackhole.gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 170 (Auto-heal fails on files that are open()-ed/mmap()-ed)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=170
Diffstat (limited to 'xlators/protocol/client/src/client-protocol.h')
-rw-r--r-- | xlators/protocol/client/src/client-protocol.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/xlators/protocol/client/src/client-protocol.h b/xlators/protocol/client/src/client-protocol.h index 2b35b60aabf..779711b1004 100644 --- a/xlators/protocol/client/src/client-protocol.h +++ b/xlators/protocol/client/src/client-protocol.h @@ -38,15 +38,15 @@ #define CLIENT_CONF(this) ((client_conf_t *)(this->private)) -#define RECEIVE_TIMEOUT(_cprivate,_current) \ - ((_cprivate->last_received.tv_sec + \ - _cprivate->frame_timeout) < \ - _current.tv_sec) +#define RECEIVE_TIMEOUT(_cprivate,_current) \ + ((_cprivate->last_received.tv_sec + \ + _cprivate->frame_timeout) < \ + _current.tv_sec) -#define SEND_TIMEOUT(_cprivate,_current) \ - ((_cprivate->last_sent.tv_sec + \ - _cprivate->frame_timeout) < \ - _current.tv_sec) +#define SEND_TIMEOUT(_cprivate,_current) \ + ((_cprivate->last_sent.tv_sec + \ + _cprivate->frame_timeout) < \ + _current.tv_sec) enum { CHANNEL_BULK = 0, @@ -65,15 +65,15 @@ typedef struct client_connection client_connection_t; #include "protocol.h" typedef struct _client_fd_ctx { - int remote_fd; - struct list_head sfd_pos; /* Stores the reference to this - fd's position in the saved_fds list. - */ - fd_t *fd; /* Reverse reference to the fd itself. + int remote_fd; + struct list_head sfd_pos; /* Stores the reference to this + fd's position in the saved_fds list. + */ + fd_t *fd; /* Reverse reference to the fd itself. This is needed to delete this fdctx from the fd's context in protocol_client_mark_fd_bad. - */ + */ } client_fd_ctx_t; struct _client_conf { @@ -146,7 +146,7 @@ gf_string_to_stat(char *string, struct stat *stbuf) &mtime_nsec, &ctime, &ctime_nsec); - + stbuf->st_dev = dev; stbuf->st_ino = ino; stbuf->st_mode = mode; @@ -157,11 +157,11 @@ gf_string_to_stat(char *string, struct stat *stbuf) stbuf->st_size = size; stbuf->st_blksize = blksize; stbuf->st_blocks = blocks; - + stbuf->st_atime = atime; stbuf->st_mtime = mtime; stbuf->st_ctime = ctime; - + ST_ATIM_NSEC_SET(stbuf, atime_nsec); ST_MTIM_NSEC_SET(stbuf, mtime_nsec); ST_CTIM_NSEC_SET(stbuf, ctime_nsec); |