-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathcsky-ioctls.txt
More file actions
1591 lines (1591 loc) · 59.3 KB
/
csky-ioctls.txt
File metadata and controls
1591 lines (1591 loc) · 59.3 KB
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
#ifdef __csky__
#define FIONREAD 0x541bul
#define FIONBIO 0x5421ul
#define FIOCLEX 0x5451ul
#define FIONCLEX 0x5450ul
#define FIOASYNC 0x5452ul
#define FIOQSIZE 0x5460ul
#define TCXONC 0x540aul
#define TCFLSH 0x540bul
#define TIOCSCTTY 0x540eul
#define TIOCSPGRP 0x5410ul
#define TIOCOUTQ 0x5411ul
#define TIOCSTI 0x5412ul
#define TIOCSWINSZ 0x5414ul
#define TIOCMGET 0x5415ul
#define TIOCMBIS 0x5416ul
#define TIOCMBIC 0x5417ul
#define TIOCMSET 0x5418ul
#define TIOCSSOFTCAR 0x541aul
#define TIOCLINUX 0x541cul
#define TIOCCONS 0x541dul
#define TIOCSSERIAL 0x541ful
#define TIOCPKT 0x5420ul
#define TIOCNOTTY 0x5422ul
#define TIOCSETD 0x5423ul
#define TIOCSBRK 0x5427ul
#define TIOCCBRK 0x5428ul
#define TIOCSRS485 0x542ful
#define TIOCSPTLCK 0x40045431ul
#define TIOCSIG 0x40045436ul
#define TIOCVHANGUP 0x5437ul
#define TIOCSERCONFIG 0x5453ul
#define TIOCSERGWILD 0x5454ul
#define TIOCSERSWILD 0x5455ul
#define TIOCSLCKTRMIOS 0x5457ul
#define TIOCSERGSTRUCT 0x5458ul
#define TIOCSERGETLSR 0x5459ul
#define TIOCSERGETMULTI 0x545aul
#define TIOCSERSETMULTI 0x545bul
#define TIOCMIWAIT 0x545cul
#define TCGETS 0x5401ul
#define TCGETA 0x5405ul
#define TCSBRK 0x5409ul
#define TCSBRKP 0x5425ul
#define TCSETA 0x5406ul
#define TCSETAF 0x5408ul
#define TCSETAW 0x5407ul
#define TIOCEXCL 0x540cul
#define TIOCNXCL 0x540dul
#define TIOCGDEV 0x80045432ul
#define TIOCGEXCL 0x80045440ul
#define TIOCGICOUNT 0x545dul
#define TIOCGLCKTRMIOS 0x5456ul
#define TIOCGPGRP 0x540ful
#define TIOCGPKT 0x80045438ul
#define TIOCGPTLCK 0x80045439ul
#define TIOCGPTN 0x80045430ul
#define TIOCGPTPEER 0x5441ul
#define TIOCGRS485 0x542eul
#define TIOCGSERIAL 0x541eul
#define TIOCGSID 0x5429ul
#define TIOCGSOFTCAR 0x5419ul
#define TIOCGWINSZ 0x5413ul
#define TCGETS2 0x802c542aul
#define TCGETX 0x5432ul
#define TCSETS 0x5402ul
#define TCSETS2 0x402c542bul
#define TCSETSF 0x5404ul
#define TCSETSF2 0x402c542dul
#define TCSETSW 0x5403ul
#define TCSETSW2 0x402c542cul
#define TCSETX 0x5433ul
#define TCSETXF 0x5434ul
#define TCSETXW 0x5435ul
#define TIOCGETD 0x5424ul
#define MTIOCGET 0x801c6d02ul
#define BLKSSZGET 0x1268ul
#define BLKPBSZGET 0x127bul
#define BLKROSET 0x125dul
#define BLKROGET 0x125eul
#define BLKRRPART 0x125ful
#define BLKGETSIZE 0x1260ul
#define BLKFLSBUF 0x1261ul
#define BLKRASET 0x1262ul
#define BLKRAGET 0x1263ul
#define BLKFRASET 0x1264ul
#define BLKFRAGET 0x1265ul
#define BLKSECTSET 0x1266ul
#define BLKSECTGET 0x1267ul
#define BLKPG 0x1269ul
#define BLKBSZGET 0x80041270ul
#define BLKBSZSET 0x40041271ul
#define BLKGETSIZE64 0x80041272ul
#define BLKTRACESETUP 0xc0401273ul
#define BLKTRACESTART 0x1274ul
#define BLKTRACESTOP 0x1275ul
#define BLKTRACETEARDOWN 0x1276ul
#define BLKDISCARD 0x1277ul
#define BLKIOMIN 0x1278ul
#define BLKIOOPT 0x1279ul
#define BLKALIGNOFF 0x127aul
#define BLKDISCARDZEROES 0x127cul
#define BLKSECDISCARD 0x127dul
#define BLKROTATIONAL 0x127eul
#define BLKZEROOUT 0x127ful
#define FIEMAP_MAX_OFFSET 0xfffffffful
#define FIEMAP_FLAG_SYNC 0x1ul
#define FIEMAP_FLAG_XATTR 0x2ul
#define FIEMAP_FLAG_CACHE 0x4ul
#define FIEMAP_FLAGS_COMPAT 0x3ul
#define FIEMAP_EXTENT_LAST 0x1ul
#define FIEMAP_EXTENT_UNKNOWN 0x2ul
#define FIEMAP_EXTENT_DELALLOC 0x4ul
#define FIEMAP_EXTENT_ENCODED 0x8ul
#define FIEMAP_EXTENT_DATA_ENCRYPTED 0x80ul
#define FIEMAP_EXTENT_NOT_ALIGNED 0x100ul
#define FIEMAP_EXTENT_DATA_INLINE 0x200ul
#define FIEMAP_EXTENT_DATA_TAIL 0x400ul
#define FIEMAP_EXTENT_UNWRITTEN 0x800ul
#define FIEMAP_EXTENT_MERGED 0x1000ul
#define FIEMAP_EXTENT_SHARED 0x2000ul
#define UFFDIO_REGISTER 0xc020aa00ul
#define UFFDIO_UNREGISTER 0x8010aa01ul
#define UFFDIO_WAKE 0x8010aa02ul
#define UFFDIO_COPY 0xc028aa03ul
#define UFFDIO_ZEROPAGE 0xc020aa04ul
#define UFFDIO_WRITEPROTECT 0xc018aa06ul
#define UFFDIO_API 0xc018aa3ful
#define NS_GET_USERNS 0xb701ul
#define NS_GET_PARENT 0xb702ul
#define NS_GET_NSTYPE 0xb703ul
#define KDGETLED 0x4b31ul
#define KDSETLED 0x4b32ul
#define KDGKBLED 0x4b64ul
#define KDSKBLED 0x4b65ul
#define KDGKBTYPE 0x4b33ul
#define KDADDIO 0x4b34ul
#define KDDELIO 0x4b35ul
#define KDENABIO 0x4b36ul
#define KDDISABIO 0x4b37ul
#define KDSETMODE 0x4b3aul
#define KDGETMODE 0x4b3bul
#define KDMKTONE 0x4b30ul
#define KIOCSOUND 0x4b2ful
#define GIO_CMAP 0x4b70ul
#define PIO_CMAP 0x4b71ul
#define GIO_FONT 0x4b60ul
#define GIO_FONTX 0x4b6bul
#define PIO_FONT 0x4b61ul
#define PIO_FONTX 0x4b6cul
#define PIO_FONTRESET 0x4b6dul
#define GIO_SCRNMAP 0x4b40ul
#define GIO_UNISCRNMAP 0x4b69ul
#define PIO_SCRNMAP 0x4b41ul
#define PIO_UNISCRNMAP 0x4b6aul
#define GIO_UNIMAP 0x4b66ul
#define PIO_UNIMAP 0x4b67ul
#define PIO_UNIMAPCLR 0x4b68ul
#define KDGKBMODE 0x4b44ul
#define KDSKBMODE 0x4b45ul
#define KDGKBMETA 0x4b62ul
#define KDSKBMETA 0x4b63ul
#define KDGKBENT 0x4b46ul
#define KDSKBENT 0x4b47ul
#define KDGKBSENT 0x4b48ul
#define KDSKBSENT 0x4b49ul
#define KDGKBDIACR 0x4b4aul
#define KDGETKEYCODE 0x4b4cul
#define KDSETKEYCODE 0x4b4dul
#define KDSIGACCEPT 0x4b4eul
#define VT_OPENQRY 0x5600ul
#define VT_GETMODE 0x5601ul
#define VT_SETMODE 0x5602ul
#define VT_GETSTATE 0x5603ul
#define VT_RELDISP 0x5605ul
#define VT_ACTIVATE 0x5606ul
#define VT_WAITACTIVE 0x5607ul
#define VT_DISALLOCATE 0x5608ul
#define VT_RESIZE 0x5609ul
#define VT_RESIZEX 0x560aul
#define FIOSETOWN 0x8901ul
#define SIOCSPGRP 0x8902ul
#define FIOGETOWN 0x8903ul
#define SIOCGPGRP 0x8904ul
#define SIOCATMARK 0x8905ul
#define SIOCGSTAMP 0x8906ul
#define TIOCINQ 0x541bul
#define SIOCADDRT 0x890bul
#define SIOCDELRT 0x890cul
#define SIOCGIFNAME 0x8910ul
#define SIOCSIFLINK 0x8911ul
#define SIOCGIFCONF 0x8912ul
#define SIOCGIFFLAGS 0x8913ul
#define SIOCSIFFLAGS 0x8914ul
#define SIOCGIFADDR 0x8915ul
#define SIOCSIFADDR 0x8916ul
#define SIOCGIFDSTADDR 0x8917ul
#define SIOCSIFDSTADDR 0x8918ul
#define SIOCGIFBRDADDR 0x8919ul
#define SIOCSIFBRDADDR 0x891aul
#define SIOCGIFNETMASK 0x891bul
#define SIOCSIFNETMASK 0x891cul
#define SIOCGIFMETRIC 0x891dul
#define SIOCSIFMETRIC 0x891eul
#define SIOCGIFMEM 0x891ful
#define SIOCSIFMEM 0x8920ul
#define SIOCGIFMTU 0x8921ul
#define SIOCSIFMTU 0x8922ul
#define SIOCSIFHWADDR 0x8924ul
#define SIOCGIFENCAP 0x8925ul
#define SIOCSIFENCAP 0x8926ul
#define SIOCGIFHWADDR 0x8927ul
#define SIOCGIFSLAVE 0x8929ul
#define SIOCSIFSLAVE 0x8930ul
#define SIOCADDMULTI 0x8931ul
#define SIOCDELMULTI 0x8932ul
#define SIOCDARP 0x8953ul
#define SIOCGARP 0x8954ul
#define SIOCSARP 0x8955ul
#define SIOCDRARP 0x8960ul
#define SIOCGRARP 0x8961ul
#define SIOCSRARP 0x8962ul
#define SIOCGIFMAP 0x8970ul
#define SIOCSIFMAP 0x8971ul
#define SIOCRTMSG 0x890dul
#define SIOCSIFNAME 0x8923ul
#define SIOCGIFINDEX 0x8933ul
#define SIOGIFINDEX 0x8933ul
#define SIOCSIFPFLAGS 0x8934ul
#define SIOCGIFPFLAGS 0x8935ul
#define SIOCDIFADDR 0x8936ul
#define SIOCSIFHWBROADCAST 0x8937ul
#define SIOCGIFCOUNT 0x8938ul
#define SIOCGIFBR 0x8940ul
#define SIOCSIFBR 0x8941ul
#define SIOCGIFTXQLEN 0x8942ul
#define SIOCSIFTXQLEN 0x8943ul
#define SIOCADDDLCI 0x8980ul
#define SIOCDELDLCI 0x8981ul
#define SIOCDEVPRIVATE 0x89f0ul
#define SIOCPROTOPRIVATE 0x89e0ul
#define FIBMAP 0x1ul
#define FIGETBSZ 0x2ul
#define FIFREEZE 0xc0045877ul
#define FITHAW 0xc0045878ul
#define FITRIM 0xc0185879ul
#define FICLONE 0x40049409ul
#define FICLONERANGE 0x4020940dul
#define FIDEDUPERANGE 0xc0189436ul
#define FS_IOC_GETFLAGS 0x80046601ul
#define FS_IOC_SETFLAGS 0x40046602ul
#define FS_IOC_GETVERSION 0x80047601ul
#define FS_IOC_SETVERSION 0x40047602ul
#define FS_IOC_FIEMAP 0xc020660bul
#define FS_IOC32_GETFLAGS 0x80046601ul
#define FS_IOC32_SETFLAGS 0x40046602ul
#define FS_IOC32_GETVERSION 0x80047601ul
#define FS_IOC32_SETVERSION 0x40047602ul
#define FS_IOC_FSGETXATTR 0x801c581ful
#define FS_IOC_FSSETXATTR 0x401c5820ul
#define FS_IOC_GETFSLABEL 0x81009431ul
#define FS_IOC_SETFSLABEL 0x41009432ul
#define EXT4_IOC_GETVERSION 0x80046603ul
#define EXT4_IOC_SETVERSION 0x40046604ul
#define EXT4_IOC_GETVERSION_OLD 0x80047601ul
#define EXT4_IOC_SETVERSION_OLD 0x40047602ul
#define EXT4_IOC_GETRSVSZ 0x80046605ul
#define EXT4_IOC_SETRSVSZ 0x40046606ul
#define EXT4_IOC_GROUP_EXTEND 0x40046607ul
#define EXT4_IOC_MIGRATE 0x6609ul
#define EXT4_IOC_ALLOC_DA_BLKS 0x660cul
#define EXT4_IOC_RESIZE_FS 0x40086610ul
#define EXT4_IOC_SWAP_BOOT 0x6611ul
#define EXT4_IOC_PRECACHE_EXTENTS 0x6612ul
#define EXT4_IOC_CLEAR_ES_CACHE 0x6628ul
#define EXT4_IOC_GETSTATE 0x40046629ul
#define EXT4_IOC_GET_ES_CACHE 0xc020662aul
#define EXT4_IOC_CHECKPOINT 0x4004662bul
#define EXT4_IOC_SHUTDOWN 0x8004587dul
#define EXT4_IOC32_GETVERSION 0x80046603ul
#define EXT4_IOC32_SETVERSION 0x40046604ul
#define EXT4_IOC32_GETRSVSZ 0x80046605ul
#define EXT4_IOC32_SETRSVSZ 0x40046606ul
#define EXT4_IOC32_GROUP_EXTEND 0x40046607ul
#define EXT4_IOC32_GETVERSION_OLD 0x80047601ul
#define EXT4_IOC32_SETVERSION_OLD 0x40047602ul
#define VIDIOC_SUBDEV_QUERYSTD 0x8008563ful
#define AUTOFS_DEV_IOCTL_CLOSEMOUNT 0xc0189375ul
#define LIRC_SET_SEND_CARRIER 0x40046913ul
#define AUTOFS_IOC_PROTOSUBVER 0x80049367ul
#define PTP_SYS_OFFSET_PRECISE 0xc0403d08ul
#define FSI_SCOM_WRITE 0xc0207302ul
#define ATM_GETCIRANGE 0x400c618aul
#define DMA_BUF_SET_NAME_B 0x40086201ul
#define RIO_CM_EP_GET_LIST_SIZE 0xc0046301ul
#define TUNSETPERSIST 0x400454cbul
#define FS_IOC_GET_ENCRYPTION_POLICY 0x400c6615ul
#define CEC_RECEIVE 0xc0386106ul
#define MGSL_IOCGPARAMS 0x80206d01ul
#define ENI_SETMULT 0x400c6167ul
#define RIO_GET_EVENT_MASK 0x80046d0eul
#define LIRC_GET_MAX_TIMEOUT 0x80046909ul
#define USBDEVFS_CLAIMINTERFACE 0x8004550ful
#define CHIOMOVE 0x40146301ul
#define SONYPI_IOCGBATFLAGS 0x80017607ul
#define BTRFS_IOC_SYNC 0x9408ul
#define VIDIOC_TRY_FMT 0xc0cc5640ul
#define LIRC_SET_REC_MODE 0x40046912ul
#define VIDIOC_DQEVENT 0x80785659ul
#define RPMSG_DESTROY_EPT_IOCTL 0xb502ul
#define UVCIOC_CTRL_MAP 0xc0587520ul
#define VHOST_SET_BACKEND_FEATURES 0x4008af25ul
#define VHOST_VSOCK_SET_GUEST_CID 0x4008af60ul
#define UI_SET_KEYBIT 0x40045565ul
#define LIRC_SET_REC_TIMEOUT 0x40046918ul
#define FS_IOC_GET_ENCRYPTION_KEY_STATUS 0xc080661aul
#define BTRFS_IOC_TREE_SEARCH_V2 0xc0709411ul
#define VHOST_SET_VRING_BASE 0x4008af12ul
#define RIO_ENABLE_DOORBELL_RANGE 0x40086d09ul
#define VIDIOC_TRY_EXT_CTRLS 0xc0185649ul
#define LIRC_GET_REC_MODE 0x80046902ul
#define PPGETTIME 0x80087095ul
#define BTRFS_IOC_RM_DEV 0x5000940bul
#define ATM_SETBACKEND 0x400261f2ul
#define FSL_HV_IOCTL_PARTITION_START 0xc010af03ul
#define FBIO_WAITEVENT 0x4688ul
#define SWITCHTEC_IOCTL_PORT_TO_PFF 0xc00c5745ul
#define NVME_IOCTL_IO_CMD 0xc0484e43ul
#define IPMICTL_RECEIVE_MSG_TRUNC 0xc018690bul
#define FDTWADDLE 0x259ul
#define NVME_IOCTL_SUBMIT_IO 0x402c4e42ul
#define NILFS_IOCTL_SYNC 0x80086e8aul
#define VIDIOC_SUBDEV_S_DV_TIMINGS 0xc0845657ul
#define ASPEED_LPC_CTRL_IOCTL_GET_SIZE 0xc010b200ul
#define DM_DEV_STATUS 0xc138fd07ul
#define TEE_IOC_CLOSE_SESSION 0x8004a405ul
#define NS_GETPSTAT 0xc00c6161ul
#define UI_SET_PROPBIT 0x4004556eul
#define TUNSETFILTEREBPF 0x800454e1ul
#define RIO_MPORT_MAINT_COMPTAG_SET 0x40046d02ul
#define AUTOFS_DEV_IOCTL_VERSION 0xc0189371ul
#define WDIOC_SETOPTIONS 0x80045704ul
#define VHOST_SCSI_SET_ENDPOINT 0x40e8af40ul
#define MGSL_IOCGTXIDLE 0x6d03ul
#define ATM_ADDLECSADDR 0x400c618eul
#define FSL_HV_IOCTL_GETPROP 0xc028af07ul
#define FDGETPRM 0x801c0204ul
#define HIDIOCAPPLICATION 0x4802ul
#define ENI_MEMDUMP 0x400c6160ul
#define PTP_SYS_OFFSET2 0x43403d0eul
#define VIDIOC_SUBDEV_G_DV_TIMINGS 0xc0845658ul
#define DMA_BUF_SET_NAME_A 0x40046201ul
#define PTP_PIN_GETFUNC 0xc0603d06ul
#define PTP_SYS_OFFSET_EXTENDED 0xc4c03d09ul
#define DFL_FPGA_PORT_UINT_SET_IRQ 0x4008b648ul
#define RTC_EPOCH_READ 0x8004700dul
#define VIDIOC_SUBDEV_S_SELECTION 0xc040563eul
#define VIDIOC_QUERY_EXT_CTRL 0xc0e85667ul
#define ATM_GETLECSADDR 0x400c6190ul
#define FSL_HV_IOCTL_PARTITION_STOP 0xc008af04ul
#define SONET_GETDIAG 0x80046114ul
#define ATMMPC_DATA 0x61d9ul
#define IPMICTL_UNREGISTER_FOR_CMD_CHANS 0x800c691dul
#define HIDIOCGCOLLECTIONINDEX 0x40184810ul
#define RPMSG_CREATE_EPT_IOCTL 0x4028b501ul
#define GPIOHANDLE_GET_LINE_VALUES_IOCTL 0xc040b408ul
#define UI_DEV_SETUP 0x405c5503ul
#define ISST_IF_IO_CMD 0x4004fe02ul
#define RIO_MPORT_MAINT_READ_REMOTE 0x80186d07ul
#define VIDIOC_OMAP3ISP_HIST_CFG 0xc03056c4ul
#define BLKGETNRZONES 0x80041285ul
#define VIDIOC_G_MODULATOR 0xc0445636ul
#define VBG_IOCTL_WRITE_CORE_DUMP 0xc01c5613ul
#define USBDEVFS_SETINTERFACE 0x80085504ul
#define PPPIOCGCHAN 0x80047437ul
#define EVIOCGVERSION 0x80044501ul
#define VHOST_NET_SET_BACKEND 0x4008af30ul
#define USBDEVFS_REAPURBNDELAY 0x4004550dul
#define RNDZAPENTCNT 0x5204ul
#define VIDIOC_G_PARM 0xc0cc5615ul
#define TUNGETDEVNETNS 0x54e3ul
#define LIRC_SET_MEASURE_CARRIER_MODE 0x4004691dul
#define VHOST_SET_VRING_ERR 0x4008af22ul
#define VDUSE_VQ_SETUP 0x40208114ul
#define AUTOFS_IOC_SETTIMEOUT 0xc0049364ul
#define VIDIOC_S_FREQUENCY 0x402c5639ul
#define F2FS_IOC_SEC_TRIM_FILE 0x4018f514ul
#define FS_IOC_REMOVE_ENCRYPTION_KEY 0xc0406618ul
#define WDIOC_GETPRETIMEOUT 0x80045709ul
#define USBDEVFS_DROP_PRIVILEGES 0x4004551eul
#define BTRFS_IOC_SNAP_CREATE_V2 0x50009417ul
#define VHOST_VSOCK_SET_RUNNING 0x4004af61ul
#define STP_SET_OPTIONS 0x40082502ul
#define FBIO_RADEON_GET_MIRROR 0x80044003ul
#define IVTVFB_IOC_DMA_FRAME 0x400c56c0ul
#define IPMICTL_SEND_COMMAND 0x8014690dul
#define VIDIOC_G_ENC_INDEX 0x8818564cul
#define DFL_FPGA_FME_PORT_PR 0xb680ul
#define CHIOSVOLTAG 0x40306312ul
#define ATM_SETESIF 0x400c618dul
#define FW_CDEV_IOC_SEND_RESPONSE 0x40142304ul
#define PMU_IOC_GET_MODEL 0x80044203ul
#define JSIOCGBTNMAP 0x84006a34ul
#define USBDEVFS_HUB_PORTINFO 0x80805513ul
#define VBG_IOCTL_INTERRUPT_ALL_WAIT_FOR_EVENTS 0xc018560bul
#define FDCLRPRM 0x241ul
#define BTRFS_IOC_SCRUB 0xc400941bul
#define USBDEVFS_DISCONNECT 0x5516ul
#define TUNSETVNETBE 0x400454deul
#define ATMTCP_REMOVE 0x618ful
#define VHOST_VDPA_GET_CONFIG 0x8008af73ul
#define PPPIOCGNPMODE 0xc008744cul
#define FDGETDRVPRM 0x80580211ul
#define TUNSETVNETLE 0x400454dcul
#define PHN_SETREG 0x40087006ul
#define PPPIOCDETACH 0x4004743cul
#define MMTIMER_GETRES 0x80046d01ul
#define VIDIOC_SUBDEV_ENUMSTD 0xc0405619ul
#define PPGETFLAGS 0x8004709aul
#define VDUSE_DEV_GET_FEATURES 0x80088111ul
#define CAPI_MANUFACTURER_CMD 0xc0084320ul
#define VIDIOC_G_TUNER 0xc054561dul
#define DM_TABLE_STATUS 0xc138fd0cul
#define DM_DEV_ARM_POLL 0xc138fd10ul
#define NE_CREATE_VM 0x8008ae20ul
#define MEDIA_IOC_ENUM_LINKS 0xc01c7c02ul
#define F2FS_IOC_PRECACHE_EXTENTS 0xf50ful
#define DFL_FPGA_PORT_DMA_MAP 0xb643ul
#define MGSL_IOCGXCTRL 0x6d16ul
#define FW_CDEV_IOC_SEND_REQUEST 0x40242301ul
#define SONYPI_IOCGBLUE 0x80017608ul
#define F2FS_IOC_DECOMPRESS_FILE 0xf517ul
#define I2OHTML 0xc01c6909ul
#define VFIO_GET_API_VERSION 0x3b64ul
#define IDT77105_GETSTATZ 0x400c6133ul
#define I2OPARMSET 0xc0186903ul
#define TEE_IOC_CANCEL 0x8008a404ul
#define PTP_SYS_OFFSET_PRECISE2 0xc0403d11ul
#define DFL_FPGA_PORT_RESET 0xb640ul
#define PPPIOCGASYNCMAP 0x80047458ul
#define EVIOCGKEYCODE_V2 0x80284504ul
#define DM_DEV_SET_GEOMETRY 0xc138fd0ful
#define HIDIOCSUSAGE 0x4018480cul
#define FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE_ONCE 0x40182310ul
#define PTP_EXTTS_REQUEST 0x40103d02ul
#define SWITCHTEC_IOCTL_EVENT_CTL 0xc0285743ul
#define WDIOC_SETPRETIMEOUT 0xc0045708ul
#define VHOST_SCSI_CLEAR_ENDPOINT 0x40e8af41ul
#define JSIOCGAXES 0x80016a11ul
#define HIDIOCSFLAG 0x4004480ful
#define PTP_PEROUT_REQUEST2 0x40383d0cul
#define PPWDATA 0x40017086ul
#define PTP_CLOCK_GETCAPS 0x80503d01ul
#define FDGETMAXERRS 0x8014020eul
#define TUNSETQUEUE 0x400454d9ul
#define PTP_ENABLE_PPS 0x40043d04ul
#define SIOCSIFATMTCP 0x6180ul
#define CEC_ADAP_G_LOG_ADDRS 0x805c6103ul
#define ND_IOCTL_ARS_CAP 0xc0204e01ul
#define NBD_SET_BLKSIZE 0xab01ul
#define NBD_SET_TIMEOUT 0xab09ul
#define VHOST_SCSI_GET_ABI_VERSION 0x4004af42ul
#define RIO_UNMAP_INBOUND 0x40086d12ul
#define ATM_QUERYLOOP 0x400c6154ul
#define DFL_FPGA_GET_API_VERSION 0xb600ul
#define USBDEVFS_WAIT_FOR_RESUME 0x5523ul
#define FBIO_CURSOR 0xc0484608ul
#define RNDCLEARPOOL 0x5206ul
#define VIDIOC_QUERYSTD 0x8008563ful
#define DMA_BUF_IOCTL_SYNC 0x40086200ul
#define SCIF_RECV 0xc0147307ul
#define PTP_PIN_GETFUNC2 0xc0603d0ful
#define FW_CDEV_IOC_ALLOCATE 0xc0202302ul
#define CEC_ADAP_G_CAPS 0xc04c6100ul
#define VIDIOC_G_FBUF 0x802c560aul
#define PTP_ENABLE_PPS2 0x40043d0dul
#define PCITEST_CLEAR_IRQ 0x5010ul
#define IPMICTL_SET_GETS_EVENTS_CMD 0x80046910ul
#define BTRFS_IOC_DEVICES_READY 0x90009427ul
#define JSIOCGAXMAP 0x80406a32ul
#define FW_CDEV_IOC_GET_CYCLE_TIMER 0x800c230cul
#define FW_CDEV_IOC_SET_ISO_CHANNELS 0x400c2317ul
#define RTC_WIE_OFF 0x7010ul
#define PPGETMODE 0x80047098ul
#define VIDIOC_DBG_G_REGISTER 0xc0385650ul
#define PTP_SYS_OFFSET 0x43403d05ul
#define BTRFS_IOC_SPACE_INFO 0xc0109414ul
#define VIDIOC_SUBDEV_ENUM_FRAME_SIZE 0xc040564aul
#define ND_IOCTL_VENDOR 0xc0084e09ul
#define SCIF_VREADFROM 0xc024730cul
#define BTRFS_IOC_TRANS_START 0x9406ul
#define INOTIFY_IOC_SETNEXTWD 0x40044900ul
#define SNAPSHOT_GET_IMAGE_SIZE 0x8008330eul
#define TUNDETACHFILTER 0x400854d6ul
#define ND_IOCTL_CLEAR_ERROR 0xc0204e04ul
#define IOC_PR_CLEAR 0x401070cdul
#define SCIF_READFROM 0xc024730aul
#define PPPIOCGDEBUG 0x80047441ul
#define BLKGETZONESZ 0x80041284ul
#define HIDIOCGUSAGES 0xd01c4813ul
#define SONYPI_IOCGTEMP 0x8001760cul
#define UI_SET_MSCBIT 0x40045568ul
#define APM_IOC_SUSPEND 0x4102ul
#define BTRFS_IOC_TREE_SEARCH 0xd0009411ul
#define RTC_PLL_GET 0x801c7011ul
#define RIO_CM_EP_GET_LIST 0xc0046302ul
#define USBDEVFS_DISCSIGNAL 0x8008550eul
#define LIRC_GET_MIN_TIMEOUT 0x80046908ul
#define SWITCHTEC_IOCTL_EVENT_SUMMARY_LEGACY 0x81985742ul
#define DM_TARGET_MSG 0xc138fd0eul
#define SONYPI_IOCGBAT1REM 0x80027603ul
#define EVIOCSFF 0x402c4580ul
#define TUNSETGROUP 0x400454ceul
#define EVIOCGKEYCODE 0x80084504ul
#define KCOV_REMOTE_ENABLE 0x40186366ul
#define ND_IOCTL_GET_CONFIG_SIZE 0xc00c4e04ul
#define FDEJECT 0x25aul
#define TUNSETOFFLOAD 0x400454d0ul
#define PPPIOCCONNECT 0x4004743aul
#define ATM_ADDADDR 0x400c6188ul
#define VDUSE_DEV_INJECT_CONFIG_IRQ 0x8113ul
#define AUTOFS_DEV_IOCTL_ASKUMOUNT 0xc018937dul
#define VHOST_VDPA_GET_STATUS 0x8001af71ul
#define CCISS_PASSTHRU 0xc054420bul
#define MGSL_IOCCLRMODCOUNT 0x6d0ful
#define TEE_IOC_SUPPL_SEND 0x8010a407ul
#define ATMARPD_CTRL 0x61e1ul
#define UI_ABS_SETUP 0x401c5504ul
#define UI_DEV_DESTROY 0x5502ul
#define BTRFS_IOC_QUOTA_CTL 0xc0109428ul
#define RTC_AIE_ON 0x7001ul
#define AUTOFS_IOC_EXPIRE 0x810c9365ul
#define PPPIOCSDEBUG 0x40047440ul
#define GPIO_V2_LINE_SET_VALUES_IOCTL 0xc010b40ful
#define PPPIOCSMRU 0x40047452ul
#define CCISS_DEREGDISK 0x420cul
#define UI_DEV_CREATE 0x5501ul
#define FUSE_DEV_IOC_CLONE 0x8004e500ul
#define BTRFS_IOC_START_SYNC 0x80089418ul
#define NILFS_IOCTL_DELETE_CHECKPOINT 0x40086e81ul
#define SNAPSHOT_AVAIL_SWAP_SIZE 0x80083313ul
#define DM_TABLE_CLEAR 0xc138fd0aul
#define CCISS_GETINTINFO 0x80084202ul
#define PPPIOCSASYNCMAP 0x40047457ul
#define I2OEVTGET 0x8068690bul
#define NVME_IOCTL_RESET 0x4e44ul
#define PPYIELD 0x708dul
#define NVME_IOCTL_IO64_CMD 0xc0504e48ul
#define TUNSETCARRIER 0x400454e2ul
#define DM_DEV_WAIT 0xc138fd08ul
#define RTC_WIE_ON 0x700ful
#define MEDIA_IOC_DEVICE_INFO 0xc1007c00ul
#define RIO_CM_CHAN_CREATE 0xc0026303ul
#define MGSL_IOCSPARAMS 0x40206d00ul
#define RTC_SET_TIME 0x4024700aul
#define VHOST_RESET_OWNER 0xaf02ul
#define IOC_OPAL_PSID_REVERT_TPR 0x410870e8ul
#define AUTOFS_DEV_IOCTL_OPENMOUNT 0xc0189374ul
#define UDF_GETEABLOCK 0x80046c41ul
#define VFIO_IOMMU_MAP_DMA 0x3b71ul
#define VIDIOC_SUBSCRIBE_EVENT 0x4020565aul
#define HIDIOCGFLAG 0x8004480eul
#define HIDIOCGUCODE 0xc018480dul
#define VIDIOC_OMAP3ISP_AF_CFG 0xc04c56c5ul
#define DM_REMOVE_ALL 0xc138fd01ul
#define ASPEED_LPC_CTRL_IOCTL_MAP 0x4010b201ul
#define CCISS_GETFIRMVER 0x80044208ul
#define ND_IOCTL_ARS_START 0xc0204e02ul
#define PPPIOCSMRRU 0x4004743bul
#define CEC_ADAP_S_LOG_ADDRS 0xc05c6104ul
#define RPROC_GET_SHUTDOWN_ON_RELEASE 0x8004b702ul
#define DMA_HEAP_IOCTL_ALLOC 0xc0184800ul
#define PPSETTIME 0x40087096ul
#define RTC_ALM_READ 0x80247008ul
#define VDUSE_SET_API_VERSION 0x40088101ul
#define RIO_MPORT_MAINT_WRITE_REMOTE 0x40186d08ul
#define VIDIOC_SUBDEV_S_CROP 0xc038563cul
#define USBDEVFS_CONNECT 0x5517ul
#define SYNC_IOC_FILE_INFO 0xc0383e04ul
#define ATMARP_MKIP 0x61e2ul
#define VFIO_IOMMU_SPAPR_TCE_GET_INFO 0x3b70ul
#define CCISS_GETHEARTBEAT 0x80044206ul
#define ATM_RSTADDR 0x400c6187ul
#define NBD_SET_SIZE 0xab02ul
#define UDF_GETVOLIDENT 0x80046c42ul
#define GPIO_V2_LINE_GET_VALUES_IOCTL 0xc010b40eul
#define MGSL_IOCSTXIDLE 0x6d02ul
#define FSL_HV_IOCTL_SETPROP 0xc028af08ul
#define BTRFS_IOC_GET_DEV_STATS 0xc4089434ul
#define PPRSTATUS 0x80017081ul
#define MGSL_IOCTXENABLE 0x6d04ul
#define UDF_GETEASIZE 0x80046c40ul
#define NVME_IOCTL_ADMIN64_CMD 0xc0504e47ul
#define VHOST_SET_OWNER 0xaf01ul
#define RIO_ALLOC_DMA 0xc0186d13ul
#define RIO_CM_CHAN_ACCEPT 0xc0086307ul
#define I2OHRTGET 0xc00c6901ul
#define ATM_SETCIRANGE 0x400c618bul
#define HPET_IE_ON 0x6801ul
#define PERF_EVENT_IOC_ID 0x80042407ul
#define TUNSETSNDBUF 0x400454d4ul
#define PTP_PIN_SETFUNC 0x40603d07ul
#define PPPIOCDISCONN 0x7439ul
#define VIDIOC_QUERYCTRL 0xc0445624ul
#define PPEXCL 0x708ful
#define PCITEST_MSI 0x40045003ul
#define FDWERRORCLR 0x256ul
#define AUTOFS_IOC_FAIL 0x9361ul
#define USBDEVFS_IOCTL 0xc00c5512ul
#define VIDIOC_S_STD 0x40085618ul
#define F2FS_IOC_RESIZE_FS 0x4008f510ul
#define SONET_SETDIAG 0xc0046112ul
#define BTRFS_IOC_DEFRAG 0x50009402ul
#define CCISS_GETDRIVVER 0x80044209ul
#define IPMICTL_GET_TIMING_PARMS_CMD 0x80086917ul
#define HPET_IRQFREQ 0x40046806ul
#define ATM_GETESI 0x400c6185ul
#define CCISS_GETLUNINFO 0x800c4211ul
#define AUTOFS_DEV_IOCTL_ISMOUNTPOINT 0xc018937eul
#define TEE_IOC_SHM_ALLOC 0xc010a401ul
#define PERF_EVENT_IOC_SET_BPF 0x40042408ul
#define UDMABUF_CREATE_LIST 0x40087543ul
#define VHOST_SET_LOG_BASE 0x4008af04ul
#define ZATM_GETPOOL 0x400c6161ul
#define BR2684_SETFILT 0x401c6190ul
#define RNDGETPOOL 0x80085202ul
#define PPS_GETPARAMS 0x800470a1ul
#define IOC_PR_RESERVE 0x401070c9ul
#define VIDIOC_TRY_DECODER_CMD 0xc0485661ul
#define RIO_CM_CHAN_CLOSE 0x40026304ul
#define VIDIOC_DV_TIMINGS_CAP 0xc0905664ul
#define IOCTL_MEI_CONNECT_CLIENT_VTAG 0xc0144804ul
#define PMU_IOC_GET_BACKLIGHT 0x80044201ul
#define USBDEVFS_GET_CAPABILITIES 0x8004551aul
#define SCIF_WRITETO 0xc024730bul
#define UDF_RELOCATE_BLOCKS 0xc0046c43ul
#define FSL_HV_IOCTL_PARTITION_RESTART 0xc008af01ul
#define CCISS_REGNEWD 0x420eul
#define FAT_IOCTL_SET_ATTRIBUTES 0x40047211ul
#define VIDIOC_CREATE_BUFS 0xc0f8565cul
#define CAPI_GET_VERSION 0xc0104307ul
#define SWITCHTEC_IOCTL_EVENT_SUMMARY 0x84d45742ul
#define VFIO_EEH_PE_OP 0x3b79ul
#define FW_CDEV_IOC_CREATE_ISO_CONTEXT 0xc01c2308ul
#define F2FS_IOC_RELEASE_COMPRESS_BLOCKS 0x8008f512ul
#define NBD_SET_SIZE_BLOCKS 0xab07ul
#define IPMI_BMC_IOCTL_SET_SMS_ATN 0xb100ul
#define ASPEED_P2A_CTRL_IOCTL_GET_MEMORY_CONFIG 0xc010b301ul
#define VIDIOC_S_AUDOUT 0x40345632ul
#define VIDIOC_S_FMT 0xc0cc5605ul
#define PPPIOCATTACH 0x4004743dul
#define VHOST_GET_VRING_BUSYLOOP_TIMEOUT 0x4008af24ul
#define FS_IOC_MEASURE_VERITY 0xc0046686ul
#define CCISS_BIG_PASSTHRU 0xc0584212ul
#define IPMICTL_SET_MY_LUN_CMD 0x80046913ul
#define PCITEST_LEGACY_IRQ 0x5002ul
#define USBDEVFS_SUBMITURB 0x802c550aul
#define AUTOFS_IOC_READY 0x9360ul
#define BTRFS_IOC_SEND 0x40449426ul
#define VIDIOC_G_EXT_CTRLS 0xc0185647ul
#define JSIOCSBTNMAP 0x44006a33ul
#define PPPIOCSFLAGS 0x40047459ul
#define NVRAM_INIT 0x7040ul
#define RFKILL_IOCTL_NOINPUT 0x5201ul
#define BTRFS_IOC_BALANCE 0x5000940cul
#define FS_IOC_GETFSMAP 0xc0c0583bul
#define IPMICTL_GET_MY_CHANNEL_LUN_CMD 0x8004691bul
#define STP_POLICY_ID_GET 0x80102501ul
#define PPSETFLAGS 0x4004709bul
#define CEC_ADAP_S_PHYS_ADDR 0x40026102ul
#define ATMTCP_CREATE 0x618eul
#define IPMI_BMC_IOCTL_FORCE_ABORT 0xb102ul
#define PPPIOCGXASYNCMAP 0x80207450ul
#define VHOST_SET_VRING_CALL 0x4008af21ul
#define LIRC_GET_FEATURES 0x80046900ul
#define GSMIOC_DISABLE_NET 0x4703ul
#define AUTOFS_IOC_CATATONIC 0x9362ul
#define NBD_DO_IT 0xab03ul
#define LIRC_SET_REC_CARRIER_RANGE 0x4004691ful
#define IPMICTL_GET_MY_CHANNEL_ADDRESS_CMD 0x80046919ul
#define EVIOCSCLOCKID 0x400445a0ul
#define USBDEVFS_FREE_STREAMS 0x8008551dul
#define FSI_SCOM_RESET 0x40047303ul
#define PMU_IOC_GRAB_BACKLIGHT 0x80044206ul
#define VIDIOC_SUBDEV_S_FMT 0xc0585605ul
#define FDDEFPRM 0x401c0243ul
#define TEE_IOC_INVOKE 0x8010a403ul
#define USBDEVFS_BULK 0xc0105502ul
#define SCIF_VWRITETO 0xc024730dul
#define SONYPI_IOCSBRT 0x40017600ul
#define BTRFS_IOC_FILE_EXTENT_SAME 0xc0189436ul
#define RTC_PIE_ON 0x7005ul
#define BTRFS_IOC_SCAN_DEV 0x50009404ul
#define PPPIOCXFERUNIT 0x744eul
#define WDIOC_GETTIMEOUT 0x80045707ul
#define BTRFS_IOC_SET_RECEIVED_SUBVOL 0xc0c09425ul
#define DFL_FPGA_PORT_ERR_SET_IRQ 0x4008b646ul
#define FBIO_WAITFORVSYNC 0x40044620ul
#define RTC_PIE_OFF 0x7006ul
#define EVIOCGRAB 0x40044590ul
#define PMU_IOC_SET_BACKLIGHT 0x40044202ul
#define EVIOCGREP 0x80084503ul
#define PERF_EVENT_IOC_MODIFY_ATTRIBUTES 0x4004240bul
#define UFFDIO_CONTINUE 0xc020aa07ul
#define VDUSE_GET_API_VERSION 0x80088100ul
#define RTC_RD_TIME 0x80247009ul
#define FDMSGOFF 0x246ul
#define IPMICTL_REGISTER_FOR_CMD_CHANS 0x800c691cul
#define CAPI_GET_ERRCODE 0x80024321ul
#define PCITEST_SET_IRQTYPE 0x40045008ul
#define VIDIOC_SUBDEV_S_EDID 0xc0245629ul
#define MATROXFB_SET_OUTPUT_MODE 0x40046efaul
#define RIO_DEV_ADD 0x40206d17ul
#define VIDIOC_ENUM_FREQ_BANDS 0xc0405665ul
#define FBIO_RADEON_SET_MIRROR 0x40044004ul
#define PCITEST_GET_IRQTYPE 0x5009ul
#define JSIOCGVERSION 0x80046a01ul
#define SONYPI_IOCSBLUE 0x40017609ul
#define SNAPSHOT_PREF_IMAGE_SIZE 0x3312ul
#define F2FS_IOC_GET_FEATURES 0x8004f50cul
#define SCIF_REG 0xc0287308ul
#define NILFS_IOCTL_CLEAN_SEGMENTS 0x40786e88ul
#define FW_CDEV_IOC_INITIATE_BUS_RESET 0x40042305ul
#define RIO_WAIT_FOR_ASYNC 0x40086d16ul
#define VHOST_SET_VRING_NUM 0x4008af10ul
#define AUTOFS_DEV_IOCTL_PROTOVER 0xc0189372ul
#define RIO_FREE_DMA 0x40086d14ul
#define MGSL_IOCRXENABLE 0x6d05ul
#define IOCTL_VM_SOCKETS_GET_LOCAL_CID 0x7b9ul
#define IPMICTL_SET_TIMING_PARMS_CMD 0x80086916ul
#define PPPIOCGL2TPSTATS 0x80487436ul
#define PERF_EVENT_IOC_PERIOD 0x40082404ul
#define PTP_PIN_SETFUNC2 0x40603d10ul
#define CHIOEXCHANGE 0x401c6302ul
#define NILFS_IOCTL_GET_SUINFO 0x80186e84ul
#define CEC_DQEVENT 0xc0506107ul
#define UI_SET_SWBIT 0x4004556dul
#define VHOST_VDPA_SET_CONFIG 0x4008af74ul
#define TUNSETIFF 0x400454caul
#define CHIOPOSITION 0x400c6303ul
#define IPMICTL_SET_MAINTENANCE_MODE_CMD 0x4004691ful
#define BTRFS_IOC_DEFAULT_SUBVOL 0x40089413ul
#define RIO_UNMAP_OUTBOUND 0x40286d10ul
#define CAPI_CLR_FLAGS 0x80044325ul
#define FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE_ONCE 0x4018230ful
#define MATROXFB_GET_OUTPUT_CONNECTION 0x80046ef8ul
#define EVIOCSMASK 0x40104593ul
#define BTRFS_IOC_FORGET_DEV 0x50009405ul
#define CXL_MEM_QUERY_COMMANDS 0x8008ce01ul
#define CEC_S_MODE 0x40046109ul
#define MGSL_IOCSIF 0x6d0aul
#define SWITCHTEC_IOCTL_PFF_TO_PORT 0xc00c5744ul
#define PPSETMODE 0x40047080ul
#define VFIO_DEVICE_SET_IRQS 0x3b6eul
#define VIDIOC_PREPARE_BUF 0xc044565dul
#define CEC_ADAP_G_CONNECTOR_INFO 0x8044610aul
#define IOC_OPAL_WRITE_SHADOW_MBR 0x412070eaul
#define VIDIOC_SUBDEV_ENUM_FRAME_INTERVAL 0xc040564bul
#define UDMABUF_CREATE 0x40187542ul
#define SONET_CLRDIAG 0xc0046113ul
#define PHN_SET_REG 0x40047001ul
#define RNDADDTOENTCNT 0x40045201ul
#define VBG_IOCTL_CHECK_BALLOON 0xc0205611ul
#define VIDIOC_OMAP3ISP_STAT_REQ 0xc01856c6ul
#define PPS_FETCH 0xc00470a4ul
#define RTC_AIE_OFF 0x7002ul
#define VFIO_GROUP_SET_CONTAINER 0x3b68ul
#define FW_CDEV_IOC_RECEIVE_PHY_PACKETS 0x40082316ul
#define VFIO_IOMMU_SPAPR_TCE_REMOVE 0x3b78ul
#define VFIO_IOMMU_GET_INFO 0x3b70ul
#define DM_DEV_SUSPEND 0xc138fd06ul
#define F2FS_IOC_GET_COMPRESS_OPTION 0x8002f515ul
#define FW_CDEV_IOC_STOP_ISO 0x4004230bul
#define GPIO_V2_GET_LINEINFO_IOCTL 0xc100b405ul
#define ATMMPC_CTRL 0x61d8ul
#define PPPIOCSXASYNCMAP 0x4020744ful
#define CHIOGSTATUS 0x40086308ul
#define FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE 0xc018230dul
#define RIO_MPORT_MAINT_PORT_IDX_GET 0x80046d03ul
#define CAPI_SET_FLAGS 0x80044324ul
#define VFIO_GROUP_GET_DEVICE_FD 0x3b6aul
#define VHOST_SET_MEM_TABLE 0x4008af03ul
#define MATROXFB_SET_OUTPUT_CONNECTION 0x40046ef8ul
#define DFL_FPGA_PORT_GET_REGION_INFO 0xb642ul
#define VHOST_GET_FEATURES 0x8008af00ul
#define LIRC_GET_REC_RESOLUTION 0x80046907ul
#define PACKET_CTRL_CMD 0xc0185801ul
#define LIRC_SET_TRANSMITTER_MASK 0x40046917ul
#define BTRFS_IOC_ADD_DEV 0x5000940aul
#define JSIOCGCORR 0x80246a22ul
#define VIDIOC_G_FMT 0xc0cc5604ul
#define RTC_EPOCH_SET 0x4004700eul
#define CAPI_GET_PROFILE 0xc0404309ul
#define ATM_GETLOOP 0x400c6152ul
#define SCIF_LISTEN 0x40047302ul
#define NBD_CLEAR_QUE 0xab05ul
#define F2FS_IOC_MOVE_RANGE 0xc01cf509ul
#define LIRC_GET_LENGTH 0x8004690ful
#define I8K_SET_FAN 0xc0046987ul
#define FDSETMAXERRS 0x4014024cul
#define VIDIOC_SUBDEV_QUERYCAP 0x80405600ul
#define SNAPSHOT_SET_SWAP_AREA 0x400c330dul
#define LIRC_GET_REC_TIMEOUT 0x80046924ul
#define EVIOCRMFF 0x40044581ul
#define GPIO_GET_LINEEVENT_IOCTL 0xc030b404ul
#define PPRDATA 0x80017085ul
#define RIO_MPORT_GET_PROPERTIES 0x80306d04ul
#define TUNSETVNETHDRSZ 0x400454d8ul
#define GPIO_GET_LINEINFO_IOCTL 0xc048b402ul
#define GSMIOC_GETCONF 0x804c4700ul
#define LIRC_GET_SEND_MODE 0x80046901ul
#define PPPIOCSACTIVE 0x40087446ul
#define SIOCGSTAMPNS_NEW 0x80108907ul
#define IPMICTL_RECEIVE_MSG 0xc018690cul
#define LIRC_SET_SEND_DUTY_CYCLE 0x40046915ul
#define UI_END_FF_ERASE 0x400c55cbul
#define SWITCHTEC_IOCTL_FLASH_PART_INFO 0xc0105741ul
#define FW_CDEV_IOC_SEND_PHY_PACKET 0xc0142315ul
#define NBD_SET_FLAGS 0xab0aul
#define VFIO_DEVICE_GET_REGION_INFO 0x3b6cul
#define REISERFS_IOC_UNPACK 0x4004cd01ul
#define FW_CDEV_IOC_REMOVE_DESCRIPTOR 0x40042307ul
#define RIO_SET_EVENT_MASK 0x40046d0dul
#define SNAPSHOT_ALLOC_SWAP_PAGE 0x80083314ul
#define VDUSE_VQ_INJECT_IRQ 0x40048117ul
#define I2OPASSTHRU 0x8008690cul
#define IOC_OPAL_SET_PW 0x422070e0ul
#define FSI_SCOM_READ 0xc0207301ul
#define VHOST_VDPA_GET_DEVICE_ID 0x8004af70ul
#define VIDIOC_QBUF 0xc044560ful
#define VIDIOC_S_TUNER 0x4054561eul
#define TUNGETVNETHDRSZ 0x800454d7ul
#define CAPI_NCCI_GETUNIT 0x80044327ul
#define DFL_FPGA_PORT_UINT_GET_IRQ_NUM 0x8004b647ul
#define VIDIOC_OMAP3ISP_STAT_EN 0xc00456c7ul
#define GPIO_V2_LINE_SET_CONFIG_IOCTL 0xc110b40dul
#define TEE_IOC_VERSION 0x800ca400ul
#define VIDIOC_LOG_STATUS 0x5646ul
#define IPMICTL_SEND_COMMAND_SETTIME 0x801c6915ul
#define VHOST_SET_LOG_FD 0x4004af07ul
#define SCIF_SEND 0xc0147306ul
#define VIDIOC_SUBDEV_G_FMT 0xc0585604ul
#define NS_ADJBUFLEV 0x6163ul
#define VIDIOC_DBG_S_REGISTER 0x4038564ful
#define NILFS_IOCTL_RESIZE 0x40086e8bul
#define PHN_GETREG 0xc0087005ul
#define I2OSWDL 0xc01c6905ul
#define VBG_IOCTL_VMMDEV_REQUEST_BIG 0x5603ul
#define JSIOCGBUTTONS 0x80016a12ul
#define VFIO_IOMMU_ENABLE 0x3b73ul
#define DM_DEV_RENAME 0xc138fd05ul
#define MEDIA_IOC_SETUP_LINK 0xc0347c03ul
#define VIDIOC_ENUMOUTPUT 0xc0485630ul
#define STP_POLICY_ID_SET 0xc0102500ul
#define VHOST_VDPA_SET_CONFIG_CALL 0x4004af77ul
#define VIDIOC_SUBDEV_G_CROP 0xc038563bul
#define VIDIOC_S_CROP 0x4014563cul
#define WDIOC_GETTEMP 0x80045703ul
#define IOC_OPAL_ADD_USR_TO_LR 0x411870e4ul
#define UI_SET_LEDBIT 0x40045569ul
#define NBD_SET_SOCK 0xab00ul
#define BTRFS_IOC_SNAP_DESTROY_V2 0x5000943ful
#define HIDIOCGCOLLECTIONINFO 0xc0104811ul
#define I2OSWUL 0xc01c6906ul
#define IOCTL_MEI_NOTIFY_GET 0x80044803ul
#define FDFMTTRK 0x400c0248ul
#define MMTIMER_GETBITS 0x6d04ul
#define VIDIOC_ENUMSTD 0xc0405619ul
#define VHOST_GET_VRING_BASE 0xc008af12ul
#define VFIO_DEVICE_IOEVENTFD 0x3b74ul
#define ATMARP_SETENTRY 0x61e3ul
#define CCISS_REVALIDVOLS 0x420aul
#define MGSL_IOCLOOPTXDONE 0x6d09ul
#define RTC_VL_READ 0x80047013ul
#define ND_IOCTL_ARS_STATUS 0xc0304e03ul
#define RIO_DEV_DEL 0x40206d18ul
#define VBG_IOCTL_ACQUIRE_GUEST_CAPABILITIES 0xc024560dul
#define VIDIOC_SUBDEV_DV_TIMINGS_CAP 0xc0905664ul
#define SONYPI_IOCSFAN 0x4001760bul
#define SPIOCSTYPE 0x40047101ul
#define IPMICTL_REGISTER_FOR_CMD 0x8002690eul
#define I8K_GET_FAN 0xc0046986ul
#define TUNGETVNETBE 0x800454dful
#define AUTOFS_DEV_IOCTL_FAIL 0xc0189377ul
#define UI_END_FF_UPLOAD 0x406055c9ul
#define TOSH_SMM 0xc0187490ul
#define SONYPI_IOCGBAT2REM 0x80027605ul
#define F2FS_IOC_GET_COMPRESS_BLOCKS 0x8008f511ul
#define PPPIOCSNPMODE 0x4008744bul
#define USBDEVFS_CONTROL 0xc0105500ul
#define HIDIOCGUSAGE 0xc018480bul
#define TUNSETTXFILTER 0x400454d1ul
#define TUNGETVNETLE 0x800454ddul
#define VIDIOC_ENUM_DV_TIMINGS 0xc0945662ul
#define BTRFS_IOC_INO_PATHS 0xc0389423ul
#define MGSL_IOCGXSYNC 0x6d14ul
#define HIDIOCGFIELDINFO 0xc038480aul
#define VIDIOC_SUBDEV_G_STD 0x80085617ul
#define I2OVALIDATE 0x80046908ul
#define VIDIOC_TRY_ENCODER_CMD 0xc028564eul
#define NILFS_IOCTL_GET_CPINFO 0x80186e82ul
#define VIDIOC_G_FREQUENCY 0xc02c5638ul
#define VFAT_IOCTL_READDIR_SHORT 0x82187202ul
#define ND_IOCTL_GET_CONFIG_DATA 0xc00c4e05ul
#define F2FS_IOC_RESERVE_COMPRESS_BLOCKS 0x8008f513ul
#define FDGETDRVSTAT 0x80340212ul
#define SYNC_IOC_MERGE 0xc0303e03ul
#define VIDIOC_S_DV_TIMINGS 0xc0845657ul
#define PPPIOCBRIDGECHAN 0x40047435ul
#define LIRC_SET_SEND_MODE 0x40046911ul
#define RIO_ENABLE_PORTWRITE_RANGE 0x40106d0bul
#define ATM_GETTYPE 0x400c6184ul
#define PHN_GETREGS 0xc0287007ul
#define FDSETEMSGTRESH 0x24aul
#define NILFS_IOCTL_GET_VINFO 0xc0186e86ul
#define MGSL_IOCWAITEVENT 0xc0046d08ul
#define CAPI_INSTALLED 0x80024322ul
#define EVIOCGMASK 0x80104592ul
#define BTRFS_IOC_SUBVOL_GETFLAGS 0x80089419ul
#define FSL_HV_IOCTL_PARTITION_GET_STATUS 0xc00caf02ul
#define MEDIA_IOC_ENUM_ENTITIES 0xc1007c01ul
#define GSMIOC_GETFIRST 0x80044704ul
#define FW_CDEV_IOC_FLUSH_ISO 0x40042318ul
#define VIDIOC_DBG_G_CHIP_INFO 0xc0c85666ul
#define F2FS_IOC_RELEASE_VOLATILE_WRITE 0xf504ul
#define CAPI_GET_SERIAL 0xc0044308ul
#define FDSETDRVPRM 0x40580290ul
#define IOC_OPAL_SAVE 0x411870dcul
#define VIDIOC_G_DV_TIMINGS 0xc0845658ul
#define TUNSETIFINDEX 0x400454daul
#define CCISS_SETINTINFO 0x40084203ul
#define RTC_VL_CLR 0x7014ul
#define VIDIOC_REQBUFS 0xc0145608ul
#define USBDEVFS_REAPURBNDELAY32 0x4004550dul
#define TEE_IOC_SHM_REGISTER 0xc018a409ul
#define USBDEVFS_SETCONFIGURATION 0x80045505ul
#define CCISS_GETNODENAME 0x80104204ul
#define VIDIOC_SUBDEV_S_FRAME_INTERVAL 0xc0305616ul
#define VIDIOC_ENUM_FRAMESIZES 0xc02c564aul
#define VFIO_DEVICE_PCI_HOT_RESET 0x3b71ul
#define FW_CDEV_IOC_SEND_BROADCAST_REQUEST 0x40242312ul
#define LPSETTIMEOUT_NEW 0x4010060ful
#define RIO_CM_MPORT_GET_LIST 0xc004630bul
#define FW_CDEV_IOC_QUEUE_ISO 0xc0182309ul
#define FDRAWCMD 0x258ul
#define SCIF_UNREG 0xc0107309ul
#define PPPIOCGIDLE64 0x8010743ful
#define USBDEVFS_RELEASEINTERFACE 0x80045510ul
#define VIDIOC_CROPCAP 0xc02c563aul
#define DFL_FPGA_PORT_GET_INFO 0xb641ul
#define PHN_SET_REGS 0x40047003ul
#define ATMLEC_DATA 0x61d1ul
#define PPPOEIOCDFWD 0xb101ul
#define VIDIOC_S_SELECTION 0xc040565ful
#define SNAPSHOT_FREE_SWAP_PAGES 0x3309ul
#define BTRFS_IOC_LOGICAL_INO 0xc0389424ul
#define VIDIOC_S_CTRL 0xc008561cul
#define ZATM_SETPOOL 0x400c6163ul
#define MTIOCPOS 0x80046d03ul
#define PMU_IOC_SLEEP 0x4200ul
#define AUTOFS_DEV_IOCTL_PROTOSUBVER 0xc0189373ul
#define VBG_IOCTL_CHANGE_FILTER_MASK 0xc020560cul
#define NILFS_IOCTL_GET_SUSTAT 0x80306e85ul
#define VIDIOC_QUERYCAP 0x80685600ul
#define HPET_INFO 0x800c6803ul
#define VIDIOC_AM437X_CCDC_CFG 0x400456c1ul
#define DM_LIST_DEVICES 0xc138fd02ul
#define TUNSETOWNER 0x400454ccul
#define VBG_IOCTL_CHANGE_GUEST_CAPABILITIES 0xc020560eul
#define RNDADDENTROPY 0x40085203ul
#define USBDEVFS_RESET 0x5514ul
#define BTRFS_IOC_SUBVOL_CREATE 0x5000940eul
#define USBDEVFS_FORBID_SUSPEND 0x5521ul
#define FDGETDRVTYP 0x8010020ful
#define PPWCONTROL 0x40017084ul
#define VIDIOC_ENUM_FRAMEINTERVALS 0xc034564bul
#define KCOV_DISABLE 0x6365ul
#define IOC_OPAL_ACTIVATE_LSP 0x411870dful
#define VHOST_VDPA_GET_IOVA_RANGE 0x8010af78ul
#define PPPIOCSPASS 0x40087447ul
#define RIO_CM_CHAN_CONNECT 0x40086308ul
#define I2OSWDEL 0xc01c6907ul
#define FS_IOC_SET_ENCRYPTION_POLICY 0x800c6613ul
#define IOC_OPAL_MBR_DONE 0x411070e9ul
#define PPPIOCSMAXCID 0x40047451ul
#define PPSETPHASE 0x40047094ul
#define VHOST_VDPA_SET_VRING_ENABLE 0x4008af75ul
#define USBDEVFS_GET_SPEED 0x551ful
#define SONET_GETFRAMING 0x80046116ul
#define VIDIOC_QUERYBUF 0xc0445609ul
#define VIDIOC_S_EDID 0xc0245629ul
#define BTRFS_IOC_QGROUP_ASSIGN 0x40189429ul
#define PPS_GETCAP 0x800470a3ul
#define SNAPSHOT_PLATFORM_SUPPORT 0x330ful
#define LIRC_SET_REC_TIMEOUT_REPORTS 0x40046919ul
#define SCIF_GET_NODEIDS 0xc014730eul
#define NBD_DISCONNECT 0xab08ul
#define VIDIOC_SUBDEV_G_FRAME_INTERVAL 0xc0305615ul
#define VFIO_IOMMU_DISABLE 0x3b74ul
#define SNAPSHOT_CREATE_IMAGE 0x40043311ul