The patch titled Subject: Fix 39461af74125 "bitmap: replace bitmap_{from,to}_u32array" has been added to the -mm tree. Its filename is bitmap-replace-bitmap_fromto_u32array-fix-2.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/bitmap-replace-bitmap_fromto_u32array-fix-2.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/bitmap-replace-bitmap_fromto_u32array-fix-2.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/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Yury Norov <ynorov@xxxxxxxxxxxxxxxxxx> Subject: Fix 39461af74125 "bitmap: replace bitmap_{from,to}_u32array" During rework, bitmap_to_arr32() was erroneously passed with __ETHTOOL_LINK_MODE_MASK_NU32 instead of __ETHTOOL_LINK_MODE_MASK_NBITS. Link: http://lkml.kernel.org/r/20180205071747.4ekxtsbgxkj5b2fz@yury-thinkpad Fixes: 39461af74125fd268 (bitmap: replace bitmap_{from,to}_u32array) Reported-by: Heiner Kallweit <hkallweit1@xxxxxxxxx> Signed-off-by: Yury Norov <ynorov@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/core/ethtool.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN net/core/ethtool.c~bitmap-replace-bitmap_fromto_u32array-fix-2 net/core/ethtool.c --- a/net/core/ethtool.c~bitmap-replace-bitmap_fromto_u32array-fix-2 +++ a/net/core/ethtool.c @@ -642,13 +642,13 @@ store_link_ksettings_for_user(void __use memcpy(&link_usettings.base, &from->base, sizeof(link_usettings)); bitmap_to_arr32(link_usettings.link_modes.supported, from->link_modes.supported, - __ETHTOOL_LINK_MODE_MASK_NU32); + __ETHTOOL_LINK_MODE_MASK_NBITS); bitmap_to_arr32(link_usettings.link_modes.advertising, from->link_modes.advertising, - __ETHTOOL_LINK_MODE_MASK_NU32); + __ETHTOOL_LINK_MODE_MASK_NBITS); bitmap_to_arr32(link_usettings.link_modes.lp_advertising, from->link_modes.lp_advertising, - __ETHTOOL_LINK_MODE_MASK_NU32); + __ETHTOOL_LINK_MODE_MASK_NBITS); if (copy_to_user(to, &link_usettings, sizeof(link_usettings))) return -EFAULT; _ Patches currently in -mm which might be from ynorov@xxxxxxxxxxxxxxxxxx are bitmap-new-bitmap_copy_safe-and-bitmap_fromto_arr32.patch bitmap-new-bitmap_copy_safe-and-bitmap_fromto_arr32-fix.patch bitmap-replace-bitmap_fromto_u32array.patch bitmap-replace-bitmap_fromto_u32array-fix-2.patch lib-test_find_bitc-rename-to-find_bit_benchmarkc.patch lib-find_bit_benchmarkc-improvements.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html