diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-02-18 10:18:29 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-02-19 23:47:56 +0100 |
commit | ae1cb5ca04eb46d1112868bc80b459eb2a168920 (patch) | |
tree | b961343b5c4635c526840c6bfab1ac78a2d3da1b /source3/smbd | |
parent | 3ae2ed4504c81e197fab5804e9cde7ebeb34d5c2 (diff) | |
download | samba-ae1cb5ca04eb46d1112868bc80b459eb2a168920.tar.gz samba-ae1cb5ca04eb46d1112868bc80b459eb2a168920.tar.bz2 samba-ae1cb5ca04eb46d1112868bc80b459eb2a168920.zip |
s3:smbd: s/struct timed_event/struct tevent_timer
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/blocking.c | 2 | ||||
-rw-r--r-- | source3/smbd/fileio.c | 2 | ||||
-rw-r--r-- | source3/smbd/globals.h | 4 | ||||
-rw-r--r-- | source3/smbd/oplock.c | 2 | ||||
-rw-r--r-- | source3/smbd/process.c | 6 | ||||
-rw-r--r-- | source3/smbd/proto.h | 4 | ||||
-rw-r--r-- | source3/smbd/server.c | 4 | ||||
-rw-r--r-- | source3/smbd/smb2_create.c | 4 |
8 files changed, 14 insertions, 14 deletions
diff --git a/source3/smbd/blocking.c b/source3/smbd/blocking.c index 1bef73b697..4bd7a5732f 100644 --- a/source3/smbd/blocking.c +++ b/source3/smbd/blocking.c @@ -36,7 +36,7 @@ static void received_unlock_msg(struct messaging_context *msg, DATA_BLOB *data); void brl_timeout_fn(struct tevent_context *event_ctx, - struct timed_event *te, + struct tevent_timer *te, struct timeval now, void *private_data) { diff --git a/source3/smbd/fileio.c b/source3/smbd/fileio.c index 409924d384..96eb24b073 100644 --- a/source3/smbd/fileio.c +++ b/source3/smbd/fileio.c @@ -165,7 +165,7 @@ static int wcp_file_size_change(files_struct *fsp) } void update_write_time_handler(struct tevent_context *ctx, - struct timed_event *te, + struct tevent_timer *te, struct timeval now, void *private_data) { diff --git a/source3/smbd/globals.h b/source3/smbd/globals.h index 90e9ab4dd7..4b0165b673 100644 --- a/source3/smbd/globals.h +++ b/source3/smbd/globals.h @@ -725,7 +725,7 @@ struct smbd_server_connection { struct blocking_lock_record *blocking_lock_cancelled_queue; /* The event that makes us process our blocking lock queue */ - struct timed_event *brl_timeout; + struct tevent_timer *brl_timeout; bool blocking_lock_unlock_state; bool blocking_lock_cancel_state; @@ -738,7 +738,7 @@ struct smbd_server_connection { bool negprot_2ff; struct { /* The event that makes us process our blocking lock queue */ - struct timed_event *brl_timeout; + struct tevent_timer *brl_timeout; bool blocking_lock_unlock_state; } locks; struct smbd_smb2_request *requests; diff --git a/source3/smbd/oplock.c b/source3/smbd/oplock.c index 6245817fd3..f44711323f 100644 --- a/source3/smbd/oplock.c +++ b/source3/smbd/oplock.c @@ -321,7 +321,7 @@ static files_struct *initial_break_processing( } static void oplock_timeout_handler(struct tevent_context *ctx, - struct timed_event *te, + struct tevent_timer *te, struct timeval now, void *private_data) { diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 73f68c02ec..0d98a2f2f8 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -46,7 +46,7 @@ struct pending_message_list { struct pending_message_list *next, *prev; struct timeval request_time; /* When was this first issued? */ struct smbd_server_connection *sconn; - struct timed_event *te; + struct tevent_timer *te; struct smb_perfcount_data pcd; uint32_t seqnum; bool encrypted; @@ -582,7 +582,7 @@ static void process_smb(struct smbd_server_connection *conn, struct smb_perfcount_data *deferred_pcd); static void smbd_deferred_open_timer(struct tevent_context *ev, - struct timed_event *te, + struct tevent_timer *te, struct timeval _tval, void *private_data) { @@ -735,7 +735,7 @@ bool schedule_deferred_open_message_smb(struct smbd_server_connection *sconn, (unsigned long long)msg_mid )); if (mid == msg_mid) { - struct timed_event *te; + struct tevent_timer *te; if (pml->processed) { /* A processed message should not be diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h index 6588f30e95..bd22dd3b59 100644 --- a/source3/smbd/proto.h +++ b/source3/smbd/proto.h @@ -93,7 +93,7 @@ bool cancel_smb2_aio(struct smb_request *smbreq); /* The following definitions come from smbd/blocking.c */ void brl_timeout_fn(struct tevent_context *event_ctx, - struct timed_event *te, + struct tevent_timer *te, struct timeval now, void *private_data); struct timeval timeval_brl_min(const struct timeval *tv1, @@ -315,7 +315,7 @@ NTSTATUS can_set_delete_on_close(files_struct *fsp, uint32 dosmode); ssize_t read_file(files_struct *fsp,char *data,off_t pos,size_t n); void update_write_time_handler(struct tevent_context *ctx, - struct timed_event *te, + struct tevent_timer *te, struct timeval now, void *private_data); void trigger_write_time_update(struct files_struct *fsp); diff --git a/source3/smbd/server.c b/source3/smbd/server.c index b8c876750d..2b8e3f72f2 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -62,7 +62,7 @@ struct smbd_parent_context { struct smbd_child_pid *children; size_t num_children; - struct timed_event *cleanup_te; + struct tevent_timer *cleanup_te; }; struct smbd_open_socket { @@ -395,7 +395,7 @@ static void add_child_pid(struct smbd_parent_context *parent, */ static void cleanup_timeout_fn(struct tevent_context *event_ctx, - struct timed_event *te, + struct tevent_timer *te, struct timeval now, void *private_data) { diff --git a/source3/smbd/smb2_create.c b/source3/smbd/smb2_create.c index 3fe901d2a2..c239ccb143 100644 --- a/source3/smbd/smb2_create.c +++ b/source3/smbd/smb2_create.c @@ -378,7 +378,7 @@ struct smbd_smb2_create_state { struct smbd_smb2_request *smb2req; struct smb_request *smb1req; bool open_was_deferred; - struct timed_event *te; + struct tevent_timer *te; struct tevent_immediate *im; struct timeval request_time; struct file_id id; @@ -1344,7 +1344,7 @@ bool schedule_deferred_open_message_smb2( *********************************************************/ static void smb2_deferred_open_timer(struct tevent_context *ev, - struct timed_event *te, + struct tevent_timer *te, struct timeval _tval, void *private_data) { |