On Fri, 2016-08-26 at 17:37 +0200, Arnd Bergmann wrote: > The addition of the per-queue statistics introduced a harmless warning > on all 32-bit architectures: > > drivers/net/ethernet/qlogic/qede/qede_ethtool.c: In function > 'qede_get_ethtool_stats': > drivers/net/ethernet/qlogic/qede/qede_ethtool.c:244:31: error: cast from > pointer to integer of different size [-Werror=pointer-to-int-cast] > buf[cnt++] = QEDE_TQSTATS_DATA(edev, > ^ > drivers/net/ethernet/qlogic/qede/qede_ethtool.c:244:22: error: cast to > pointer from integer of different size [-Werror=int-to-pointer-cast] > buf[cnt++] = QEDE_TQSTATS_DATA(edev, > ^ > This changes the cast to 'void *' to shut up the warning, which > avoids the assumptions on the size of the pointer type. [] > diff --git a/drivers/net/ethernet/qlogic/qede/qede_ethtool.c > b/drivers/net/ethernet/qlogic/qede/qede_ethtool.c [] > @@ -60,7 +60,7 @@ static const struct { > }; > > #define QEDE_TQSTATS_DATA(dev, sindex, tssid, tcid) \ > - (*((u64 *)(((u64)(&dev->fp_array[tssid].txqs[tcid])) +\ > + (*((u64 *)(((void *)(&dev->fp_array[tssid].txqs[tcid])) +\ > qede_tqstats_arr[(sindex)].offset)))
That thing is perhaps overly complicated. Maybe a static inline like below would be easier to read: static inline u64 QEDE_TQSTATS_DATA(const struct qede_dev *edev, int sindex, int tssid, int tcid) { struct qede_tx_queue *txq = &edev->fp_array[tssid].txqs[tcid]; size_t offset = qede_tqstats_arr[sindex].offset; return *(u64 *)((unsigned long)txq + offset); }