aboutsummaryrefslogtreecommitdiffstats
path: root/tools/blktap/drivers/tapaio.h
blob: 27d38815345794c0be97c8ed2a930c4a46d41bd1 (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
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) 2006 Andrew Warfield and Julian Chesterfield
 * Copyright (c) 2007 Red Hat, Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation; or, when distributed
 * separately from the Linux kernel or incorporated into other
 * software packages, subject to the following license:
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this source file (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use, copy, modify,
 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
 * and to permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 */

#ifndef __TAPAIO_H__
#define __TAPAIO_H__

#include <pthread.h>
#include <libaio.h>
#include <stdint.h>

#include "tapdisk.h"

#define IOCB_IDX(_ctx, _io) ((_io) - (_ctx)->iocb_list)

struct tap_aio_internal_context {
        io_context_t     aio_ctx;

        struct io_event *aio_events;
        int              max_aio_events;

        pthread_t        aio_thread;
        int              command_fd[2];
        int              completion_fd[2];
        int              pollfd;
        unsigned int     poll_in_thread : 1;
};
	

typedef struct tap_aio_internal_context tap_aio_internal_context_t;


struct pending_aio {
	td_callback_t cb;
	int id;
	void *private;
	int nb_sectors;
	char *buf;
	uint64_t sector;
};

	
struct tap_aio_context {
	tap_aio_internal_context_t    aio_ctx;

	int                  max_aio_reqs;
	struct iocb         *iocb_list;
	struct iocb        **iocb_free;
	struct pending_aio  *pending_aio;
	int                  iocb_free_count;
	struct iocb        **iocb_queue;
	int	             iocb_queued;
	struct io_event     *aio_events;

	/* Locking bitmap for AIO reads/writes */
	uint8_t *sector_lock;		   
};

typedef struct tap_aio_context tap_aio_context_t;

void tap_aio_continue   (tap_aio_internal_context_t *ctx);
int  tap_aio_get_events (tap_aio_internal_context_t *ctx);
int  tap_aio_more_events(tap_aio_internal_context_t *ctx);


int tap_aio_init(tap_aio_context_t *ctx, uint64_t sectors,
		int max_aio_reqs);
void tap_aio_free(tap_aio_context_t *ctx);

int tap_aio_can_lock(tap_aio_context_t *ctx, uint64_t sector);
int tap_aio_lock(tap_aio_context_t *ctx, uint64_t sector);
void tap_aio_unlock(tap_aio_context_t *ctx, uint64_t sector);


int tap_aio_read(tap_aio_context_t *ctx, int fd, int size, 
		uint64_t offset, char *buf, td_callback_t cb,
		int id, uint64_t sector, void *private);
int tap_aio_write(tap_aio_context_t *ctx, int fd, int size,
		uint64_t offset, char *buf, td_callback_t cb,
		int id, uint64_t sector, void *private);
int tap_aio_submit(tap_aio_context_t *ctx);

#endif /* __TAPAIO_H__ */