]> git.proxmox.com Git - mirror_qemu.git/commit - block/qed-l2-cache.c
qed: do not evict in-use L2 table cache entries
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Mon, 27 Feb 2012 13:16:01 +0000 (13:16 +0000)
committerKevin Wolf <kwolf@redhat.com>
Mon, 12 Mar 2012 14:14:06 +0000 (15:14 +0100)
commit14fe292d86da90b79e2fb56a4986d27346339a00
treed7a6d4fb4a921d9c8dcf2e680d90d5d72474ae53
parentd0895d6e390d59d3dc6edab771335adfea263029
qed: do not evict in-use L2 table cache entries

The L2 table cache reduces QED metadata reads that would be required
when translating LBAs to offsets into the image file.  Since requests
execute in parallel it is possible to share an L2 table between multiple
requests.

There is a potential data corruption issue when an in-use L2 table is
evicted from the cache because the following situation occurs:

  1. An allocating write performs an update to L2 table "A".

  2. Another request needs L2 table "B" and causes table "A" to be
     evicted.

  3. A new read request needs L2 table "A" but it is not cached.

As a result the L2 update from #1 can overlap with the L2 fetch from #3.
We must avoid doing overlapping I/O requests here since the worst case
outcome is that the L2 fetch completes before the L2 update and yields
stale data.  In that case we would effectively discard the L2 update and
lose data clusters!

Thanks to Benoît Canet <benoit.canet@gmail.com> for extensive testing
and debugging which lead to discovery of this bug.

Reported-by: Benoît Canet <benoit.canet@gmail.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Tested-by: Benoît Canet <benoit.canet@gmail.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/qed-l2-cache.c