Delete unused 'time' fields from struct bio_job (#9622)

looks like this field was never actually used and the call to time() is excessive.
This commit is contained in:
menwen 2021-10-10 13:17:54 +08:00 committed by GitHub
parent b874c6f1fc
commit 7ff7536e2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -77,7 +77,6 @@ static unsigned long long bio_pending[BIO_NUM_OPS];
/* This structure represents a background Job. It is only used locally to this
* file as the API does not expose the internals at all. */
struct bio_job {
time_t time; /* Time at which the job was created. */
/* Job specific arguments.*/
int fd; /* Fd for file based background jobs */
lazy_free_fn *free_fn; /* Function that will free the provided arguments */
@ -127,7 +126,6 @@ void bioInit(void) {
}
void bioSubmitJob(int type, struct bio_job *job) {
job->time = time(NULL);
pthread_mutex_lock(&bio_mutex[type]);
listAddNodeTail(bio_jobs[type],job);
bio_pending[type]++;