blob: 02bd0fab04e99a7a895cf8e2f4f054d6be825e30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/*
Copyright (c) 2016 Red Hat, Inc. <http://www.redhat.com>
This file is part of GlusterFS.
This file is licensed to you under your choice of the GNU Lesser
General Public License, version 3 or any later version (LGPLv3 or
later), or the GNU General Public License, version 2 (GPLv2), in all
cases as published by the Free Software Foundation.
*/
#ifndef __BIT_ROT_SCRUB_STATUS_H__
#define __BIT_ROT_SCRUB_STATUS_H__
#include <stdint.h>
#include <sys/time.h>
#include <pthread.h>
struct br_scrub_stats {
uint64_t scrubbed_files; /* Total number of scrubbed file */
uint64_t unsigned_files; /* Total number of unsigned file */
uint64_t scrub_duration; /* Duration of last scrub */
char last_scrub_time[1024]; /*last scrub completion time */
struct timeval scrub_start_tv; /* Scrubbing starting time*/
struct timeval scrub_end_tv; /* Scrubbing finishing time */
int8_t scrub_running; /* Scrub running or not */
pthread_mutex_t lock;
};
typedef struct br_scrub_stats br_scrub_stats_t;
void
br_inc_unsigned_file_count (br_scrub_stats_t *scrub_stat);
void
br_inc_scrubbed_file (br_scrub_stats_t *scrub_stat);
void
br_update_scrub_start_time (br_scrub_stats_t *scrub_stat, struct timeval *tv);
void
br_update_scrub_finish_time (br_scrub_stats_t *scrub_stat, char *timestr,
struct timeval *tv);
#endif /* __BIT_ROT_SCRUB_STATUS_H__ */
|