Re: [xfs] 237d7887ae: xfstests.xfs.513.fail

2020-12-17 Thread kaixuxia
gt; ... > (Run 'diff -u /lkp/benchmarks/xfstests/tests/xfs/515.out > /lkp/benchmarks/xfstests/results//xfs/515.out.bad' to see the entire diff) > xfs/51632s > xfs/517 [not run] rmapbt not supported by scratch filesystem type: xfs > xfs/5183s > xfs/519 [not run] Reflink not supported by scratch filesystem type: xfs > Ran: xfs/510 xfs/511 xfs/512 xfs/513 xfs/514 xfs/515 xfs/516 xfs/517 xfs/518 > xfs/519 > Not run: xfs/517 xfs/519 > Failures: xfs/513 xfs/514 xfs/515 > Failed 3 of 10 tests > > > > > To reproduce: > > git clone https://github.com/intel/lkp-tests.git > cd lkp-tests > bin/lkp install job.yaml # job file is attached in this email > bin/lkp run job.yaml > > > > Thanks, > Oliver Sang > -- kaixuxia

Re: [PATCH] btrfs: remove the useless value assignment in block_rsv_release_bytes

2020-11-16 Thread kaixuxia
qgroup_to_release = block_rsv->qgroup_rsv_reserved - block_rsv->qgroup_rsv_size; block_rsv->qgroup_rsv_reserved = block_rsv->qgroup_rsv_size; } else { qgroup_to_release = 0; }//qgroup_to_release is overwritten ... } Thanks, Kaixu -- kaixuxia

Re: [PATCH] btrfs: remove the useless value assignment in btrfs_defrag_file

2020-11-16 Thread kaixuxia
> > This could be actually pointing to a bug, please explain why you think > it's correct to remove it and not to return EAGAIN. The right fix should be goto out_ra and return EAGAIN. I will do it in the next version. Thanks, Kaixu > -- kaixuxia

Re: [PATCH] net/mlx4: Assign boolean values to a bool variable

2020-11-08 Thread kaixuxia
gt;xdp_rxq; >>   xdp.frame_sz = priv->frag_info[0].frag_stride; >> -    doorbell_pending = 0; >> +    doorbell_pending = false; >>     /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx >>    * descriptor offset can be deduced from the CQE index instead of >> > -- kaixuxia