On Fri, Feb 24, 2017 at 12:40:27AM -0500, ira.weiny@xxxxxxxxx wrote: > From: Ira Weiny <ira.weiny@xxxxxxxxx> Bleck, how did this ever work sanely like this?? This is the version you should copy: #ifndef ntohll #undef htonll #undef ntohll /* Users should use the glibc functions directly, not these wrappers */ static inline __attribute__((deprecated)) uint64_t htonll(uint64_t x) { return htobe64(x); } static inline __attribute__((deprecated)) uint64_t ntohll(uint64_t x) { return be64toh(x); } #define htonll htonll #define ntohll ntohll #endif > +#define ntohll(x) x missing () around the x. Jason -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html