From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Decotigny Subject: [ethtool PATCH v3 01/12] internal.h: change to new sane powerpc64 kernel headers Date: Fri, 4 Mar 2016 16:42:02 -0800 Message-ID: <1457138533-2417-2-git-send-email-ddecotig@gmail.com> References: <1457138533-2417-1-git-send-email-ddecotig@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Jeff Garzik , Ben Hutchings , David Miller , Vidya Sagar Ravipati , Joe Perches , =?UTF-8?q?Maciej=20=C5=BBenczykowski?= , David Decotigny To: netdev@vger.kernel.org Return-path: Received: from mail-pf0-f195.google.com ([209.85.192.195]:32828 "EHLO mail-pf0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759441AbcCEAm1 (ORCPT ); Fri, 4 Mar 2016 19:42:27 -0500 Received: by mail-pf0-f195.google.com with SMTP id 63so3964207pfe.0 for ; Fri, 04 Mar 2016 16:42:26 -0800 (PST) In-Reply-To: <1457138533-2417-1-git-send-email-ddecotig@gmail.com> Sender: netdev-owner@vger.kernel.org List-ID: =46rom: Maciej =C5=BBenczykowski This fixes: In file included from ethtool-copy.h:22:0, from internal.h:32, from ethtool.c:29: .../include/linux/types.h:32:25: error: conflicting types for '__be64= ' typedef __u64 __bitwise __be64; ^ In file included from ethtool.c:29:0: internal.h:23:28: note: previous declaration of '__be64' was here typedef unsigned long long __be64; ^ ethtool.c: In function 'do_gstats': ethtool.c:3166:4: error: format '%llu' expects argument of type 'long= long unsigned int', but argument 5 has type '__u64' [-Werror=3Dformat=3D= ] stats->data[i]); ^ ethtool.c: In function 'print_indir_table': ethtool.c:3293:9: error: format '%llu' expects argument of type 'long= long unsigned int', but argument 3 has type '__u64' [-Werror=3Dformat=3D= ] ctx->devname, ring_count->data); ^ Signed-off-by: Maciej =C5=BBenczykowski Signed-off-by: David Decotigny --- internal.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/internal.h b/internal.h index b5ef646..5f8504d 100644 --- a/internal.h +++ b/internal.h @@ -3,6 +3,13 @@ #ifndef ETHTOOL_INTERNAL_H__ #define ETHTOOL_INTERNAL_H__ =20 +#ifdef __powerpc64__ +/* Powerpc needs __SANE_USERSPACE_TYPES__ before to se= lect + * 'int-ll64.h' and avoid compile warnings when printing __u64 with %l= lu. + */ +#define __SANE_USERSPACE_TYPES__ +#endif + #ifdef HAVE_CONFIG_H #include "ethtool-config.h" #endif --=20 2.7.0.rc3.207.g0ac5344