On Tue, Aug 13, 2019 at 08:44:07PM +0200, Florian Westphal wrote:
> tests/shell/testcases/flowtable/0001flowtable_0
> tests/shell/testcases/nft-f/0008split_tables_0
> fail the 'dump compare' on s390x.
> The priority (10) turns to 0, and accept turned to drop.
>
> Problem is that '$1' is a 64bit value -- then we pass the address
> and import 'int' -- we then get the upper all zero bits.
>
> Use an intermediate value instead.
Probably add this:
%union {
uint64_t val;
uint32_t val32;
then update this to use it?
%type <val32> int_num chain_policy
We can get someone to review all these typing, maybe some more folks
need <val32>.