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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
// SPDX-License-Identifier: GPL-2.0
/*
* virtio_pmem.c: Virtio pmem Driver
*
* Discovers persistent memory range information
* from host and provides a virtio based flushing
* interface.
*/
#include "virtio_pmem.h"
#include "nd.h"
struct virtio_pmem_flush_work {
struct work_struct work;
struct nd_region *nd_region;
struct bio *bio;
};
static void virtio_pmem_req_release(struct kref *kref)
{
struct virtio_pmem_request *req;
req = container_of(kref, struct virtio_pmem_request, kref);
kfree(req);
}
static void virtio_pmem_signal_done(struct virtio_pmem_request *req)
{
/* Pairs with smp_load_acquire() in virtio_pmem_req_done(). */
smp_store_release(&req->done, true);
wake_up(&req->host_acked);
}
static bool virtio_pmem_req_done(struct virtio_pmem_request *req)
{
/* Pairs with smp_store_release() in virtio_pmem_signal_done(). */
return smp_load_acquire(&req->done);
}
static void virtio_pmem_complete_err(struct virtio_pmem_request *req)
{
req->resp.ret = cpu_to_le32(1);
virtio_pmem_signal_done(req);
}
static void virtio_pmem_wake_one_waiter(struct virtio_pmem *vpmem)
{
struct virtio_pmem_request *req_buf;
if (list_empty(&vpmem->req_list))
return;
req_buf = list_first_entry(&vpmem->req_list,
struct virtio_pmem_request, list);
list_del_init(&req_buf->list);
WRITE_ONCE(req_buf->wq_buf_avail, true);
wake_up(&req_buf->wq_buf);
}
static void virtio_pmem_wake_all_waiters(struct virtio_pmem *vpmem)
{
struct virtio_pmem_request *req, *tmp;
list_for_each_entry_safe(req, tmp, &vpmem->req_list, list) {
list_del_init(&req->list);
WRITE_ONCE(req->wq_buf_avail, true);
wake_up(&req->wq_buf);
}
}
static void virtio_pmem_clear_inflight(struct virtio_pmem *vpmem,
struct virtio_pmem_request *req)
{
if (vpmem->req_inflight == req)
vpmem->req_inflight = NULL;
}
static void virtio_pmem_wake_inflight(struct virtio_pmem *vpmem)
{
struct virtio_pmem_request *req = vpmem->req_inflight;
if (req)
wake_up(&req->host_acked);
}
void virtio_pmem_mark_broken(struct virtio_pmem *vpmem)
{
if (!READ_ONCE(vpmem->broken)) {
WRITE_ONCE(vpmem->broken, true);
dev_err_once(&vpmem->vdev->dev, "virtqueue is broken\n");
}
virtio_pmem_wake_inflight(vpmem);
virtio_pmem_wake_all_waiters(vpmem);
}
EXPORT_SYMBOL_GPL(virtio_pmem_mark_broken);
void virtio_pmem_drain(struct virtio_pmem *vpmem)
{
struct virtio_pmem_request *req;
unsigned int len;
if (!vpmem->req_vq)
return;
while ((req = virtqueue_get_buf(vpmem->req_vq, &len)) != NULL) {
virtio_pmem_clear_inflight(vpmem, req);
virtio_pmem_complete_err(req);
kref_put(&req->kref, virtio_pmem_req_release);
}
while ((req = virtqueue_detach_unused_buf(vpmem->req_vq)) != NULL) {
virtio_pmem_clear_inflight(vpmem, req);
virtio_pmem_complete_err(req);
kref_put(&req->kref, virtio_pmem_req_release);
}
}
EXPORT_SYMBOL_GPL(virtio_pmem_drain);
/* The interrupt handler */
void virtio_pmem_host_ack(struct virtqueue *vq)
{
struct virtio_pmem *vpmem = vq->vdev->priv;
struct virtio_pmem_request *req_data;
unsigned long flags;
unsigned int len;
spin_lock_irqsave(&vpmem->pmem_lock, flags);
while ((req_data = virtqueue_get_buf(vq, &len)) != NULL) {
virtio_pmem_clear_inflight(vpmem, req_data);
virtio_pmem_wake_one_waiter(vpmem);
if (READ_ONCE(vpmem->broken))
virtio_pmem_complete_err(req_data);
else
virtio_pmem_signal_done(req_data);
kref_put(&req_data->kref, virtio_pmem_req_release);
}
spin_unlock_irqrestore(&vpmem->pmem_lock, flags);
}
EXPORT_SYMBOL_GPL(virtio_pmem_host_ack);
/* The request submission function */
static int virtio_pmem_flush(struct nd_region *nd_region)
{
struct virtio_device *vdev = nd_region->provider_data;
struct virtio_pmem *vpmem = vdev->priv;
struct virtio_pmem_request *req_data;
struct scatterlist *sgs[2], sg, ret;
unsigned long flags;
int err, err1;
guard(mutex)(&vpmem->flush_lock);
/*
* Don't bother to submit the request to the device if the device is
* not activated.
*/
if (vdev->config->get_status(vdev) & VIRTIO_CONFIG_S_NEEDS_RESET) {
dev_info(&vdev->dev, "virtio pmem device needs a reset\n");
return -EIO;
}
if (READ_ONCE(vpmem->broken))
return -EIO;
req_data = kmalloc_obj(*req_data, GFP_NOIO);
if (!req_data)
return -ENOMEM;
kref_init(&req_data->kref);
WRITE_ONCE(req_data->done, false);
init_waitqueue_head(&req_data->host_acked);
init_waitqueue_head(&req_data->wq_buf);
INIT_LIST_HEAD(&req_data->list);
req_data->req.type = cpu_to_le32(VIRTIO_PMEM_REQ_TYPE_FLUSH);
sg_init_one(&sg, &req_data->req, sizeof(req_data->req));
sgs[0] = &sg;
sg_init_one(&ret, &req_data->resp.ret, sizeof(req_data->resp));
sgs[1] = &ret;
spin_lock_irqsave(&vpmem->pmem_lock, flags);
/*
* If virtqueue_add_sgs returns -ENOSPC then req_vq virtual
* queue does not have free descriptor. We add the request
* to req_list and wait for host_ack to wake us up when free
* slots are available.
*/
for (;;) {
if (READ_ONCE(vpmem->broken)) {
err = -EIO;
break;
}
err = virtqueue_add_sgs(vpmem->req_vq, sgs, 1, 1, req_data,
GFP_ATOMIC);
if (!err) {
/*
* Take the virtqueue reference while @pmem_lock is
* held so completion cannot run concurrently.
*/
kref_get(&req_data->kref);
vpmem->req_inflight = req_data;
break;
}
if (err != -ENOSPC)
break;
dev_info_ratelimited(&vdev->dev,
"failed to send command to virtio pmem device, no free slots in the virtqueue\n");
WRITE_ONCE(req_data->wq_buf_avail, false);
list_add_tail(&req_data->list, &vpmem->req_list);
spin_unlock_irqrestore(&vpmem->pmem_lock, flags);
/* A host response results in "host_ack" getting called */
wait_event(req_data->wq_buf,
READ_ONCE(req_data->wq_buf_avail) ||
READ_ONCE(vpmem->broken));
spin_lock_irqsave(&vpmem->pmem_lock, flags);
if (READ_ONCE(vpmem->broken))
break;
}
if (READ_ONCE(vpmem->broken))
err = -EIO;
if (err == -EIO || virtqueue_is_broken(vpmem->req_vq))
virtio_pmem_mark_broken(vpmem);
err1 = true;
if (!err && !READ_ONCE(vpmem->broken)) {
err1 = virtqueue_kick(vpmem->req_vq);
if (!err1)
virtio_pmem_mark_broken(vpmem);
}
spin_unlock_irqrestore(&vpmem->pmem_lock, flags);
/*
* virtqueue_add_sgs failed with error different than -ENOSPC, we can't
* do anything about that.
*/
if (READ_ONCE(vpmem->broken) || err || !err1) {
dev_info(&vdev->dev, "failed to send command to virtio pmem device\n");
err = -EIO;
} else {
/* A host response results in "host_ack" getting called */
wait_event(req_data->host_acked,
virtio_pmem_req_done(req_data) ||
READ_ONCE(vpmem->broken));
if (virtio_pmem_req_done(req_data))
err = le32_to_cpu(req_data->resp.ret);
else
err = -EIO;
}
kref_put(&req_data->kref, virtio_pmem_req_release);
return err;
};
static void virtio_pmem_flush_work(struct work_struct *work)
{
struct virtio_pmem_flush_work *flush;
int err;
flush = container_of(work, struct virtio_pmem_flush_work, work);
err = virtio_pmem_flush(flush->nd_region);
if (err > 0)
err = -EIO;
if (err)
flush->bio->bi_status = errno_to_blk_status(err);
bio_endio(flush->bio);
kfree(flush);
}
/* The asynchronous flush callback function */
int async_pmem_flush(struct nd_region *nd_region, struct bio *bio)
{
struct virtio_device *vdev = nd_region->provider_data;
struct virtio_pmem *vpmem = vdev->priv;
struct virtio_pmem_flush_work *flush;
unsigned long flags;
int err;
if (bio && bio->bi_iter.bi_sector != -1) {
flush = kmalloc_obj(*flush, GFP_NOIO);
if (!flush)
return -ENOMEM;
INIT_WORK(&flush->work, virtio_pmem_flush_work);
flush->nd_region = nd_region;
flush->bio = bio;
spin_lock_irqsave(&vpmem->pmem_lock, flags);
if (READ_ONCE(vpmem->broken)) {
spin_unlock_irqrestore(&vpmem->pmem_lock, flags);
kfree(flush);
return -EIO;
}
queue_work(vpmem->flush_wq, &flush->work);
spin_unlock_irqrestore(&vpmem->pmem_lock, flags);
return NVDIMM_FLUSH_ASYNC;
}
err = virtio_pmem_flush(nd_region);
if (err > 0)
return -EIO;
return err;
};
EXPORT_SYMBOL_GPL(async_pmem_flush);
MODULE_DESCRIPTION("Virtio Persistent Memory Driver");
MODULE_LICENSE("GPL");
|