[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1158581665.3060.60.camel@dyn-9-152-230-71.boeblingen.de.ibm.com>
Date: Mon, 18 Sep 2006 14:14:24 +0200
From: Martin Peschke <mp3@...ibm.com>
To: Andrew Morton <akpm@...l.org>
Cc: Cedric Le Goater <clg@...ibm.com>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: [Patch] fix: sched_clock() use in zfcp driver
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@...ibm.com>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists