forked from open-iscsi/tcmu-runner
-
Notifications
You must be signed in to change notification settings - Fork 2
/
libtcmu_priv.h
71 lines (54 loc) · 1.48 KB
/
libtcmu_priv.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
/*
* Copyright (c) 2014 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.
*/
/*
* This header defines structures private to libtcmu, and should not
* be used by anyone else.
*/
#ifndef __LIBTCMU_PRIV_H
#define __LIBTCMU_PRIV_H
#include <stdbool.h>
#include <stdint.h>
#include <gio/gio.h>
#include <pthread.h>
#include "darray.h"
#define KERN_IFACE_VER 2
// The full (private) declaration
struct tcmulib_context {
darray(struct tcmulib_handler) handlers;
/* Just keep ptrs b/c we hand these to clients */
darray(struct tcmu_device*) devices;
struct nl_sock *nl_sock;
GDBusConnection *connection;
};
struct tcmu_device {
int fd;
struct tcmu_mailbox *map;
size_t map_len;
uint32_t cmd_tail;
uint64_t num_lbas;
uint32_t block_size;
uint32_t block_size_shift;
uint32_t max_xfer_len;
uint32_t opt_xcopy_rw_len;
bool split_unmaps;
uint32_t max_unmap_len;
uint32_t opt_unmap_gran;
uint32_t unmap_gran_align;
unsigned int write_cache_enabled:1;
unsigned int solid_state_media:1;
unsigned int unmap_enabled:1;
unsigned int write_protect_enabled:1;
char dev_name[16]; /* e.g. "uio14" */
char tcm_hba_name[16]; /* e.g. "user_8" */
char tcm_dev_name[128]; /* e.g. "backup2" */
char cfgstring[PATH_MAX];
struct tcmulib_handler *handler;
struct tcmulib_context *ctx;
void *hm_private; /* private ptr for handler module */
};
#endif