Lines Matching refs:command
20 struct command *ibmasm_new_command(struct service_processor *sp, size_t buffer_size) in ibmasm_new_command()
22 struct command *cmd; in ibmasm_new_command()
27 cmd = kzalloc(sizeof(struct command), GFP_KERNEL); in ibmasm_new_command()
54 struct command *cmd = to_command(kref); in ibmasm_free_command()
63 static void enqueue_command(struct service_processor *sp, struct command *cmd) in enqueue_command()
68 static struct command *dequeue_command(struct service_processor *sp) in dequeue_command()
70 struct command *cmd; in dequeue_command()
78 cmd = list_entry(next, struct command, queue_node); in dequeue_command()
105 void ibmasm_exec_command(struct service_processor *sp, struct command *cmd) in ibmasm_exec_command()
148 void ibmasm_wait_for_response(struct command *cmd, int timeout) in ibmasm_wait_for_response()
163 struct command *cmd = sp->current_command; in ibmasm_receive_command_response()