On 2020/4/11 äå11:49, Tang Bin wrote:
Fix missing braces compilation warning in the ARMGCC version please.
compiler environment:
fs/btrfs/backref.c: In function âis_shared_data_backrefâ:
fs/btrfs/backref.c:394:9: warning: missing braces around initializer [-Wmissing-braces]
struct prelim_ref target = {0};
fs/btrfs/backref.c:394:9: warning: (near initialization for âtarget.rbnodeâ) [-Wmissing-braces]
It looks like you're using an older GCC, as it's pretty common certain
prebuild tool chain is still using outdated GCC.
In my environment with GCC 9.2.0 natively (on aarch64) it's completely fine.
Thus personally I recommend to build your own tool chain using
buildroot, or run it natively, other than rely on prebuilt one.
In fact your fix could cause problem, as the original code is
initializing all members to 0, but now it's uninitialized.
You need to locate the root cause other than blindly follow the warning.