mirror of
https://github.com/samba-team/samba.git
synced 2025-03-24 10:50:22 +03:00
smbd: make it possible to change the write time delay for testing
metze (This used to be commit df8c100c2b53575a0d425a2daf52e2d59904746a)
This commit is contained in:
parent
19f49de92e
commit
206e7eeb6f
@ -233,6 +233,9 @@
|
||||
/* Number of microseconds to wait before a sharing violation. */
|
||||
#define SHARING_VIOLATION_USEC_WAIT 950000
|
||||
|
||||
/* Number of microseconds to wait before a updating the write time (2 secs). */
|
||||
#define WRITE_TIME_UPDATE_USEC_DELAY 2000000
|
||||
|
||||
#define MAX_LDAP_REPLICATION_SLEEP_TIME 5000 /* In milliseconds. */
|
||||
|
||||
/* tdb hash size for the open database. */
|
||||
|
@ -188,6 +188,8 @@ static void update_write_time_handler(struct event_context *ctx,
|
||||
|
||||
void trigger_write_time_update(struct files_struct *fsp)
|
||||
{
|
||||
int delay;
|
||||
|
||||
if (fsp->write_time_forced) {
|
||||
return;
|
||||
}
|
||||
@ -197,11 +199,15 @@ void trigger_write_time_update(struct files_struct *fsp)
|
||||
}
|
||||
fsp->update_write_time_triggered = true;
|
||||
|
||||
delay = lp_parm_int(SNUM(fsp->conn),
|
||||
"smbd", "writetimeupdatedelay",
|
||||
WRITE_TIME_UPDATE_USEC_DELAY);
|
||||
|
||||
/* trigger the update 2 seconds later */
|
||||
fsp->update_write_time_on_close = true;
|
||||
fsp->update_write_time_event =
|
||||
event_add_timed(smbd_event_context(), NULL,
|
||||
timeval_current_ofs(2, 0),
|
||||
timeval_current_ofs(0, delay),
|
||||
"update_write_time_handler",
|
||||
update_write_time_handler, fsp);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user