blob: df3a50227625eba5ab8d2dd74a6708fcc6a99768 [file] [log] [blame]
Alex Eldere88afa52014-10-01 21:54:15 -05001/*
2 * Greybus operations
3 *
4 * Copyright 2014 Google Inc.
5 *
6 * Released under the GPLv2 only.
7 */
8
9#include <linux/kernel.h>
10#include <linux/slab.h>
11#include <linux/module.h>
12#include <linux/workqueue.h>
13
14#include "greybus.h"
15
16/*
Alex Elder22b320f2014-10-16 06:35:31 -050017 * The top bit of the type in an operation message header indicates
18 * whether the message is a request (bit clear) or response (bit set)
19 */
20#define GB_OPERATION_TYPE_RESPONSE 0x80
21
Alex Eldere816e372014-10-22 02:04:28 -050022#define CONNECTION_TIMEOUT_DEFAULT 1000 /* milliseconds */
23
Alex Elder22b320f2014-10-16 06:35:31 -050024/*
Alex Elderd90c25b2014-10-16 06:35:33 -050025 * XXX This needs to be coordinated with host driver parameters
26 */
27#define GB_OPERATION_MESSAGE_SIZE_MAX 4096
28
Alex Elder5b3db0d2014-10-20 10:27:56 -050029static struct kmem_cache *gb_operation_cache;
30
Alex Elder2eb585f2014-10-16 06:35:34 -050031/* Workqueue to handle Greybus operation completions. */
32static struct workqueue_struct *gb_operation_recv_workqueue;
33
Alex Elderd90c25b2014-10-16 06:35:33 -050034/*
Alex Eldere88afa52014-10-01 21:54:15 -050035 * All operation messages (both requests and responses) begin with
36 * a common header that encodes the size of the data (header
37 * included). This header also contains a unique identifier, which
38 * is used to keep track of in-flight operations. Finally, the
39 * header contains a operation type field, whose interpretation is
40 * dependent on what type of device lies on the other end of the
41 * connection. Response messages are distinguished from request
42 * messages by setting the high bit (0x80) in the operation type
43 * value.
44 *
45 * The wire format for all numeric fields in the header is little
46 * endian. Any operation-specific data begins immediately after the
47 * header, and is 64-bit aligned.
48 */
49struct gb_operation_msg_hdr {
50 __le16 size; /* Size in bytes of header + payload */
51 __le16 id; /* Operation unique id */
52 __u8 type; /* E.g GB_I2C_TYPE_* or GB_GPIO_TYPE_* */
53 /* 3 bytes pad, must be zero (ignore when read) */
54} __aligned(sizeof(u64));
55
56/* XXX Could be per-host device, per-module, or even per-connection */
57static DEFINE_SPINLOCK(gb_operations_lock);
58
Alex Elder84d148b2014-10-16 06:35:32 -050059static void gb_operation_insert(struct gb_operation *operation)
60{
61 struct gb_connection *connection = operation->connection;
62 struct rb_root *root = &connection->pending;
63 struct rb_node *node = &operation->node;
64 struct rb_node **link = &root->rb_node;
65 struct rb_node *above = NULL;
66 struct gb_operation_msg_hdr *header;
Alex Eldere816e372014-10-22 02:04:28 -050067 unsigned long timeout;
68 bool start_timer;
Alex Elder84d148b2014-10-16 06:35:32 -050069 __le16 wire_id;
70
71 /*
72 * Assign the operation's id, and store it in the header of
73 * both request and response message headers.
74 */
75 operation->id = gb_connection_operation_id(connection);
76 wire_id = cpu_to_le16(operation->id);
77 header = operation->request->transfer_buffer;
78 header->id = wire_id;
79
80 /* OK, insert the operation into its connection's tree */
81 spin_lock_irq(&gb_operations_lock);
82
Alex Eldere816e372014-10-22 02:04:28 -050083 /*
84 * We impose a time limit for requests to complete. If
85 * there are no requests pending there is no need for a
86 * timer. So if this will be the only one in flight we'll
87 * need to start the timer. Otherwise we just update the
88 * existing one to give this request a full timeout period
89 * to complete.
90 */
91 start_timer = RB_EMPTY_ROOT(root);
92
Alex Elder84d148b2014-10-16 06:35:32 -050093 while (*link) {
94 struct gb_operation *other;
95
96 above = *link;
97 other = rb_entry(above, struct gb_operation, node);
98 header = other->request->transfer_buffer;
99 if (other->id > operation->id)
100 link = &above->rb_left;
101 else if (other->id < operation->id)
102 link = &above->rb_right;
103 }
104 rb_link_node(node, above, link);
105 rb_insert_color(node, root);
Alex Elder84d148b2014-10-16 06:35:32 -0500106 spin_unlock_irq(&gb_operations_lock);
Alex Eldere816e372014-10-22 02:04:28 -0500107
108 timeout = msecs_to_jiffies(CONNECTION_TIMEOUT_DEFAULT);
109 if (start_timer)
110 schedule_delayed_work(&connection->timeout_work, timeout);
111 else
112 mod_delayed_work(system_wq, &connection->timeout_work, timeout);
Alex Elder84d148b2014-10-16 06:35:32 -0500113}
114
115static void gb_operation_remove(struct gb_operation *operation)
116{
Alex Eldere816e372014-10-22 02:04:28 -0500117 struct gb_connection *connection = operation->connection;
118 bool last_pending;
119
Alex Elder84d148b2014-10-16 06:35:32 -0500120 spin_lock_irq(&gb_operations_lock);
Alex Eldere816e372014-10-22 02:04:28 -0500121 rb_erase(&operation->node, &connection->pending);
122 last_pending = RB_EMPTY_ROOT(&connection->pending);
Alex Elder84d148b2014-10-16 06:35:32 -0500123 spin_unlock_irq(&gb_operations_lock);
Alex Eldere816e372014-10-22 02:04:28 -0500124
125 /*
126 * If there are no more pending requests, we can stop the
127 * timeout timer.
128 */
129 if (last_pending)
130 cancel_delayed_work(&connection->timeout_work);
Alex Elder84d148b2014-10-16 06:35:32 -0500131}
132
133static struct gb_operation *
134gb_operation_find(struct gb_connection *connection, u16 id)
135{
Alex Elderd90c25b2014-10-16 06:35:33 -0500136 struct gb_operation *operation = NULL;
Alex Elder84d148b2014-10-16 06:35:32 -0500137 struct rb_node *node;
138 bool found = false;
139
140 spin_lock_irq(&gb_operations_lock);
141 node = connection->pending.rb_node;
142 while (node && !found) {
143 operation = rb_entry(node, struct gb_operation, node);
144 if (operation->id > id)
145 node = node->rb_left;
146 else if (operation->id < id)
147 node = node->rb_right;
148 else
149 found = true;
150 }
151 spin_unlock_irq(&gb_operations_lock);
152
153 return found ? operation : NULL;
154}
155
Alex Eldere88afa52014-10-01 21:54:15 -0500156/*
157 * An operations's response message has arrived. If no callback was
158 * supplied it was submitted for asynchronous completion, so we notify
159 * any waiters. Otherwise we assume calling the completion is enough
160 * and nobody else will be waiting.
161 */
162void gb_operation_complete(struct gb_operation *operation)
163{
164 if (operation->callback)
165 operation->callback(operation);
166 else
167 complete_all(&operation->completion);
168}
169
Alex Elder2eb585f2014-10-16 06:35:34 -0500170/* Wait for a submitted operation to complete */
Alex Eldere88afa52014-10-01 21:54:15 -0500171int gb_operation_wait(struct gb_operation *operation)
172{
173 int ret;
174
175 ret = wait_for_completion_interruptible(&operation->completion);
176 /* If interrupted, cancel the in-flight buffer */
177 if (ret < 0)
Greg Kroah-Hartman4afbba02014-10-27 14:01:06 +0800178 greybus_kill_gbuf(operation->request);
Alex Eldere88afa52014-10-01 21:54:15 -0500179 return ret;
180
181}
182
Alex Eldered8800d2014-10-16 06:35:38 -0500183/*
184 * This handler is used if no operation response messages are ever
185 * expected for a given protocol.
186 */
187static void gb_operation_recv_none(struct gb_operation *operation)
188{
189 /* Nothing to do! */
190}
Alex Elder2eb585f2014-10-16 06:35:34 -0500191
192typedef void (*gb_operation_recv_handler)(struct gb_operation *operation);
193static gb_operation_recv_handler gb_operation_recv_handlers[] = {
194 [GREYBUS_PROTOCOL_CONTROL] = NULL,
195 [GREYBUS_PROTOCOL_AP] = NULL,
196 [GREYBUS_PROTOCOL_GPIO] = NULL,
Alex Eldered8800d2014-10-16 06:35:38 -0500197 [GREYBUS_PROTOCOL_I2C] = gb_operation_recv_none,
Alex Elder2eb585f2014-10-16 06:35:34 -0500198 [GREYBUS_PROTOCOL_UART] = NULL,
199 [GREYBUS_PROTOCOL_HID] = NULL,
Greg Kroah-Hartman2bb7eae2014-10-20 15:24:57 +0800200 [GREYBUS_PROTOCOL_BATTERY] = gb_operation_recv_none,
Greg Kroah-Hartman42d4a222014-10-20 16:02:56 +0800201 [GREYBUS_PROTOCOL_LED] = NULL,
Alex Elder2eb585f2014-10-16 06:35:34 -0500202 [GREYBUS_PROTOCOL_VENDOR] = NULL,
203};
204
205static void gb_operation_request_handle(struct gb_operation *operation)
206{
207 u8 protocol = operation->connection->protocol;
208
209 /* Subtract one from array size to stay within u8 range */
210 if (protocol <= (u8)(ARRAY_SIZE(gb_operation_recv_handlers) - 1)) {
211 gb_operation_recv_handler handler;
212
213 handler = gb_operation_recv_handlers[protocol];
214 if (handler) {
215 handler(operation); /* Handle the request */
216 return;
217 }
218 }
219
220 gb_connection_err(operation->connection, "unrecognized protocol %u\n",
221 (unsigned int)protocol);
222 operation->result = GB_OP_PROTOCOL_BAD;
223 gb_operation_complete(operation);
224}
225
Alex Eldere88afa52014-10-01 21:54:15 -0500226/*
Alex Elder2eb585f2014-10-16 06:35:34 -0500227 * Either this operation contains an incoming request, or its
228 * response has arrived. An incoming request will have a null
229 * response buffer pointer (it is the responsibility of the request
230 * handler to allocate and fill in the response buffer).
231 */
232static void gb_operation_recv_work(struct work_struct *recv_work)
233{
234 struct gb_operation *operation;
235 bool incoming_request;
236
237 operation = container_of(recv_work, struct gb_operation, recv_work);
238 incoming_request = operation->response == NULL;
239 if (incoming_request)
240 gb_operation_request_handle(operation);
241 gb_operation_complete(operation);
242
243 /* We're finished with the buffer we read into */
244 if (incoming_request)
245 greybus_gbuf_finished(operation->request);
246 else
247 greybus_gbuf_finished(operation->response);
248}
249
250/*
251 * Buffer completion function. We get notified whenever any buffer
252 * completes. For outbound messages, this tells us that the message
253 * has been sent. For inbound messages, it means the data has
254 * landed in the buffer and is ready to be processed.
255 *
256 * Either way, we don't do anything. We don't really care when an
257 * outbound message has been sent, and for incoming messages we
258 * we'll be done with everything we need to do before we mark it
259 * finished.
260 *
Alex Elderf012a522014-10-17 21:03:49 -0500261 * XXX We may want to record that a request is (or is no longer) in flight.
Alex Eldere88afa52014-10-01 21:54:15 -0500262 */
Alex Elder22b320f2014-10-16 06:35:31 -0500263static void gb_operation_gbuf_complete(struct gbuf *gbuf)
Alex Eldere88afa52014-10-01 21:54:15 -0500264{
Alex Elderf012a522014-10-17 21:03:49 -0500265 if (gbuf->status) {
266 struct gb_operation *operation = gbuf->context;
267 struct gb_operation_msg_hdr *header;
268 int id;
269 int type;
270
271 if (gbuf == operation->request)
272 header = operation->request_payload;
273 else if (gbuf == operation->response)
274 header = operation->response_payload;
275 else
276 header = NULL;
Greg Kroah-Hartmanf9624de2014-10-27 12:30:15 +0800277
278 if (header) {
279 id = le16_to_cpu(header->id);
280 type = header->type;
281 } else {
282 id = -1;
283 type = -1;
284 }
Alex Elderf012a522014-10-17 21:03:49 -0500285
286 gb_connection_err(operation->connection,
287 "operation %d type %d gbuf error %d",
288 id, type, gbuf->status);
289 }
Alex Elder2eb585f2014-10-16 06:35:34 -0500290 return;
Alex Eldere88afa52014-10-01 21:54:15 -0500291}
292
293/*
Alex Elder22b320f2014-10-16 06:35:31 -0500294 * Allocate a buffer to be used for an operation request or response
Alex Elder2eb585f2014-10-16 06:35:34 -0500295 * message. For outgoing messages, both types of message contain a
296 * common header, which is filled in here. Incoming requests or
297 * responses also contain the same header, but there's no need to
298 * initialize it here (it'll be overwritten by the incoming
299 * message).
Alex Eldere88afa52014-10-01 21:54:15 -0500300 */
Greg Kroah-Hartmanf9624de2014-10-27 12:30:15 +0800301static struct gbuf *gb_operation_gbuf_create(struct gb_operation *operation,
302 u8 type, size_t size,
303 bool data_out)
Alex Eldere88afa52014-10-01 21:54:15 -0500304{
Alex Elder22b320f2014-10-16 06:35:31 -0500305 struct gb_connection *connection = operation->connection;
Alex Eldere88afa52014-10-01 21:54:15 -0500306 struct gb_operation_msg_hdr *header;
307 struct gbuf *gbuf;
Alex Elder2eb585f2014-10-16 06:35:34 -0500308 gfp_t gfp_flags = data_out ? GFP_KERNEL : GFP_ATOMIC;
Alex Eldere88afa52014-10-01 21:54:15 -0500309
Alex Eldere88afa52014-10-01 21:54:15 -0500310 size += sizeof(*header);
Alex Elder22b320f2014-10-16 06:35:31 -0500311 gbuf = greybus_alloc_gbuf(connection, gb_operation_gbuf_complete,
Alex Elder2eb585f2014-10-16 06:35:34 -0500312 size, data_out, gfp_flags, operation);
Alex Elder22b320f2014-10-16 06:35:31 -0500313 if (!gbuf)
Alex Eldere88afa52014-10-01 21:54:15 -0500314 return NULL;
Alex Eldere88afa52014-10-01 21:54:15 -0500315
Alex Elder22b320f2014-10-16 06:35:31 -0500316 /* Fill in the header structure */
317 header = (struct gb_operation_msg_hdr *)gbuf->transfer_buffer;
Greg Kroah-Hartman322543a2014-10-02 21:25:21 -0700318 header->size = cpu_to_le16(size);
Alex Elderb0b65752014-10-03 15:05:20 -0500319 header->id = 0; /* Filled in when submitted */
320 header->type = type;
Alex Elder22b320f2014-10-16 06:35:31 -0500321
322 return gbuf;
323}
324
325/*
326 * Create a Greybus operation to be sent over the given connection.
327 * The request buffer will big enough for a payload of the given
328 * size. Outgoing requests must specify the size of the response
329 * buffer size, which must be sufficient to hold all expected
330 * response data.
331 *
332 * Incoming requests will supply a response size of 0, and in that
333 * case no response buffer is allocated. (A response always
334 * includes a status byte, so 0 is not a valid size.) Whatever
335 * handles the operation request is responsible for allocating the
336 * response buffer.
337 *
338 * Returns a pointer to the new operation or a null pointer if an
339 * error occurs.
340 */
341struct gb_operation *gb_operation_create(struct gb_connection *connection,
342 u8 type, size_t request_size,
343 size_t response_size)
344{
345 struct gb_operation *operation;
346 gfp_t gfp_flags = response_size ? GFP_KERNEL : GFP_ATOMIC;
Alex Elder2eb585f2014-10-16 06:35:34 -0500347 bool outgoing = response_size != 0;
Alex Elder22b320f2014-10-16 06:35:31 -0500348
Alex Elder5b3db0d2014-10-20 10:27:56 -0500349 operation = kmem_cache_zalloc(gb_operation_cache, gfp_flags);
Alex Elder22b320f2014-10-16 06:35:31 -0500350 if (!operation)
351 return NULL;
Greg Kroah-Hartman6507cce2014-10-27 17:58:54 +0800352 operation->connection = connection;
Alex Elder22b320f2014-10-16 06:35:31 -0500353
354 operation->request = gb_operation_gbuf_create(operation, type,
Alex Elder2eb585f2014-10-16 06:35:34 -0500355 request_size,
356 outgoing);
Alex Elder5b3db0d2014-10-20 10:27:56 -0500357 if (!operation->request)
358 goto err_cache;
Alex Elder22b320f2014-10-16 06:35:31 -0500359 operation->request_payload = operation->request->transfer_buffer +
360 sizeof(struct gb_operation_msg_hdr);
361 /* We always use the full request buffer */
362 operation->request->actual_length = request_size;
363
Alex Elder2eb585f2014-10-16 06:35:34 -0500364 if (outgoing) {
Alex Elder22b320f2014-10-16 06:35:31 -0500365 type |= GB_OPERATION_TYPE_RESPONSE;
366 operation->response = gb_operation_gbuf_create(operation,
Alex Elder2eb585f2014-10-16 06:35:34 -0500367 type, response_size,
368 false);
Alex Elder5b3db0d2014-10-20 10:27:56 -0500369 if (!operation->response)
370 goto err_request;
Alex Elder22b320f2014-10-16 06:35:31 -0500371 operation->response_payload =
372 operation->response->transfer_buffer +
373 sizeof(struct gb_operation_msg_hdr);
374 }
Alex Eldere88afa52014-10-01 21:54:15 -0500375
Alex Elder2eb585f2014-10-16 06:35:34 -0500376 INIT_WORK(&operation->recv_work, gb_operation_recv_work);
Alex Eldere88afa52014-10-01 21:54:15 -0500377 operation->callback = NULL; /* set at submit time */
378 init_completion(&operation->completion);
379
380 spin_lock_irq(&gb_operations_lock);
381 list_add_tail(&operation->links, &connection->operations);
382 spin_unlock_irq(&gb_operations_lock);
383
384 return operation;
Alex Elder5b3db0d2014-10-20 10:27:56 -0500385
386err_request:
387 greybus_free_gbuf(operation->request);
388err_cache:
389 kmem_cache_free(gb_operation_cache, operation);
390
391 return NULL;
Alex Eldere88afa52014-10-01 21:54:15 -0500392}
393
394/*
395 * Destroy a previously created operation.
396 */
397void gb_operation_destroy(struct gb_operation *operation)
398{
399 if (WARN_ON(!operation))
400 return;
401
402 /* XXX Make sure it's not in flight */
403 spin_lock_irq(&gb_operations_lock);
404 list_del(&operation->links);
405 spin_unlock_irq(&gb_operations_lock);
406
Alex Elder22b320f2014-10-16 06:35:31 -0500407 greybus_free_gbuf(operation->response);
408 greybus_free_gbuf(operation->request);
Alex Eldere88afa52014-10-01 21:54:15 -0500409
Alex Elder5b3db0d2014-10-20 10:27:56 -0500410 kmem_cache_free(gb_operation_cache, operation);
Alex Eldere88afa52014-10-01 21:54:15 -0500411}
Alex Elderd90c25b2014-10-16 06:35:33 -0500412
413/*
414 * Send an operation request message. The caller has filled in
415 * any payload so the request message is ready to go. If non-null,
416 * the callback function supplied will be called when the response
417 * message has arrived indicating the operation is complete. A null
418 * callback function is used for a synchronous request; return from
419 * this function won't occur until the operation is complete (or an
420 * interrupt occurs).
421 */
422int gb_operation_request_send(struct gb_operation *operation,
423 gb_operation_callback callback)
424{
425 int ret;
426
Alex Elder36561f22014-10-22 02:04:30 -0500427 if (operation->connection->state != GB_CONNECTION_STATE_ENABLED)
428 return -ENOTCONN;
429
Alex Elderd90c25b2014-10-16 06:35:33 -0500430 /*
431 * XXX
432 * I think the order of operations is going to be
433 * significant, and if so, we may need a mutex to surround
434 * setting the operation id and submitting the gbuf.
435 */
436 operation->callback = callback;
437 gb_operation_insert(operation);
438 ret = greybus_submit_gbuf(operation->request, GFP_KERNEL);
439 if (ret)
440 return ret;
441 if (!callback)
442 ret = gb_operation_wait(operation);
443
444 return ret;
445}
446
447/*
448 * Send a response for an incoming operation request.
449 */
450int gb_operation_response_send(struct gb_operation *operation)
451{
452 /* XXX
453 * Caller needs to have set operation->response->actual_length
454 */
455 gb_operation_remove(operation);
456 gb_operation_destroy(operation);
457
458 return 0;
459}
460
Alex Elder2eb585f2014-10-16 06:35:34 -0500461/*
462 * Handle data arriving on a connection. This is called in
463 * interrupt context, so just copy the incoming data into a buffer
464 * and do remaining handling via a work queue.
465 */
Alex Elderd90c25b2014-10-16 06:35:33 -0500466void gb_connection_operation_recv(struct gb_connection *connection,
467 void *data, size_t size)
468{
469 struct gb_operation_msg_hdr *header;
470 struct gb_operation *operation;
471 struct gbuf *gbuf;
472 u16 msg_size;
473
Alex Elder36561f22014-10-22 02:04:30 -0500474 if (connection->state != GB_CONNECTION_STATE_ENABLED)
475 return;
476
Alex Elderd90c25b2014-10-16 06:35:33 -0500477 if (size > GB_OPERATION_MESSAGE_SIZE_MAX) {
478 gb_connection_err(connection, "message too big");
479 return;
480 }
481
482 header = data;
483 msg_size = le16_to_cpu(header->size);
484 if (header->type & GB_OPERATION_TYPE_RESPONSE) {
485 u16 id = le16_to_cpu(header->id);
486
487 operation = gb_operation_find(connection, id);
488 if (!operation) {
489 gb_connection_err(connection, "operation not found");
Alex Elder2eb585f2014-10-16 06:35:34 -0500490 return;
Alex Elderd90c25b2014-10-16 06:35:33 -0500491 }
492 gb_operation_remove(operation);
493 gbuf = operation->response;
Alex Elderbedfdf32014-10-17 05:18:22 -0500494 gbuf->status = GB_OP_SUCCESS; /* If we got here we're good */
Alex Elderd90c25b2014-10-16 06:35:33 -0500495 if (size > gbuf->transfer_buffer_length) {
496 gb_connection_err(connection, "recv buffer too small");
497 return;
498 }
499 } else {
500 WARN_ON(msg_size != size);
501 operation = gb_operation_create(connection, header->type,
502 msg_size, 0);
503 if (!operation) {
504 gb_connection_err(connection, "can't create operation");
505 return;
506 }
507 gbuf = operation->request;
508 }
509
510 memcpy(gbuf->transfer_buffer, data, msg_size);
511 gbuf->actual_length = msg_size;
512
Alex Elder2eb585f2014-10-16 06:35:34 -0500513 /* The rest will be handled in work queue context */
514 queue_work(gb_operation_recv_workqueue, &operation->recv_work);
515}
516
Alex Eldere1158df2014-10-22 02:04:29 -0500517/*
518 * Cancel an operation.
519 */
520void gb_operation_cancel(struct gb_operation *operation)
521{
Alex Eldere1158df2014-10-22 02:04:29 -0500522 operation->canceled = true;
Greg Kroah-Hartman4afbba02014-10-27 14:01:06 +0800523 greybus_kill_gbuf(operation->request);
524 if (operation->response)
525 greybus_kill_gbuf(operation->response);
Alex Eldere1158df2014-10-22 02:04:29 -0500526}
527
Alex Elder2eb585f2014-10-16 06:35:34 -0500528int gb_operation_init(void)
529{
Alex Elder5b3db0d2014-10-20 10:27:56 -0500530 gb_operation_cache = kmem_cache_create("gb_operation_cache",
531 sizeof(struct gb_operation), 0, 0, NULL);
532 if (!gb_operation_cache)
Alex Elder2eb585f2014-10-16 06:35:34 -0500533 return -ENOMEM;
534
Alex Elder5b3db0d2014-10-20 10:27:56 -0500535 gb_operation_recv_workqueue = alloc_workqueue("greybus_recv", 0, 1);
536 if (!gb_operation_recv_workqueue) {
537 kmem_cache_destroy(gb_operation_cache);
538 gb_operation_cache = NULL;
539 return -ENOMEM;
540 }
541
Alex Elder2eb585f2014-10-16 06:35:34 -0500542 return 0;
543}
544
545void gb_operation_exit(void)
546{
Alex Elder5b3db0d2014-10-20 10:27:56 -0500547 kmem_cache_destroy(gb_operation_cache);
548 gb_operation_cache = NULL;
Alex Elder2eb585f2014-10-16 06:35:34 -0500549 destroy_workqueue(gb_operation_recv_workqueue);
Alex Elder5b3db0d2014-10-20 10:27:56 -0500550 gb_operation_recv_workqueue = NULL;
Alex Elderd90c25b2014-10-16 06:35:33 -0500551}