Lines Matching refs:operation

20 	struct gb_operation *operation;
23 static int gb_svc_queue_deferred_request(struct gb_operation *operation);
278 * increase the timeout so the operation will not return to soon.
618 "failed to send set power mode operation to interface %u: %d\n",
922 static void gb_svc_process_hello_deferred(struct gb_operation *operation)
924 struct gb_connection *connection = operation->connection;
954 static void gb_svc_process_module_inserted(struct gb_operation *operation)
957 struct gb_connection *connection = operation->connection;
967 request = operation->request->payload;
1002 static void gb_svc_process_module_removed(struct gb_operation *operation)
1005 struct gb_connection *connection = operation->connection;
1011 request = operation->request->payload;
1030 static void gb_svc_process_intf_oops(struct gb_operation *operation)
1033 struct gb_connection *connection = operation->connection;
1040 request = operation->request->payload;
1061 static void gb_svc_process_intf_mailbox_event(struct gb_operation *operation)
1064 struct gb_connection *connection = operation->connection;
1072 request = operation->request->payload;
1092 struct gb_operation *operation;
1097 operation = dr->operation;
1098 svc = gb_connection_get_data(operation->connection);
1099 type = operation->request->header->type;
1103 gb_svc_process_hello_deferred(operation);
1106 gb_svc_process_module_inserted(operation);
1109 gb_svc_process_module_removed(operation);
1112 gb_svc_process_intf_mailbox_event(operation);
1115 gb_svc_process_intf_oops(operation);
1121 gb_operation_put(operation);
1125 static int gb_svc_queue_deferred_request(struct gb_operation *operation)
1127 struct gb_svc *svc = gb_connection_get_data(operation->connection);
1134 gb_operation_get(operation);
1136 dr->operation = operation;