Lines Matching defs:info
21 /* On Ubuntu LINUX_VERSION_CODE doesn't correspond to info.release,
29 * uname() call will return 5.4.0 in info.release.
53 /* On Debian LINUX_VERSION_CODE doesn't correspond to info.release.
54 * Instead, it is provided in info.version. An example content of
61 * uname() call will return 4.19.0 in info.release.
63 static __u32 get_debian_kernel_version(struct utsname *info)
68 p = strstr(info->version, "Debian ");
83 struct utsname info;
90 uname(&info);
93 version = get_debian_kernel_version(&info);
97 if (sscanf(info.release, "%u.%u.%u", &major, &minor, &patch) != 3)