Lines Matching defs:operation

19 	struct gb_operation *operation;
22 static int gb_svc_queue_deferred_request(struct gb_operation *operation);
277 * increase the timeout so the operation will not return to soon.
617 "failed to send set power mode operation to interface %u: %d\n",
917 static void gb_svc_process_hello_deferred(struct gb_operation *operation)
919 struct gb_connection *connection = operation->connection;
949 static void gb_svc_process_module_inserted(struct gb_operation *operation)
952 struct gb_connection *connection = operation->connection;
962 request = operation->request->payload;
997 static void gb_svc_process_module_removed(struct gb_operation *operation)
1000 struct gb_connection *connection = operation->connection;
1006 request = operation->request->payload;
1025 static void gb_svc_process_intf_oops(struct gb_operation *operation)
1028 struct gb_connection *connection = operation->connection;
1035 request = operation->request->payload;
1056 static void gb_svc_process_intf_mailbox_event(struct gb_operation *operation)
1059 struct gb_connection *connection = operation->connection;
1067 request = operation->request->payload;
1087 struct gb_operation *operation;
1092 operation = dr->operation;
1093 svc = gb_connection_get_data(operation->connection);
1094 type = operation->request->header->type;
1098 gb_svc_process_hello_deferred(operation);
1101 gb_svc_process_module_inserted(operation);
1104 gb_svc_process_module_removed(operation);
1107 gb_svc_process_intf_mailbox_event(operation);
1110 gb_svc_process_intf_oops(operation);
1116 gb_operation_put(operation);
1120 static int gb_svc_queue_deferred_request(struct gb_operation *operation)
1122 struct gb_svc *svc = gb_connection_get_data(operation->connection);
1129 gb_operation_get(operation);
1131 dr->operation = operation;