From: Eric Dumazet Date: Tue, 27 Jun 2017 14:02:20 +0000 (-0700) Subject: net: prevent sign extension in dev_get_stats() X-Git-Tag: v3.2.93~12 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fef03f9059373ec5f37f39ee5e42231e763965c9;p=pandora-kernel.git net: prevent sign extension in dev_get_stats() commit 6f64ec74515925cced6df4571638b5a099a49aae upstream. Similar to the fix provided by Dominik Heidler in commit 9b3dc0a17d73 ("l2tp: cast l2tp traffic counter to unsigned") we need to take care of 32bit kernels in dev_get_stats(). When using atomic_long_read(), we add a 'long' to u64 and might misinterpret high order bit, unless we cast to unsigned. Fixes: caf586e5f23ce ("net: add a core netdev->rx_dropped counter") Fixes: 015f0688f57ca ("net: net: add a core netdev->tx_dropped counter") Fixes: 6e7333d315a76 ("net: add rx_nohandler stat counter") Signed-off-by: Eric Dumazet Cc: Jarod Wilson Signed-off-by: David S. Miller [bwh: Backported to 3.2: only rx_dropped is updated here] Signed-off-by: Ben Hutchings --- Reading git-diff-tree failed