-
Notifications
You must be signed in to change notification settings - Fork 793
Expand file tree
/
Copy pathlayout_mbuf.rs
More file actions
1091 lines (1087 loc) · 48.3 KB
/
layout_mbuf.rs
File metadata and controls
1091 lines (1087 loc) · 48.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
/* automatically generated by rust-bindgen */
#![allow(dead_code, non_snake_case, non_camel_case_types, non_upper_case_globals)]
#[repr(C)]
pub struct __BindgenUnionField<T>(::std::marker::PhantomData<T>);
impl <T> __BindgenUnionField<T> {
#[inline]
pub fn new() -> Self { __BindgenUnionField(::std::marker::PhantomData) }
#[inline]
pub unsafe fn as_ref(&self) -> &T { ::std::mem::transmute(self) }
#[inline]
pub unsafe fn as_mut(&mut self) -> &mut T { ::std::mem::transmute(self) }
}
impl <T> ::std::default::Default for __BindgenUnionField<T> {
#[inline]
fn default() -> Self { Self::new() }
}
impl <T> ::std::clone::Clone for __BindgenUnionField<T> {
#[inline]
fn clone(&self) -> Self { Self::new() }
}
impl <T> ::std::marker::Copy for __BindgenUnionField<T> { }
impl <T> ::std::fmt::Debug for __BindgenUnionField<T> {
fn fmt(&self, fmt: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
fmt.write_str("__BindgenUnionField")
}
}
pub const RTE_CACHE_LINE_MIN_SIZE: ::std::os::raw::c_uint = 64;
pub const RTE_CACHE_LINE_SIZE: ::std::os::raw::c_uint = 64;
pub type phys_addr_t = u64;
pub type MARKER = [*mut ::std::os::raw::c_void; 0usize];
pub type MARKER8 = [u8; 0usize];
pub type MARKER64 = [u64; 0usize];
/// The atomic counter structure.
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_atomic16_t {
/// < An internal counter value.
pub cnt: i16,
}
#[test]
fn bindgen_test_layout_rte_atomic16_t() {
assert_eq!(::std::mem::size_of::<rte_atomic16_t>() , 2usize , concat ! (
"Size of: " , stringify ! ( rte_atomic16_t ) ));
assert_eq! (::std::mem::align_of::<rte_atomic16_t>() , 2usize , concat ! (
"Alignment of " , stringify ! ( rte_atomic16_t ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_atomic16_t ) ) . cnt as * const _ as
usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_atomic16_t ) , "::"
, stringify ! ( cnt ) ));
}
impl Clone for rte_atomic16_t {
fn clone(&self) -> Self { *self }
}
/// The generic rte_mbuf, containing a packet mbuf.
#[repr(C)]
pub struct rte_mbuf {
pub cacheline0: MARKER,
/// < Virtual address of segment buffer.
pub buf_addr: *mut ::std::os::raw::c_void,
/// < Physical address of segment buffer.
pub buf_physaddr: phys_addr_t,
/// < Length of segment buffer.
pub buf_len: u16,
pub rearm_data: MARKER8,
pub data_off: u16,
pub __bindgen_anon_1: rte_mbuf__bindgen_ty_1,
/// < Number of segments.
pub nb_segs: u8,
/// < Input port.
pub port: u8,
/// < Offload features.
pub ol_flags: u64,
pub rx_descriptor_fields1: MARKER,
pub __bindgen_anon_2: rte_mbuf__bindgen_ty_2,
/// < Total pkt len: sum of all segments.
pub pkt_len: u32,
/// < Amount of data in segment buffer.
pub data_len: u16,
/// VLAN TCI (CPU order), valid if PKT_RX_VLAN_STRIPPED is set.
pub vlan_tci: u16,
/// < hash information
pub hash: rte_mbuf__bindgen_ty_3,
/// < Sequence number. See also rte_reorder_insert()
pub seqn: u32,
/// Outer VLAN TCI (CPU order), valid if PKT_RX_QINQ_STRIPPED is set.
pub vlan_tci_outer: u16,
pub cacheline1: MARKER,
pub __bindgen_anon_3: rte_mbuf__bindgen_ty_4,
/// < Pool from which mbuf was allocated.
pub pool: *mut rte_mempool,
/// < Next segment of scattered packet.
pub next: *mut rte_mbuf,
pub __bindgen_anon_4: rte_mbuf__bindgen_ty_5,
/// Size of the application private data. In case of an indirect
/// mbuf, it stores the direct mbuf private data size.
pub priv_size: u16,
/// Timesync flags for use with IEEE1588.
pub timesync: u16,
pub __bindgen_padding_0: [u32; 7usize],
}
/// 16-bit Reference counter.
/// It should only be accessed using the following functions:
/// rte_mbuf_refcnt_update(), rte_mbuf_refcnt_read(), and
/// rte_mbuf_refcnt_set(). The functionality of these functions (atomic,
/// or non-atomic) is controlled by the CONFIG_RTE_MBUF_REFCNT_ATOMIC
/// config option.
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_mbuf__bindgen_ty_1 {
/// < Atomically accessed refcnt
pub refcnt_atomic: __BindgenUnionField<rte_atomic16_t>,
/// < Non-atomically accessed refcnt
pub refcnt: __BindgenUnionField<u16>,
pub bindgen_union_field: u16,
}
#[test]
fn bindgen_test_layout_rte_mbuf__bindgen_ty_1() {
assert_eq!(::std::mem::size_of::<rte_mbuf__bindgen_ty_1>() , 2usize ,
concat ! ( "Size of: " , stringify ! ( rte_mbuf__bindgen_ty_1 )
));
assert_eq! (::std::mem::align_of::<rte_mbuf__bindgen_ty_1>() , 2usize ,
concat ! (
"Alignment of " , stringify ! ( rte_mbuf__bindgen_ty_1 ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_1 ) ) .
refcnt_atomic as * const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf__bindgen_ty_1
) , "::" , stringify ! ( refcnt_atomic ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_1 ) ) . refcnt as *
const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf__bindgen_ty_1
) , "::" , stringify ! ( refcnt ) ));
}
impl Clone for rte_mbuf__bindgen_ty_1 {
fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_mbuf__bindgen_ty_2 {
/// < L2/L3/L4 and tunnel information.
pub packet_type: __BindgenUnionField<u32>,
pub __bindgen_anon_1: __BindgenUnionField<rte_mbuf__bindgen_ty_2__bindgen_ty_1>,
pub bindgen_union_field: u32,
}
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_mbuf__bindgen_ty_2__bindgen_ty_1 {
pub _bitfield_1: [u8; 4usize],
pub __bindgen_align: [u32; 0usize],
}
#[test]
fn bindgen_test_layout_rte_mbuf__bindgen_ty_2__bindgen_ty_1() {
assert_eq!(::std::mem::size_of::<rte_mbuf__bindgen_ty_2__bindgen_ty_1>() ,
4usize , concat ! (
"Size of: " , stringify ! (
rte_mbuf__bindgen_ty_2__bindgen_ty_1 ) ));
assert_eq! (::std::mem::align_of::<rte_mbuf__bindgen_ty_2__bindgen_ty_1>()
, 4usize , concat ! (
"Alignment of " , stringify ! (
rte_mbuf__bindgen_ty_2__bindgen_ty_1 ) ));
}
impl Clone for rte_mbuf__bindgen_ty_2__bindgen_ty_1 {
fn clone(&self) -> Self { *self }
}
impl rte_mbuf__bindgen_ty_2__bindgen_ty_1 {
#[inline]
pub fn l2_type(&self) -> u32 {
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
let mask = 15u64 as u32;
let val = (unit_field_val & mask) >> 0usize;
unsafe { ::std::mem::transmute(val as u32) }
}
#[inline]
pub fn set_l2_type(&mut self, val: u32) {
let mask = 15u64 as u32;
let val = val as u32 as u32;
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 0usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u32>());
}
}
#[inline]
pub fn l3_type(&self) -> u32 {
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
let mask = 240u64 as u32;
let val = (unit_field_val & mask) >> 4usize;
unsafe { ::std::mem::transmute(val as u32) }
}
#[inline]
pub fn set_l3_type(&mut self, val: u32) {
let mask = 240u64 as u32;
let val = val as u32 as u32;
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 4usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u32>());
}
}
#[inline]
pub fn l4_type(&self) -> u32 {
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
let mask = 3840u64 as u32;
let val = (unit_field_val & mask) >> 8usize;
unsafe { ::std::mem::transmute(val as u32) }
}
#[inline]
pub fn set_l4_type(&mut self, val: u32) {
let mask = 3840u64 as u32;
let val = val as u32 as u32;
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 8usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u32>());
}
}
#[inline]
pub fn tun_type(&self) -> u32 {
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
let mask = 61440u64 as u32;
let val = (unit_field_val & mask) >> 12usize;
unsafe { ::std::mem::transmute(val as u32) }
}
#[inline]
pub fn set_tun_type(&mut self, val: u32) {
let mask = 61440u64 as u32;
let val = val as u32 as u32;
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 12usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u32>());
}
}
#[inline]
pub fn inner_l2_type(&self) -> u32 {
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
let mask = 983040u64 as u32;
let val = (unit_field_val & mask) >> 16usize;
unsafe { ::std::mem::transmute(val as u32) }
}
#[inline]
pub fn set_inner_l2_type(&mut self, val: u32) {
let mask = 983040u64 as u32;
let val = val as u32 as u32;
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 16usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u32>());
}
}
#[inline]
pub fn inner_l3_type(&self) -> u32 {
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
let mask = 15728640u64 as u32;
let val = (unit_field_val & mask) >> 20usize;
unsafe { ::std::mem::transmute(val as u32) }
}
#[inline]
pub fn set_inner_l3_type(&mut self, val: u32) {
let mask = 15728640u64 as u32;
let val = val as u32 as u32;
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 20usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u32>());
}
}
#[inline]
pub fn inner_l4_type(&self) -> u32 {
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
let mask = 251658240u64 as u32;
let val = (unit_field_val & mask) >> 24usize;
unsafe { ::std::mem::transmute(val as u32) }
}
#[inline]
pub fn set_inner_l4_type(&mut self, val: u32) {
let mask = 251658240u64 as u32;
let val = val as u32 as u32;
let mut unit_field_val: u32 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u32 as
*mut u8,
::std::mem::size_of::<u32>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 24usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u32>());
}
}
#[inline]
pub fn new_bitfield_1(l2_type: u32, l3_type: u32, l4_type: u32,
tun_type: u32, inner_l2_type: u32,
inner_l3_type: u32, inner_l4_type: u32) -> u32 {
({
({
({
({
({
({
({ 0 } |
((l2_type as u32 as u32) << 0usize)
& (15u64 as u32))
} |
((l3_type as u32 as u32) << 4usize) &
(240u64 as u32))
} |
((l4_type as u32 as u32) << 8usize) &
(3840u64 as u32))
} |
((tun_type as u32 as u32) << 12usize) &
(61440u64 as u32))
} |
((inner_l2_type as u32 as u32) << 16usize) &
(983040u64 as u32))
} |
((inner_l3_type as u32 as u32) << 20usize) &
(15728640u64 as u32))
} |
((inner_l4_type as u32 as u32) << 24usize) &
(251658240u64 as u32))
}
}
#[test]
fn bindgen_test_layout_rte_mbuf__bindgen_ty_2() {
assert_eq!(::std::mem::size_of::<rte_mbuf__bindgen_ty_2>() , 4usize ,
concat ! ( "Size of: " , stringify ! ( rte_mbuf__bindgen_ty_2 )
));
assert_eq! (::std::mem::align_of::<rte_mbuf__bindgen_ty_2>() , 4usize ,
concat ! (
"Alignment of " , stringify ! ( rte_mbuf__bindgen_ty_2 ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_2 ) ) . packet_type
as * const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf__bindgen_ty_2
) , "::" , stringify ! ( packet_type ) ));
}
impl Clone for rte_mbuf__bindgen_ty_2 {
fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_mbuf__bindgen_ty_3 {
/// < RSS hash result if RSS enabled
pub rss: __BindgenUnionField<u32>,
/// < Filter identifier if FDIR enabled
pub fdir: __BindgenUnionField<rte_mbuf__bindgen_ty_3__bindgen_ty_1>,
/// < Hierarchical scheduler
pub sched: __BindgenUnionField<rte_mbuf__bindgen_ty_3__bindgen_ty_2>,
/// < User defined tags. See rte_distributor_process()
pub usr: __BindgenUnionField<u32>,
pub bindgen_union_field: [u32; 2usize],
}
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_mbuf__bindgen_ty_3__bindgen_ty_1 {
pub __bindgen_anon_1: rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1,
pub hi: u32,
}
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1 {
pub __bindgen_anon_1: __BindgenUnionField<rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1>,
pub lo: __BindgenUnionField<u32>,
pub bindgen_union_field: u32,
}
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1 {
pub hash: u16,
pub id: u16,
}
#[test]
fn bindgen_test_layout_rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1() {
assert_eq!(::std::mem::size_of::<rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1>()
, 4usize , concat ! (
"Size of: " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1
) ));
assert_eq! (::std::mem::align_of::<rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1>()
, 2usize , concat ! (
"Alignment of " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1
) ));
assert_eq! (unsafe {
& (
* (
0 as * const
rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1
) ) . hash as * const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1
) , "::" , stringify ! ( hash ) ));
assert_eq! (unsafe {
& (
* (
0 as * const
rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1
) ) . id as * const _ as usize } , 2usize , concat ! (
"Alignment of field: " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1
) , "::" , stringify ! ( id ) ));
}
impl Clone for
rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1__bindgen_ty_1 {
fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1() {
assert_eq!(::std::mem::size_of::<rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1>()
, 4usize , concat ! (
"Size of: " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1 ) ));
assert_eq! (::std::mem::align_of::<rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1>()
, 4usize , concat ! (
"Alignment of " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1 ) ));
assert_eq! (unsafe {
& (
* (
0 as * const
rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1 ) ) . lo as
* const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1 ) , "::" ,
stringify ! ( lo ) ));
}
impl Clone for rte_mbuf__bindgen_ty_3__bindgen_ty_1__bindgen_ty_1 {
fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_rte_mbuf__bindgen_ty_3__bindgen_ty_1() {
assert_eq!(::std::mem::size_of::<rte_mbuf__bindgen_ty_3__bindgen_ty_1>() ,
8usize , concat ! (
"Size of: " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_1 ) ));
assert_eq! (::std::mem::align_of::<rte_mbuf__bindgen_ty_3__bindgen_ty_1>()
, 4usize , concat ! (
"Alignment of " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_1 ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_3__bindgen_ty_1 ) )
. hi as * const _ as usize } , 4usize , concat ! (
"Alignment of field: " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_1 ) , "::" , stringify ! (
hi ) ));
}
impl Clone for rte_mbuf__bindgen_ty_3__bindgen_ty_1 {
fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_mbuf__bindgen_ty_3__bindgen_ty_2 {
pub lo: u32,
pub hi: u32,
}
#[test]
fn bindgen_test_layout_rte_mbuf__bindgen_ty_3__bindgen_ty_2() {
assert_eq!(::std::mem::size_of::<rte_mbuf__bindgen_ty_3__bindgen_ty_2>() ,
8usize , concat ! (
"Size of: " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_2 ) ));
assert_eq! (::std::mem::align_of::<rte_mbuf__bindgen_ty_3__bindgen_ty_2>()
, 4usize , concat ! (
"Alignment of " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_2 ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_3__bindgen_ty_2 ) )
. lo as * const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_2 ) , "::" , stringify ! (
lo ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_3__bindgen_ty_2 ) )
. hi as * const _ as usize } , 4usize , concat ! (
"Alignment of field: " , stringify ! (
rte_mbuf__bindgen_ty_3__bindgen_ty_2 ) , "::" , stringify ! (
hi ) ));
}
impl Clone for rte_mbuf__bindgen_ty_3__bindgen_ty_2 {
fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_rte_mbuf__bindgen_ty_3() {
assert_eq!(::std::mem::size_of::<rte_mbuf__bindgen_ty_3>() , 8usize ,
concat ! ( "Size of: " , stringify ! ( rte_mbuf__bindgen_ty_3 )
));
assert_eq! (::std::mem::align_of::<rte_mbuf__bindgen_ty_3>() , 4usize ,
concat ! (
"Alignment of " , stringify ! ( rte_mbuf__bindgen_ty_3 ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_3 ) ) . rss as *
const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf__bindgen_ty_3
) , "::" , stringify ! ( rss ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_3 ) ) . fdir as *
const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf__bindgen_ty_3
) , "::" , stringify ! ( fdir ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_3 ) ) . sched as *
const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf__bindgen_ty_3
) , "::" , stringify ! ( sched ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_3 ) ) . usr as *
const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf__bindgen_ty_3
) , "::" , stringify ! ( usr ) ));
}
impl Clone for rte_mbuf__bindgen_ty_3 {
fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_mbuf__bindgen_ty_4 {
/// < Can be used for external metadata
pub userdata: __BindgenUnionField<*mut ::std::os::raw::c_void>,
/// < Allow 8-byte userdata on 32-bit
pub udata64: __BindgenUnionField<u64>,
pub bindgen_union_field: u64,
}
#[test]
fn bindgen_test_layout_rte_mbuf__bindgen_ty_4() {
assert_eq!(::std::mem::size_of::<rte_mbuf__bindgen_ty_4>() , 8usize ,
concat ! ( "Size of: " , stringify ! ( rte_mbuf__bindgen_ty_4 )
));
assert_eq! (::std::mem::align_of::<rte_mbuf__bindgen_ty_4>() , 8usize ,
concat ! (
"Alignment of " , stringify ! ( rte_mbuf__bindgen_ty_4 ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_4 ) ) . userdata as
* const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf__bindgen_ty_4
) , "::" , stringify ! ( userdata ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_4 ) ) . udata64 as *
const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf__bindgen_ty_4
) , "::" , stringify ! ( udata64 ) ));
}
impl Clone for rte_mbuf__bindgen_ty_4 {
fn clone(&self) -> Self { *self }
}
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_mbuf__bindgen_ty_5 {
/// < combined for easy fetch
pub tx_offload: __BindgenUnionField<u64>,
pub __bindgen_anon_1: __BindgenUnionField<rte_mbuf__bindgen_ty_5__bindgen_ty_1>,
pub bindgen_union_field: u64,
}
#[repr(C)]
#[derive(Debug, Default, Copy)]
pub struct rte_mbuf__bindgen_ty_5__bindgen_ty_1 {
pub _bitfield_1: [u16; 4usize],
pub __bindgen_align: [u64; 0usize],
}
#[test]
fn bindgen_test_layout_rte_mbuf__bindgen_ty_5__bindgen_ty_1() {
assert_eq!(::std::mem::size_of::<rte_mbuf__bindgen_ty_5__bindgen_ty_1>() ,
8usize , concat ! (
"Size of: " , stringify ! (
rte_mbuf__bindgen_ty_5__bindgen_ty_1 ) ));
assert_eq! (::std::mem::align_of::<rte_mbuf__bindgen_ty_5__bindgen_ty_1>()
, 8usize , concat ! (
"Alignment of " , stringify ! (
rte_mbuf__bindgen_ty_5__bindgen_ty_1 ) ));
}
impl Clone for rte_mbuf__bindgen_ty_5__bindgen_ty_1 {
fn clone(&self) -> Self { *self }
}
impl rte_mbuf__bindgen_ty_5__bindgen_ty_1 {
#[inline]
pub fn l2_len(&self) -> u64 {
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
let mask = 127u64 as u64;
let val = (unit_field_val & mask) >> 0usize;
unsafe { ::std::mem::transmute(val as u64) }
}
#[inline]
pub fn set_l2_len(&mut self, val: u64) {
let mask = 127u64 as u64;
let val = val as u64 as u64;
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 0usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u64>());
}
}
#[inline]
pub fn l3_len(&self) -> u64 {
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
let mask = 65408u64 as u64;
let val = (unit_field_val & mask) >> 7usize;
unsafe { ::std::mem::transmute(val as u64) }
}
#[inline]
pub fn set_l3_len(&mut self, val: u64) {
let mask = 65408u64 as u64;
let val = val as u64 as u64;
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 7usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u64>());
}
}
#[inline]
pub fn l4_len(&self) -> u64 {
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
let mask = 16711680u64 as u64;
let val = (unit_field_val & mask) >> 16usize;
unsafe { ::std::mem::transmute(val as u64) }
}
#[inline]
pub fn set_l4_len(&mut self, val: u64) {
let mask = 16711680u64 as u64;
let val = val as u64 as u64;
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 16usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u64>());
}
}
#[inline]
pub fn tso_segsz(&self) -> u64 {
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
let mask = 1099494850560u64 as u64;
let val = (unit_field_val & mask) >> 24usize;
unsafe { ::std::mem::transmute(val as u64) }
}
#[inline]
pub fn set_tso_segsz(&mut self, val: u64) {
let mask = 1099494850560u64 as u64;
let val = val as u64 as u64;
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 24usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u64>());
}
}
#[inline]
pub fn outer_l3_len(&self) -> u64 {
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
let mask = 561850441793536u64 as u64;
let val = (unit_field_val & mask) >> 40usize;
unsafe { ::std::mem::transmute(val as u64) }
}
#[inline]
pub fn set_outer_l3_len(&mut self, val: u64) {
let mask = 561850441793536u64 as u64;
let val = val as u64 as u64;
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 40usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u64>());
}
}
#[inline]
pub fn outer_l2_len(&self) -> u64 {
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
let mask = 71494644084506624u64 as u64;
let val = (unit_field_val & mask) >> 49usize;
unsafe { ::std::mem::transmute(val as u64) }
}
#[inline]
pub fn set_outer_l2_len(&mut self, val: u64) {
let mask = 71494644084506624u64 as u64;
let val = val as u64 as u64;
let mut unit_field_val: u64 = unsafe { ::std::mem::uninitialized() };
unsafe {
::std::ptr::copy_nonoverlapping(&self._bitfield_1 as *const _ as
*const u8,
&mut unit_field_val as *mut u64 as
*mut u8,
::std::mem::size_of::<u64>())
};
unit_field_val &= !mask;
unit_field_val |= (val << 49usize) & mask;
unsafe {
::std::ptr::copy_nonoverlapping(&unit_field_val as *const _ as
*const u8,
&mut self._bitfield_1 as *mut _ as
*mut u8,
::std::mem::size_of::<u64>());
}
}
#[inline]
pub fn new_bitfield_1(l2_len: u64, l3_len: u64, l4_len: u64,
tso_segsz: u64, outer_l3_len: u64,
outer_l2_len: u64) -> u64 {
({
({
({
({
({
({ 0 } |
((l2_len as u64 as u64) << 0usize) &
(127u64 as u64))
} |
((l3_len as u64 as u64) << 7usize) &
(65408u64 as u64))
} |
((l4_len as u64 as u64) << 16usize) &
(16711680u64 as u64))
} |
((tso_segsz as u64 as u64) << 24usize) &
(1099494850560u64 as u64))
} |
((outer_l3_len as u64 as u64) << 40usize) &
(561850441793536u64 as u64))
} |
((outer_l2_len as u64 as u64) << 49usize) &
(71494644084506624u64 as u64))
}
}
#[test]
fn bindgen_test_layout_rte_mbuf__bindgen_ty_5() {
assert_eq!(::std::mem::size_of::<rte_mbuf__bindgen_ty_5>() , 8usize ,
concat ! ( "Size of: " , stringify ! ( rte_mbuf__bindgen_ty_5 )
));
assert_eq! (::std::mem::align_of::<rte_mbuf__bindgen_ty_5>() , 8usize ,
concat ! (
"Alignment of " , stringify ! ( rte_mbuf__bindgen_ty_5 ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf__bindgen_ty_5 ) ) . tx_offload
as * const _ as usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf__bindgen_ty_5
) , "::" , stringify ! ( tx_offload ) ));
}
impl Clone for rte_mbuf__bindgen_ty_5 {
fn clone(&self) -> Self { *self }
}
#[test]
fn bindgen_test_layout_rte_mbuf() {
assert_eq!(::std::mem::size_of::<rte_mbuf>() , 128usize , concat ! (
"Size of: " , stringify ! ( rte_mbuf ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf ) ) . cacheline0 as * const _ as
usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf ) , "::" ,
stringify ! ( cacheline0 ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf ) ) . buf_addr as * const _ as
usize } , 0usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf ) , "::" ,
stringify ! ( buf_addr ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf ) ) . buf_physaddr as * const _
as usize } , 8usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf ) , "::" ,
stringify ! ( buf_physaddr ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf ) ) . buf_len as * const _ as
usize } , 16usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf ) , "::" ,
stringify ! ( buf_len ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf ) ) . rearm_data as * const _ as
usize } , 18usize , concat ! (
"Alignment of field: " , stringify ! ( rte_mbuf ) , "::" ,
stringify ! ( rearm_data ) ));
assert_eq! (unsafe {
& ( * ( 0 as * const rte_mbuf ) ) . data_off as * const _ as