The imminent stable-version apocalypse
The imminent stable-version apocalypse
Posted Feb 5, 2021 16:44 UTC (Fri) by willy (subscriber, #9762)Parent article: The imminent stable-version apocalypse
Code which needs to care about versions after 255 can check LINUX_VERSION_SUBLEVEL directly.
Posted Feb 5, 2021 17:52 UTC (Fri)
by mchehab (subscriber, #41156)
[Link] (1 responses)
That seems to be the best thing to be done.
Without that, media applications will break, as they several of them rely at the Kernel version in order to enable some features:
drivers/media/cec/core/cec-api.c: caps.version = LINUX_VERSION_CODE;
Posted Feb 5, 2021 20:24 UTC (Fri)
by nix (subscriber, #2304)
[Link]
Posted Feb 5, 2021 19:43 UTC (Fri)
by tglx (subscriber, #31301)
[Link]
Yes. And the commit message of x.x.x.255 wants to be:
This kernel has been finally stapled to death. Move on.
The imminent stable-version apocalypse
drivers/media/mc/mc-device.c: info->media_version = LINUX_VERSION_CODE;
drivers/media/v4l2-core/v4l2-ioctl.c: cap->version = LINUX_VERSION_CODE;
drivers/media/v4l2-core/v4l2-subdev.c: cap->version = LINUX_VERSION_CODE;
The imminent stable-version apocalypse
The imminent stable-version apocalypse