The patch titled Subject: drivers/net/ethernet/mellanox/mlx4/crdump.c: fix build with gcc-7.2.0 has been added to the -mm tree. Its filename is drivers-net-ethernet-mellanox-mlx4-crdumpc-fix-build-with-gcc-720.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/drivers-net-ethernet-mellanox-mlx4-crdumpc-fix-build-with-gcc-720.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/drivers-net-ethernet-mellanox-mlx4-crdumpc-fix-build-with-gcc-720.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: drivers/net/ethernet/mellanox/mlx4/crdump.c: fix build with gcc-7.2.0 drivers/net/ethernet/mellanox/mlx4/crdump.c:45:10: error: initializer element is not constant .name = region_cr_space_str, ^~~~~~~~~~~~~~~~~~~ drivers/net/ethernet/mellanox/mlx4/crdump.c:45:10: note: (near initialization for region_cr_space_ops.name) drivers/net/ethernet/mellanox/mlx4/crdump.c:50:10: error: initializer element is not constant .name = region_fw_health_str, ^~~~~~~~~~~~~~~~~~~~ drivers/net/ethernet/mellanox/mlx4/crdump.c:50:10: note: (near initialization for region_fw_health_ops.name) Cc: Jacob Keller <jacob.e.keller@xxxxxxxxx> Cc: Jakub Kicinski <kuba@xxxxxxxxxx> Cc: Jiri Pirko <jiri@xxxxxxxxxxxx> Cc: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/ethernet/mellanox/mlx4/crdump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/net/ethernet/mellanox/mlx4/crdump.c~drivers-net-ethernet-mellanox-mlx4-crdumpc-fix-build-with-gcc-720 +++ a/drivers/net/ethernet/mellanox/mlx4/crdump.c @@ -38,8 +38,8 @@ #define CR_ENABLE_BIT_OFFSET 0xF3F04 #define MAX_NUM_OF_DUMPS_TO_STORE (8) -static const char * const region_cr_space_str = "cr-space"; -static const char * const region_fw_health_str = "fw-health"; +static const char region_cr_space_str[] = "cr-space"; +static const char region_fw_health_str[] = "fw-health"; static const struct devlink_region_ops region_cr_space_ops = { .name = region_cr_space_str, _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are drivers-tty-serial-sh-scic-suppress-uninitialized-var-warning.patch mm.patch mm-gup-track-foll_pin-pages-fix-2-fix.patch mm-swap-make-page_evictable-inline-fix.patch memcg-optimize-memorynuma_stat-like-memorystat-fix.patch mm-mmap-add-trace-point-of-vm_unmapped_area-fix.patch selftest-add-mremap_dontunmap-selftest-fix.patch selftest-add-mremap_dontunmap-selftest-v7-checkpatch-fixes.patch hugetlb_cgroup-add-reservation-accounting-for-private-mappings-fix.patch hugetlb_cgroup-add-accounting-for-shared-mappings-fix.patch mm-hugetlbc-fix-printk-format-warning-for-32-bit-phys_addr_t-fix.patch mm-migratec-migrate-pg_readahead-flag-fix.patch hv_balloon-dont-check-for-memhp_auto_online-manually-fix.patch proc-faster-open-read-close-with-permanent-files-checkpatch-fixes.patch linux-next-rejects.patch linux-next-fix.patch linux-next-git-rejects.patch mm-add-vm_insert_pages-fix.patch net-zerocopy-use-vm_insert_pages-for-tcp-rcv-zerocopy-fix.patch seq_read-info-message-about-buggy-next-functions-fix.patch kernel-forkc-export-kernel_thread-to-modules.patch drivers-net-ethernet-mellanox-mlx4-crdumpc-fix-build-with-gcc-720.patch