[patch 12/12] s390: use __cpcmd in vmcp_write.

From: Martin Schwidefsky
Date: Mon Jul 11 2005 - 12:04:46 EST


[patch 12/12] s390: use __cpcmd in vmcp_write.

From: Christian Borntraeger <cborntra@xxxxxxxxxx>

vmcp_write uses GPF_DMA for the memory allocation of the response
buffer, so it can use the low level function __cpcmd directly,
no need to call the wrapper.

Signed-off-by: Martin Schwidefsky <schwidefsky@xxxxxxxxxx>

diffstat:
drivers/s390/char/vmcp.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)

diff -urpN linux-2.6/drivers/s390/char/vmcp.c linux-2.6-patched/drivers/s390/char/vmcp.c
--- linux-2.6/drivers/s390/char/vmcp.c 2005-07-11 17:37:30.000000000 +0200
+++ linux-2.6-patched/drivers/s390/char/vmcp.c 2005-07-11 17:37:51.000000000 +0200
@@ -115,9 +115,9 @@ vmcp_write(struct file *file, const char
return -ENOMEM;
}
debug_text_event(vmcp_debug, 1, cmd);
- session->resp_size = cpcmd(cmd, session->response,
- session->bufsize,
- &session->resp_code);
+ session->resp_size = __cpcmd(cmd, session->response,
+ session->bufsize,
+ &session->resp_code);
up(&session->mutex);
kfree(cmd);
*ppos = 0; /* reset the file pointer after a command */
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/