> 30/01/2023 18:00, Jiawei Wang: > > --- a/devtools/libabigail.abignore > > +++ b/devtools/libabigail.abignore > > @@ -20,6 +20,11 @@ > > [suppress_file] > > soname_regexp = ^librte_.*mlx.*glue\. > > > > +; Ignore fields inserted in middle padding of rte_eth_txconf > > +[suppress_type] > > + name = rte_eth_txconf > > + has_data_member_inserted_between = > > +{offset_after(tx_deferred_start), offset_of(offloads)} > > You are adding the exception inside > "Core suppression rules: DO NOT TOUCH". > > Please move it at the end in the section "Temporary exceptions till next major > ABI version" >
OK, will move. > Also the rule does not work. > It should be: > has_data_member_inserted_between = {offset_of(tx_deferred_start), > offset_of(offloads)} > Thanks, Will change it and send with new version. >