c3e41422c8dd8956c4945a1cf29c66243dc5d611
[libguestfs-talks.git] / 2019-kvm-forum / 4500-new-qemu-flag.html
1 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
2 <link rel="stylesheet" href="style.css" type="text/css"/>
3 <script src="code.js" type="text/javascript"></script>
4
5 <h1>The fix: raise the victory flag</h1>
6
7 <p>
8   Filler text - need a graphic here showing multiple combinations:
9
10   <br>[WZ] = WRITE_ZEROES, normal
11   <br>[FZ+] = WRITE_ZEROES, successful with FAST_ZERO flag
12   <br>[FZ-] = WRITE_ZEROES, fails with FAST_ZERO flag
13   <br>[W...] = WRITE for data
14
15 <pre>
16                   O(1) server             O(n) server
17 pre-patch         [W...][WZ][W...][WZ]    [W...][WZ..][W...][WZ..]
18
19 with fast zero    [FZ+][W...][W...]       [FZ-][W...][WZ..][W...][WZ..]
20                   (faster)                (marginally slower)
21 </pre>
22
23 </p>