summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/operation.h
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2015-07-01 12:37:23 +0200
committerGreg Kroah-Hartman <gregkh@google.com>2015-07-01 16:50:59 -0700
commita52c4352aef85538d194a9714fe742b18e6fb80f (patch)
treef1253f0887e9da1d9e8f77cdc3ad8facd62aebf7 /drivers/staging/greybus/operation.h
parente420721b47ef5b0d521584d4efc89ff64bd0cd74 (diff)
downloadlinux-a52c4352aef85538d194a9714fe742b18e6fb80f.tar.bz2
greybus: operation: allow atomic request submissions
Add gfp mask argument to gb_operation_request_send in order to allow submissions from atomic context. Note that responses are currently always sent from non-atomic context as incoming requests are processed in a work queue. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/operation.h')
-rw-r--r--drivers/staging/greybus/operation.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/greybus/operation.h b/drivers/staging/greybus/operation.h
index 395664835eac..40632238845e 100644
--- a/drivers/staging/greybus/operation.h
+++ b/drivers/staging/greybus/operation.h
@@ -147,7 +147,8 @@ bool gb_operation_response_alloc(struct gb_operation *operation,
size_t response_size);
int gb_operation_request_send(struct gb_operation *operation,
- gb_operation_callback callback);
+ gb_operation_callback callback,
+ gfp_t gfp);
int gb_operation_request_send_sync(struct gb_operation *operation);
int gb_operation_response_send(struct gb_operation *operation, int errno);