diff options
author | Clemens Ladisch | 2011-05-02 09:33:56 +0200 |
---|---|---|
committer | Stefan Richter | 2011-05-10 22:53:45 +0200 |
commit | 13882a82ee1646336c3996c93b4a560a55d2a419 (patch) | |
tree | 8a144d874a0ac46273a7e2f2dd344458d7eb4bfa /drivers/media/dvb/firewire | |
parent | firewire: octlet AT payloads can be stack-allocated (diff) | |
download | kernel-qcow2-linux-13882a82ee1646336c3996c93b4a560a55d2a419.tar.gz kernel-qcow2-linux-13882a82ee1646336c3996c93b4a560a55d2a419.tar.xz kernel-qcow2-linux-13882a82ee1646336c3996c93b4a560a55d2a419.zip |
firewire: optimize iso queueing by setting wake only after the last packet
When queueing iso packets, the run time is dominated by the two
MMIO accesses that set the DMA context's wake bit. Because most
drivers submit packets in batches, we can save much time by
removing all but the last wakeup.
The internal kernel API is changed to require a call to
fw_iso_context_queue_flush() after a batch of queued packets.
The user space API does not change, so one call to
FW_CDEV_IOC_QUEUE_ISO must specify multiple packets to take
advantage of this optimization.
In my measurements, this patch reduces the time needed to queue
fifty skip packets from userspace to one sixth on a 2.5 GHz CPU,
or to one third at 800 MHz.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/media/dvb/firewire')
-rw-r--r-- | drivers/media/dvb/firewire/firedtv-fw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/dvb/firewire/firedtv-fw.c b/drivers/media/dvb/firewire/firedtv-fw.c index 8022b743af91..864b6274c729 100644 --- a/drivers/media/dvb/firewire/firedtv-fw.c +++ b/drivers/media/dvb/firewire/firedtv-fw.c @@ -125,6 +125,7 @@ static void handle_iso(struct fw_iso_context *context, u32 cycle, i = (i + 1) & (N_PACKETS - 1); } + fw_iso_context_queue_flush(ctx->context); ctx->current_packet = i; } |