···1212/*1313 * u128_u: u128 user mode, because not all architectures support a real int1281414 * type1515+ *1616+ * We don't use this version in userspace, because in userspace we link with1717+ * Rust and rustc has issues with u128.1518 */16191717-#ifdef __SIZEOF_INT128__2020+#if defined(__SIZEOF_INT128__) && defined(__KERNEL__)18211922typedef struct {2023 unsigned __int128 v;