aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/drbd/drbd_int.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/block/drbd/drbd_int.h')
-rw-r--r--drivers/block/drbd/drbd_int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/block/drbd/drbd_int.h b/drivers/block/drbd/drbd_int.h
index 37380d2c869..45d9a4534c4 100644
--- a/drivers/block/drbd/drbd_int.h
+++ b/drivers/block/drbd/drbd_int.h
@@ -552,7 +552,7 @@ struct p_delay_probe {
552 552
553struct delay_probe { 553struct delay_probe {
554 struct list_head list; 554 struct list_head list;
555 int seq_num; 555 unsigned int seq_num;
556 struct timeval time; 556 struct timeval time;
557}; 557};
558 558
@@ -1048,9 +1048,9 @@ struct drbd_conf {
1048 char congestion_reason; /* Why we where congested... */ 1048 char congestion_reason; /* Why we where congested... */
1049 struct list_head delay_probes; /* protected by peer_seq_lock */ 1049 struct list_head delay_probes; /* protected by peer_seq_lock */
1050 int data_delay; /* Delay of packets on the data-sock behind meta-sock */ 1050 int data_delay; /* Delay of packets on the data-sock behind meta-sock */
1051 atomic_t delay_seq; /* To generate sequence numbers of delay probes */ 1051 unsigned int delay_seq; /* To generate sequence numbers of delay probes */
1052 struct timeval dps_time; /* delay-probes-start-time */ 1052 struct timeval dps_time; /* delay-probes-start-time */
1053 int dp_volume_last; /* send_cnt of last delay probe */ 1053 unsigned int dp_volume_last; /* send_cnt of last delay probe */
1054 int c_sync_rate; /* current resync rate after delay_probe magic */ 1054 int c_sync_rate; /* current resync rate after delay_probe magic */
1055}; 1055};
1056 1056