File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -2935,6 +2935,10 @@ fn test_freebsd(target: &str) {
2935
2935
// Those are introduced in FreeBSD 15.
2936
2936
"xktls_session_onedir" | "xktls_session" if Some ( 15 ) > freebsd_ver => true ,
2937
2937
2938
+ // __mcontext changed mc_spare and mc_tlsbase between OS releases, and `skip_field`
2939
+ // doesn't seem to work for them.
2940
+ "__mcontext" => true ,
2941
+
2938
2942
_ => false ,
2939
2943
}
2940
2944
} ) ;
@@ -3074,11 +3078,6 @@ fn test_freebsd(target: &str) {
3074
3078
// `tcp_snd_wscale` and `tcp_rcv_wscale` are bitfields
3075
3079
( "tcp_info" , "tcp_snd_wscale" ) => true ,
3076
3080
( "tcp_info" , "tcp_rcv_wscale" ) => true ,
3077
- // mc_spare can change in size between OS releases. It's a spare field, after all.
3078
- ( "__mcontext" , "mc_spare" ) => true ,
3079
-
3080
- // mc_tlsbase introduced in FreeBSD 15
3081
- ( "__mcontext" , "mc_tlsbase" ) => true ,
3082
3081
3083
3082
_ => false ,
3084
3083
}
You can’t perform that action at this time.
0 commit comments