[Patch] fix: sched_clock() use in zfcp driver

From: Martin Peschke
Date: Mon Sep 18 2006 - 08:14:52 EST


We are not supposed to use sched_clock().
Reverting a change which wasn't meant to slip through with
statistics-infrastructure-exploitation-zfcp.patch.
It fixes zfcp, which couldn't be compiled as module (found by Cedric).
Please apply.

Signed-off-by: Martin Peschke <mp3@xxxxxxxxxx>
---

zfcp_fsf.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)

diff -urp a/drivers/s390/scsi/zfcp_fsf.c b/drivers/s390/scsi/zfcp_fsf.c
--- a/drivers/s390/scsi/zfcp_fsf.c 2006-09-18 09:23:08.000000000 +0200
+++ b/drivers/s390/scsi/zfcp_fsf.c 2006-09-18 12:15:13.000000000 +0200
@@ -4851,7 +4851,7 @@ zfcp_fsf_req_send(struct zfcp_fsf_req *f
req_queue->free_index %= QDIO_MAX_BUFFERS_PER_Q; /* wrap if needed */
new_distance_from_int = zfcp_qdio_determine_pci(req_queue, fsf_req);

- fsf_req->issued = sched_clock();
+ fsf_req->issued = get_clock();

retval = do_QDIO(adapter->ccw_device,
QDIO_FLAG_SYNC_OUTPUT,



-
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/