1)We have measured propagation delays from various cables and found an average of 1.7 nanoseconds per foot, which is roughly 5.25 ns per meter.
2)The
3)The asynchronous transfer uses an interlocked handshake where a device cannot do the next thing until it receives positive acknowledgment that the other device received the last thing.
T
TAGGEDQUEUING
A
Without tagged queuing:
If tagged queuing was not enabled, the drive would seek to LBA 0, transfer bytes 0, then 1, then seek to 101, transfer 101 and 102, then seek back to lba 5, transfer 5, then 6. ===>involves 3 seeks (initial seek to 5, seek to 101, then seek back to 5)
With tagged queuing:
If tagged queuing was enabled, the drive would seek to LBA 0, transfer bytes 0, then 1, 5 and 6, then seek to 101, transferring 101 and 102. At this point all the data would be transferred.
===>involves 2 seeks (initial seek to 5, then the seek to 101) Seeking on a disk drive takes a relatively long time, so having seeks and head switches really speeds up performance.
5 2