-
Notifications
You must be signed in to change notification settings - Fork 74
/
cl-os.tex
2120 lines (1397 loc) · 72.3 KB
/
cl-os.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
5da7c1414e7e & 13 Jun 2022 & Stefan Hajnoczi & {\noindent virtio-blk: document that the capacity field can change\vspace{\baselineskip}
Block devices can change size during operation. A configuration change
notification is sent by the device and the driver detects that the field
has changed. Document this behavior that has already been implemented in
Linux and QEMU since 2011.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/136}
Signed-off-by: Stefan Hajnoczi <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Block Device / Device Operation}.
} \\
\hline
ad2e1674bb69 & 13 Jun 2022 & Laura Loghin & {\noindent vsock: add documentation about len header field\vspace{\baselineskip}
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/137}
Reviewed-by: Stefano Garzarella <[email protected]>
Signed-off-by: Laura Loghin <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Socket Device / Device Operation}.
} \\
\hline
fca015771bc9 & 13 Jun 2022 & Xuan Zhuo & {\noindent virtio-net: support reset queue\vspace{\baselineskip}
A separate reset queue function introduced by Virtqueue Reset.
However, it is currently not defined what to do if the destination queue is
being reset when virtio-net is steering in multi-queue mode.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/138}
Reviewed-by: Jason Wang <[email protected]>
Signed-off-by: Xuan Zhuo <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Network Device / Device Operation / Control Virtqueue / Automatic receive steering in multiqueue mode},
and \ref{sec:Device Types / Network Device / Device Operation / Control Virtqueue / Receive-side scaling (RSS) / Setting RSS parameters}.
} \\
\hline
6328f51e21b5 & 24 Jun 2022 & Yuri Benditovich & {\noindent virtio-net: define guest USO features\vspace{\baselineskip}
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/120}
Add definition for large UDP packets device-to-driver.
Signed-off-by: Yuri Benditovich <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Network Device / Feature bits},
\ref{sec:Device Types / Network Device / Feature bits / Feature bit requirements},
\ref{sec:Device Types / Network Device / Device Initialization},
\ref{sec:Device Types / Network Device / Device Operation / Setting Up Receive Buffers},
\ref{sec:Device Types / Network Device / Device Operation / Processing of Incoming Packets},
and \ref{sec:Device Types / Network Device / Device Operation / Control Virtqueue / Offloads State Configuration / Setting Offloads State}.
} \\
\hline
49ff7805924c & 24 Jun 2022 & Anton Yakovlev & {\noindent virtio-snd: add support for audio controls\vspace{\baselineskip}
This patch extends the virtio sound device specification by adding
support for audio controls. Audio controls can be used to set the volume
level, mute/unmute the audio signal, switch different modes/states of
the virtual sound device, etc.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/107}
Signed-off-by: Anton Yakovlev <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Driver Conformance / Sound Driver Conformance},
\ref{sec:Conformance / Device Conformance / Sound Device Conformance},
\ref{sec:Device Types / Sound Device / Feature Bits},
\ref{sec:Device Types / Sound Device / Device Configuration Layout},
\ref{sec:Device Types / Sound Device / Device Operation},
and \ref{sec:Device Types / Sound Device / Device Operation / Control Elements}.
} \\
\hline
4d9068effa81 & 11 Jul 2022 & Alvaro Karsz & {\noindent Introduction of Virtio Network device notifications coalescing feature.\vspace{\baselineskip}
Control a network device notifications coalescing parameters using the control virtqueue.
A new control class was added: VIRTIO_NET_CTRL_NOTF_COAL.
This class provides 2 commands:
\begin{itemize}
\item VIRTIO_NET_CTRL_NOTF_COAL_TX_SET:
Ask the network device to change the tx_usecs and tx_max_packets parameters.
\begin{itemize}
\item tx_usecs: Maximum number of usecs to delay a TX notification.
\item tx_max_packets: Maximum number of packets to send before a TX notification.
\end{itemize}
\item VIRTIO_NET_CTRL_NOTF_COAL_RX_SET:
Ask the network device to change the rx_usecs and rx_max_packets parameters.
\begin{itemize}
\item rx_usecs: Maximum number of usecs to delay a RX notification.
\item rx_max_packets: Maximum number of packets to receive before a RX notification.
\end{itemize}
\end{itemize}
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/141}
Reviewed-by: Jason Wang <[email protected]>
Signed-off-by: Alvaro Karsz <[email protected]>
[CH: fixed commit message]
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Driver Conformance / Network Driver Conformance},
\ref{sec:Conformance / Device Conformance / Network Device Conformance},
\ref{sec:Device Types / Network Device / Feature bits},
\ref{sec:Device Types / Network Device / Feature bits / Feature bit requirements},
and \ref{sec:Device Types / Network Device / Device Operation / Control Virtqueue / Notifications Coalescing}.
} \\
\hline
abbe8afda8db & 03 Aug 2022 & Lei He & {\noindent virtio-crypto: introduce akcipher service\vspace{\baselineskip}
Introduce akcipher (asymmetric key cipher) service type, several
asymmetric algorithms and relevent information:
- RSA(padding algorithm, ASN.1 schema definition)
- ECDSA(ECC algorithm)
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/129}
Signed-off-by: zhenwei pi <[email protected]>
Signed-off-by: Lei He <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Normative References},
\ref{sec:Device Types / Crypto Device},
\ref{sec:Device Types / Crypto Device / Feature bits},
\ref{sec:Device Types / Crypto Device / Feature bit requirements},
\ref{sec:Device Types / Crypto Device / Supported crypto services},
\ref{sec: Device Types / Crypto Device / Supported crypto services / AKCIPHER services},
\ref{sec:Device Types / Crypto Device / Device configuration layout},
\ref{sec:Device Types / Crypto Device / Device Operation / Operation status},
\ref{sec:Device Types / Crypto Device / Device Operation / Control Virtqueue},
\ref{sec:Device Types / Crypto Device / Device Operation / Control Virtqueue / Session operation / Session operation: AKCIPHER session},
\ref{sec:Device Types / Crypto Device / Device Operation / Data Virtqueue},
and \ref{sec:Device Types / Crypto Device / Device Operation / AKCIPHER Service Operation}.
} \\
\hline
26ed30ccb049 & 03 Aug 2022 & Stefano Garzarella & {\noindent virtio-vsock: add VIRTIO_VSOCK_F_NO_IMPLIED_STREAM feature bit\vspace{\baselineskip}
Initially virtio-vsock only supported the stream type, which is why
there was no feature. Later we added the seqpacket type and in the future
we may have other types (e.g. datagram).
seqpacket is an extension of stream, so it might be implied that if
seqpacket is supported, stream is too, but this might not be true for
other types.
As we discussed here [1] should be better to add a new
VIRTIO_VSOCK_F_NO_IMPLIED_STREAM feature bit to avoid this implication.
Let's also add normative sections to better define the behavior when
VIRTIO_VSOCK_F_NO_IMPLIED_STREAM is negotiated or not.
[1] \url{http://markmail.org/message/2s3qd74drgjxkvte}
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/142}
Suggested-by: Michael S. Tsirkin <[email protected]>
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Stefano Garzarella <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Driver Conformance / Socket Driver Conformance},
\ref{sec:Conformance / Device Conformance / Socket Device Conformance},
and \ref{sec:Device Types / Socket Device / Feature bits}.
} \\
\hline
a7251b0cb4d9 & 14 Nov 2022 & Hrishivarya Bhageeradhan & {\noindent content: reserve device ID 43 for Camera device\vspace{\baselineskip}
The virtio-camera device allows to stream a camera video with
ability to change controls, formats and get camera captures.
This patch is to reserve the next available device ID for
virtio-camera.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/148}
Signed-off-by: Hrishivarya Bhageeradhan <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types}.
} \\
\hline
b4e8efa0fa6c & 05 Dec 2022 & Dmitry Fomichev & {\noindent virtio-blk: add zoned block device specification\vspace{\baselineskip}
Introduce support for Zoned Block Devices to virtio.
Zoned Block Devices (ZBDs) aim to achieve a better capacity, latency
and/or cost characteristics compared to commonly available block
devices by getting the entire LBA space of the device divided to block
regions that are much larger than the LBA size. These regions are
called zones and they can only be written sequentially. More details
about ZBDs can be found at
\url{https://zonedstorage.io/docs/introduction/zoned-storage} .
In its current form, the virtio protocol for block devices (virtio-blk)
is not aware of ZBDs but it allows the driver to successfully scan a
host-managed drive provided by the virtio block device. As the result,
the host-managed drive is recognized by virtio driver as a regular,
non-zoned drive that will operate erroneously under the most common
write workloads. Host-aware ZBDs are currently usable, but their
performance may not be optimal because the driver can only see them as
non-zoned block devices.
To fix this, the virtio-blk protocol needs to be extended to add the
capabilities to convey the zone characteristics of ZBDs at the device
side to the driver and to provide support for ZBD-specific commands -
Report Zones, four zone operations (Open, Close, Finish and Reset) and
(optionally) Zone Append. The proposed standard extension aims to
define this new functionality.
This patch extends the virtio-blk section of virtio specification with
the minimum set of requirements that are necessary to support ZBDs.
The resulting device model is a subset of the models defined in ZAC/ZBC
and ZNS standards documents. The included functionality mirrors
the existing Linux kernel block layer ZBD support and should be
sufficient to handle the host-managed and host-aware HDDs that are on
the market today as well as ZNS SSDs that are entering the market at
the time of submission of this patch.
I would like to thank the following people for their useful feedback
and suggestions while working on the initial iterations of this patch.
Damien Le Moal <[email protected]>
Matias Bjørling <[email protected]>
Niklas Cassel <[email protected]>
Hans Holmberg <[email protected]>
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/143}
Signed-off-by: Dmitry Fomichev <[email protected]>
Reviewed-by: Stefan Hajnoczi <[email protected]>
Reviewed-by: Damien Le Moal <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Block Device / Feature bits},
\ref{sec:Device Types / Block Device / Device configuration layout},
\ref{sec:Device Types / Block Device / Device Initialization},
and \ref{sec:Device Types / Block Device / Device Operation}.
} \\
\hline
985bbf397db4 & 07 Dec 2022 & Xuan Zhuo & {\noindent content: reserve device ID 44 for ISM device\vspace{\baselineskip}
The virtio-ism device provides the ability to share memory between
different guests on a host. A guest's memory got from ism device can be
shared with multiple peers at the same time. This shared relationship
can be dynamically created and released.
The shared memory obtained from the device is divided into multiple ism
regions for share. ISM device provides a mechanism to notify other ism
region referrers of content update events.
This patch is to reserve the next available device ID for virtio-ism.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/150}
Signed-off-by: Xuan Zhuo <[email protected]>
Signed-off-by: Jiang Liu <[email protected]>
Signed-off-by: Dust Li <[email protected]>
Signed-off-by: Tony Lu <[email protected]>
Signed-off-by: Helin Guo <[email protected]>
Signed-off-by: Hans Zhang <[email protected]>
Signed-off-by: He Rongguang <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types}.
} \\
\hline
f2b28698a28a & 30 Jan 2023 & Parav Pandit & {\noindent virtio-net: Maintain network device spec in separate directory\vspace{\baselineskip}
Move virtio network device specification to its own file similar to
recent virtio devices.
While at it, place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Network Device},
\ref{sec:Conformance / Device Conformance / Network Device Conformance},
and \ref{sec:Conformance / Driver Conformance / Network Driver Conformance}.
} \\
\hline
81694cddc4c1 & 30 Jan 2023 & Parav Pandit & {\noindent virtio-net: Fix spelling errors\vspace{\baselineskip}
Fix two spelling errors in the virtio network device specification.
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Network Device / Device Initialization},
and \ref{sec:Device Types / Network Device / Device Operation / Control Virtqueue}.
} \\
\hline
335342f5cd88 & 30 Jan 2023 & Parav Pandit & {\noindent virtio-blk: Maintain block device spec in separate directory\vspace{\baselineskip}
Move virtio block device specification to its own file similar to
recent virtio devices.
While at it, place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Block Device},
\ref{sec:Conformance / Device Conformance / Block Device Conformance},
and \ref{sec:Conformance / Driver Conformance / Block Driver Conformance}.
} \\
\hline
d3d06187eabb & 30 Jan 2023 & Parav Pandit & {\noindent virtio-console: Maintain console device spec in separate directory\vspace{\baselineskip}
Move virtio console device specification to its own file similar to
recent virtio devices.
While at it, place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Console Device},
\ref{sec:Conformance / Device Conformance / Console Device Conformance},
and \ref{sec:Conformance / Driver Conformance / Console Driver Conformance}.
} \\
\hline
c71e88e86d35 & 30 Jan 2023 & Parav Pandit & {\noindent virtio-entropy: Maintain entropy device spec in separate directory\vspace{\baselineskip}
Move virtio entropy device specification to its own file similar to
recent virtio devices.
While at it, place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Entropy Device},
\ref{sec:Conformance / Device Conformance / Entropy Device Conformance},
and \ref{sec:Conformance / Driver Conformance / Entropy Driver Conformance}.
} \\
\hline
c06f3b670dd6 & 30 Jan 2023 & Parav Pandit & {\noindent virtio-balloon: Maintain mem balloon device spec in separate directory\vspace{\baselineskip}
Move virtio memory balloon device specification to its own file
similar to recent virtio devices.
While at it, place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Memory Balloon Device},
\ref{sec:Conformance / Device Conformance / Traditional Memory Balloon Device Conformance},
and \ref{sec:Conformance / Driver Conformance / Traditional Memory Balloon Driver Conformance}.
} \\
\hline
d404f1c4e886 & 30 Jan 2023 & Parav Pandit & {\noindent virtio-scsi: Maintain scsi host device spec in separate directory\vspace{\baselineskip}
Move virtio SCSI host device specification to its own file similar to
recent virtio devices.
While at it, place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / SCSI Host Device},
\ref{sec:Conformance / Device Conformance / SCSI Host Device Conformance},
and \ref{sec:Conformance / Driver Conformance / SCSI Host Driver Conformance}.
} \\
\hline
442bb643a9ad & 30 Jan 2023 & Parav Pandit & {\noindent virtio-gpu: Maintain gpu device spec in separate directory\vspace{\baselineskip}
Move virtio gpu device specification to its own file similar to
recent virtio devices.
While at it, place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / GPU Device Conformance}.
} \\
\hline
c9686f241819 & 30 Jan 2023 & Parav Pandit & {\noindent virtio-input: Maintain input device spec in separate directory\vspace{\baselineskip}
Move virtio input device specification to its own file similar to
recent virtio devices.
While at it, place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / Input Device Conformance},
and \ref{sec:Conformance / Driver Conformance / Input Driver Conformance}.
} \\
\hline
8463bba27c79 & 30 Jan 2023 & Parav Pandit & {\noindent virtio-crypto: Maintain crypto device spec in separate directory\vspace{\baselineskip}
Move virtio crypto device specification to its own file similar to
recent virtio devices.
While at it, place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / Crypto Device Conformance},
and \ref{sec:Conformance / Driver Conformance / Crypto Driver Conformance}.
} \\
\hline
828754b98e3b & 30 Jan 2023 & Parav Pandit & {\noindent virtio-vsock: Maintain socket device spec in separate directory\vspace{\baselineskip}
Place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Reviewed-by: Stefano Garzarella <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / Socket Device Conformance},
and \ref{sec:Conformance / Driver Conformance / Socket Driver Conformance}.
} \\
\hline
8632f80e251f & 30 Jan 2023 & Parav Pandit & {\noindent virtio-fs: Maintain file system device spec in separate directory\vspace{\baselineskip}
Place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / File System Device Conformance},
and \ref{sec:Conformance / Driver Conformance / File System Driver Conformance}.
} \\
\hline
b067de47a506 & 30 Jan 2023 & Parav Pandit & {\noindent virtio-rpmb: Maintain rpmb device spec in separate directory\vspace{\baselineskip}
Place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / RPMB Device Conformance},
and \ref{sec:Conformance / Driver Conformance / RPMB Driver Conformance}.
} \\
\hline
b1cf73e96173 & 30 Jan 2023 & Parav Pandit & {\noindent virtio-iommu: Maintain iommu device spec in separate directory\vspace{\baselineskip}
Place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / IOMMU Device Conformance},
and \ref{sec:Conformance / Driver Conformance / IOMMU Driver Conformance}.
} \\
\hline
6813e3cc271e & 30 Jan 2023 & Parav Pandit & {\noindent virtio-sound: Maintain sound device spec in separate directory\vspace{\baselineskip}
Place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / Sound Device Conformance},
and \ref{sec:Conformance / Driver Conformance / Sound Driver Conformance}.
} \\
\hline
5042a5031502 & 30 Jan 2023 & Parav Pandit & {\noindent virtio-mem: Maintain memory device spec in separate directory\vspace{\baselineskip}
Place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / Memory Device Conformance},
and \ref{sec:Conformance / Driver Conformance / Memory Driver Conformance}.
} \\
\hline
00b9935238bf & 30 Jan 2023 & Parav Pandit & {\noindent virtio-i2c: Maintain i2c device spec in separate directory\vspace{\baselineskip}
Place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / I2C Adapter Device Conformance},
and \ref{sec:Conformance / Driver Conformance / I2C Adapter Driver Conformance}.
} \\
\hline
674489b191ab & 30 Jan 2023 & Parav Pandit & {\noindent virtio-scmi: Maintain scmi device spec in separate directory\vspace{\baselineskip}
Place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / SCMI Device Conformance},
and \ref{sec:Conformance / Driver Conformance / SCMI Driver Conformance}.
} \\
\hline
6c9c04d2bf5e & 30 Jan 2023 & Parav Pandit & {\noindent virtio-gpio: Maintain gpio device spec in separate directory\vspace{\baselineskip}
Place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / GPIO Device Conformance},
and \ref{sec:Conformance / Driver Conformance / GPIO Driver Conformance}.
} \\
\hline
d04d253b1055 & 30 Jan 2023 & Parav Pandit & {\noindent virtio-pmem: Maintain pmem device spec in separate directory\vspace{\baselineskip}
Place device specification, its driver and device
conformance into its own directory to have self contained device
specification.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/153}
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Conformance / Device Conformance / PMEM Device Conformance},
and \ref{sec:Conformance / Driver Conformance / PMEM Driver Conformance}.
} \\
\hline
b1fb6b62495f & 02 Feb 2023 & Parav Pandit & {\noindent virtio-net: Clarify VLAN filter table configuration\vspace{\baselineskip}
The filtering behavior of the VLAN filter commands is not very clear as
discussed in thread [1].
Hence, add the command description and device requirements for it.
[1] \url{https://lists.oasis-open.org/archives/virtio-dev/202301/msg00210.html}
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/147}
Suggested-by: Si-Wei Liu <[email protected]>
Reviewed-by: Si-Wei Liu <[email protected]>
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Network Device / Device Operation / Control Virtqueue / VLAN Filtering},
\ref{sec:Device Types / Network Device / Device Operation / Control Virtqueue},
and \ref{sec:Conformance / Device Conformance / Network Device Conformance}.
} \\
\hline
53b0cb13169c & 02 Feb 2023 & Parav Pandit & {\noindent virtio-net: Avoid confusing device configuration text\vspace{\baselineskip}
The added text in commit of Fixes tag was redundant and
confusing in context of VLAN filtering description.
Hence remove it as discussed in [1] and [2].
[1] \url{https://lists.oasis-open.org/archives/virtio-dev/202301/msg00282.html}
[2] \url{https://lists.oasis-open.org/archives/virtio-dev/202301/msg00286.html}
\vspace{\baselineskip}
Fixes: 296303444f6b ("virtio-net: Clarify VLAN filter table configuration")
Suggested-by: Halil Pasic <[email protected]>
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
[CH: applied as editorial change]
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Network Device / Device Operation / Control Virtqueue}.
} \\
\hline
3b9b6acb0936 & 09 Feb 2023 & Michael S. Tsirkin & {\noindent audio->sound\vspace{\baselineskip}
Spec calls the device "sound device". Make the name in the
ID section match.
\vspace{\baselineskip}
MST: applied as editorial change.
Signed-off-by: Michael S. Tsirkin <[email protected]>
Reviewed-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types}.
} \\
\hline
0ce03bc6995a & 14 Feb 2023 & Parav Pandit & {\noindent virtio-net: Avoid confusion between a card and a device\vspace{\baselineskip}
Historically virtio network device is documented as an Ethernet card.
A modern card in the industry has one to multiple ports, one to multiple
PCI functions. However the virtio network device is usually just a
single link/port network interface controller.
Hence, avoid this confusing term 'card' and align the specification
to adhere to widely used specification term as 'device' used for all
virtio device types.
Replaced 'card' with 'network interface controller'.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/154}
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Virtio Transport Options / Virtio Over PCI Bus / PCI Device Discovery},
\ref{sec:Device Types},
\ref{sec:Device Types / Network Device},
\ref{sec:Device Types / Network Device / Feature bits},
and \ref{sec:Device Types / Network Device / Device Initialization}.
} \\
\hline
be2ce1ee17e0 & 15 Feb 2023 & Parav Pandit & {\noindent content.tex Fix Driver notifications label\vspace{\baselineskip}
Driver notifications section is under "Basic Facilities of a Virtio
Device". However, the label is placed under "Virtqueues" section.
Fix the label references.
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
[CH: pushed as an editorial update]
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Basic Facilities of a Virtio Device / Driver notifications}.
} \\
\hline
2ea4627093fb & 20 Feb 2023 & Alvaro Karsz & {\noindent virtio-net: Mention VIRTIO_NET_F_HASH_REPORT dependency on VIRTIO_NET_F_CTRL_VQ\vspace{\baselineskip}
If the VIRTIO_NET_F_HASH_REPORT feature is negotiated, the driver may
send VIRTIO_NET_CTRL_MQ_HASH_CONFIG commands, thus, the control VQ
feature should be negotiated.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/158}
Signed-off-by: Alvaro Karsz <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Network Device / Device configuration layout}.
} \\
\hline
73ce5bb02003 & 01 Mar 2023 & Alvaro Karsz & {\noindent virtio-net: Fix and update VIRTIO_NET_F_NOTF_COAL feature\vspace{\baselineskip}
This patch makes several improvements to the notification coalescing
feature, including:
\begin{itemize}
\item Consolidating virtio_net_ctrl_coal_tx and virtio_net_ctrl_coal_rx
into a single struct, virtio_net_ctrl_coal, as they are identical.
\item Emphasizing that the coalescing commands are best-effort.
\item Defining the behavior of coalescing with regards to delivering
notifications when a change occur.
\item Stating that the commands should apply to all the receive/transmit
virtqueues.
\item Stating that every receive/transmit virtqueue should count it's own
packets.
\item A new intro explaining the entire coalescing operation.
\end{itemize}
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/159}
Signed-off-by: Alvaro Karsz <[email protected]>
Reviewed-by: Parav Pandit <[email protected]>
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Network Device / Device Operation / Control Virtqueue}.
} \\
\hline
3508347769af & 01 Mar 2023 & Parav Pandit & {\noindent virtio-net: Improve introductory description\vspace{\baselineskip}
The control VQ of the virtio network device is used beyond advance
steering control. The control VQ dynamically changes multiple features
of the initialized device.
Hence, update this area of control VQ introductory description at few
places and also place the link to its description.
Also update the introduction section to better describe receive and
transmit virtqueues.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/156}
Reviewed-by: David Edmondson <[email protected]>
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Device Types / Network Device},
\ref{sec:Device Types / Network Device / Virtqueues},
and \ref{sec:Device Types / Network Device / Device Operation}.
} \\
\hline
91a469991433 & 10 Mar 2023 & Parav Pandit & {\noindent transport-pci: Split PCI transport to its own file\vspace{\baselineskip}
Place PCI transport specification in its own file to better maintain it.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/157}
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Virtio Transport Options / Virtio Over PCI Bus}.
} \\
\hline
9e88ba9c47d0 & 10 Mar 2023 & Parav Pandit & {\noindent transport-mmio: Split MMIO transport to its own file\vspace{\baselineskip}
Place MMIO transport specification in its own file to better maintain it.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/157}
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Virtio Transport Options / Virtio Over MMIO}.
} \\
\hline
0af264f9d4ea & 10 Mar 2023 & Parav Pandit & {\noindent transport-ccw: Split Channel IO transport to its own file\vspace{\baselineskip}
Place Channel IO transport specification in its own file to
better maintain it.
\vspace{\baselineskip}
Fixes: \url{https://github.com/oasis-tcs/virtio-spec/issues/157}
Signed-off-by: Parav Pandit <[email protected]>
Signed-off-by: Cornelia Huck <[email protected]>
See \ref{sec:Virtio Transport Options / Virtio Over Channel I/O}.
} \\