forked from open-iscsi/tcmu-runner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tcmur_device.h
108 lines (79 loc) · 2.57 KB
/
tcmur_device.h
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
* Copyright (c) 2017 Red Hat, Inc.
*
* This file is licensed to you under your choice of the GNU Lesser
* General Public License, version 2.1 or any later version (LGPLv2.1 or
* later), or the Apache License 2.0.
*/
#ifndef __TCMUR_DEVICE_H
#define __TCMUR_DEVICE_H
#include "pthread.h"
#include "ccan/list/list.h"
#include "tcmur_aio.h"
#define TCMU_INVALID_LOCK_TAG USHRT_MAX
#define TCMUR_DEV_FLAG_FORMATTING (1 << 0)
#define TCMUR_DEV_FLAG_IN_RECOVERY (1 << 1)
#define TCMUR_DEV_FLAG_IS_OPEN (1 << 2)
#define TCMUR_DEV_FLAG_STOPPING (1 << 3)
#define TCMUR_DEV_FLAG_STOPPED (1 << 4)
#define TCMUR_UA_DEV_SIZE_CHANGED 0
enum {
TCMUR_DEV_FAILOVER_ALL_ACTIVE,
TCMUR_DEV_FAILOVER_IMPLICIT,
TCMUR_DEV_FAILOVER_EXPLICIT,
};
enum {
TCMUR_DEV_LOCK_UNKNOWN,
TCMUR_DEV_LOCK_UNLOCKED,
TCMUR_DEV_LOCK_READ_LOCKING,
TCMUR_DEV_LOCK_READ_LOCKED,
TCMUR_DEV_LOCK_WRITE_LOCKING,
TCMUR_DEV_LOCK_WRITE_LOCKED,
};
struct tcmur_work;
struct tcmur_device {
struct tcmu_device *dev;
void *hm_private;
pthread_t cmdproc_thread;
/* General lock for the members from "flags" to "pending_uas" */
pthread_mutex_t rdev_lock;
/* TCMUR_DEV flags */
uint32_t flags;
uint8_t failover_type;
struct list_node recovery_entry;
/* tcmur_event counters */
uint64_t lock_lost_cnt;
uint64_t conn_lost_cnt;
uint64_t cmd_timed_out_cnt;
struct tcmur_work *event_work;
bool lock_lost;
uint8_t lock_state;
int pending_uas;
/*
* lock order:
* work_queue->aio_lock
* track_queue->track_lock
*/
struct tcmu_io_queue work_queue;
struct tcmu_track_aio track_queue;
pthread_mutex_t caw_lock; /* for atomic CAW operation */
uint32_t format_progress;
pthread_mutex_t format_lock; /* for atomic format operations */
int cmd_time_out;
pthread_spinlock_t cmds_list_lock; /* protects cmds_list */
struct list_head cmds_list;
};
bool tcmu_dev_in_recovery(struct tcmu_device *dev);
void tcmu_cancel_recovery(struct tcmu_device *dev);
void tcmu_notify_conn_lost(struct tcmu_device *dev);
void tcmu_notify_lock_lost(struct tcmu_device *dev);
void tcmu_notify_cmd_timed_out(struct tcmu_device *dev);
int __tcmu_reopen_dev(struct tcmu_device *dev, int retries);
int tcmu_reopen_dev(struct tcmu_device *dev, int retries);
int tcmu_acquire_dev_lock(struct tcmu_device *dev, uint16_t tag);
void tcmu_release_dev_lock(struct tcmu_device *dev);
int tcmu_get_lock_tag(struct tcmu_device *dev, uint16_t *tag);
void tcmu_update_dev_lock_state(struct tcmu_device *dev);
void tcmur_dev_set_private(struct tcmu_device *dev, void *private);
void *tcmur_dev_get_private(struct tcmu_device *dev);
#endif