X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=lib%2Fubsan.h;h=7e30b26497e0cd0e2d7c055222349eac5d228a84;hb=699cb7c6c4c08d862844ebddf7641c4cb993ffd0;hp=88f23557edbe16d5a60d691591d4e1981437f7d7;hpb=854ac870449fbf5c97ed2d54d3e371c7d355e7f2;p=mirror_ubuntu-bionic-kernel.git diff --git a/lib/ubsan.h b/lib/ubsan.h index 88f23557edbe..7e30b26497e0 100644 --- a/lib/ubsan.h +++ b/lib/ubsan.h @@ -37,6 +37,20 @@ struct type_mismatch_data { unsigned char type_check_kind; }; +struct type_mismatch_data_v1 { + struct source_location location; + struct type_descriptor *type; + unsigned char log_alignment; + unsigned char type_check_kind; +}; + +struct type_mismatch_data_common { + struct source_location *location; + struct type_descriptor *type; + unsigned long alignment; + unsigned char type_check_kind; +}; + struct nonnull_arg_data { struct source_location location; struct source_location attr_location;