{"id":38151,"date":"2019-10-31T22:21:56","date_gmt":"2019-10-31T19:21:56","guid":{"rendered":"https:\/\/prohoster.info\/blog\/reliz-yadra-linux-5-3\/"},"modified":"2019-10-31T22:21:56","modified_gmt":"2019-10-31T19:21:56","slug":"reliz-yadra-linux-5-3","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-3","title":{"rendered":"Linux kernel release 5.3","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>After two months of development, Linus Torvalds <noindex><a rel=\"nofollow\" href=\"https:\/\/lkml.org\/lkml\/2019\/9\/15\/241\">presented<\/a><\/noindex> announced the release of the kernel <noindex><a rel=\"nofollow\" href=\"https:\/\/www.kernel.org\/\">Linux 5.3<\/a><\/noindex>. Among the most notable changes are: support for AMD Navi GPUs, Zhaoxi processors, and Intel Speed Select power management technology, the ability to use umwait instructions for waiting without using loops,<br \/>\nan interactive mode 'utilization clamping' for asymmetric CPUs, the system call pidfd_open, the ability to use IPv4 addresses from the 0.0.0.0\/8 subnet, the possibility of hardware acceleration for nftables, support for HDR in the DRM subsystem, integration of the ACRN hypervisor.<\/p>\n<p>In <noindex><a rel=\"nofollow\" href=\"https:\/\/lkml.org\/lkml\/2019\/9\/15\/2\">announcement<\/a><\/noindex> the new release from Linus reminded all developers of the core rule of kernel development \u2014 preserving the invariability of behavior for user space components. Changes in the kernel should not disrupt already functioning applications and cause regressions at the user level. Behavior violation can result not only from ABI changes, removal of deprecated code, or the introduction of bugs but can also have indirect effects on well-functioning useful enhancements. As a clear example, there was <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=72dbcf72156641fde4d8ea401e977341bfd35a05\">dropped<\/a><\/noindex> a useful <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=b03755ad6f33b7b8cd7312a3596a2dbf496de6e7\">optimization<\/a><\/noindex> in the Ext4 code, reducing the number of accesses to storage by disabling the prefetching of the inode table for minor I\/O requests. <\/p>\n<p>The optimization led to a situation where, due to decreased disk activity, entropy for the getrandom() random number generator began accumulating more slowly, and in some configurations, under certain circumstances, there could be pauses during boot until the entropy pool was filled. Since the optimization is genuinely beneficial, a discussion arose among developers proposing to mitigate the issue by disabling the blocking mode of the getrandom() call by default, adding an optional flag for waiting for entropy, but such a change would affect the quality of random numbers during the boot phase.<\/p>\n<p>The new version accepted 15,794 corrections from 1,974 developers,<br \/>\na patch size of 92 MB (the changes affected 13,986 files, adding 258,419 lines of code,<br \/>\nremoving 599,137 lines). About 39% of all changes presented in 5.3<br \/>\nare related to device drivers, approximately 12% of the changes pertain to<br \/>\nupdating architecture-specific code, 11%<br \/>\nare related to the network stack, 3% \u2014 to file systems, and 3% to internal<br \/>\nkernel subsystems.<\/p>\n<p><noindex><a rel=\"nofollow\" href=\"https:\/\/kernelnewbies.org\/Linux_5.3\">Key<\/a><\/noindex> <noindex><a rel=\"nofollow\" href=\"https:\/\/lwn.net\/Articles\/793629\/\">innovations<\/a><\/noindex>:\n<\/p>\n<ul>\n<li class=\"l\"> <b>Memory and system services<\/b>\n<ul>\n<li class=\"l\"> The development of the 'pidfd' functionality continues, helping to address situations involving PID reuse (pidfd is tied to a specific process and does not change, while the PID can be associated with another process after the current one ends, associated with the PID). Previously, this feature had already been added to the kernel<br \/>\nthe system call pidfd_send_signal() and the CLONE_PIDFD flag in the clone() call were added to obtain a pidfd for use in idfd_send_signal(). When using the clone() call with the CLONE_PIDFD flag, issues could arise with service managers or the process termination system due to memory shortages on Android platforms. In such cases, the fork() or clone() call without CLONE_PIDFD is employed. <\/p>\n<p>In kernel 5.3, the system call <noindex><a rel=\"nofollow\" href=\"https:\/\/lwn.net\/Articles\/789023\/\">pidfd_open()<\/a><\/noindex>, which provides a verifiable pidfd for any existing process created not through a clone() call with the CLONE_PIDFD flag, has been introduced. Polling support for pidfd has also been added using poll() and epoll(), allowing process managers to monitor the termination of arbitrary processes without the risk of a race condition if a PID is reassigned to a new process. The mechanism for notifying about the termination of a process associated with pidfd is similar to notifying about the termination of its child process;<\/p>\n<li class=\"l\">Support for a load clamping mechanism has been added to the task scheduler (<noindex><a rel=\"nofollow\" href=\"https:\/\/lwn.net\/Articles\/762043\/\">Utilization clamping<\/a><\/noindex>), allowing adherence to minimum or maximum frequency ranges, depending on the active CPU tasks. The presented mechanism accelerates tasks that directly impact user interaction quality by executing these tasks at least at the lower bound of the 'requested' frequency. Low-priority tasks that do not affect user experience are launched using the upper limit of the 'allowed' frequency. Limits are defined through the sched_uclamp_util_min and sched_uclamp_util_max attributes in the sched_setattr() system call.\n<li class=\"l\"> Support for power management technology has been added, <noindex><a rel=\"nofollow\" href=\"https:\/\/www.intel.com\/content\/www\/us\/en\/architecture-and-technology\/speed-select-technology-article.html\">Intel Speed Select<\/a><\/noindex>, available on some servers with Intel Xeon processors. This technology allows for configuring performance and bandwidth settings for different CPU cores, prioritizing performance for tasks executed on specific cores while sacrificing performance on others.\n<li class=\"l\"> Processes in user space <noindex><a rel=\"nofollow\" href=\"https:\/\/lwn.net\/Articles\/790920\/\">are provided with<\/a><\/noindex> the ability to wait for a short period without using loops through the umwait instruction. This instruction, along with the umonitor and tpause instructions, will be offered in the upcoming Intel 'Tremont' chips and will allow for delays that are energy-efficient and do not affect the performance of other threads when using Hyper Threading;\n<li class=\"l\"> Support for large memory pages (huge pages) has been added for the RISC-V architecture.\n<li class=\"l\"> The kprobes tracing mechanism now allows dereferencing kernel pointers in user space, which can be used, for example, to evaluate the contents of structures passed in system calls. Additionally, the ability to set checks at boot time has been added.\n<li class=\"l\"> The configuration file now includes the PREEMPT_RT option for real-time operation. While the code to support real-time mode has not yet been added to the kernel, the appearance of the option is a positive sign that the long saga of <noindex><a rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=43094\">integration<\/a><\/noindex> Realtime-Preempt patches is nearing its end.\n<li class=\"l\"> A new system call clone3() has been added, implementing a more extensible version of the clone() interface, allowing for the specification of a greater number of flags.\n<li class=\"l\"> A handler bpf_send_signal() has been added, enabling BPF programs to send signals to arbitrary processes.\n<li class=\"l\"> A new event filtering mechanism has been added for perf events in the KVM hypervisor environment, allowing the administrator to define which types of events are permitted or prohibited for monitoring on the guest system side.\n<li class=\"l\"> The verification mechanism for eBPF applications now supports handling programs with loops, provided that the execution of the loop is limited and does not exceed the maximum instruction limit.\n<\/ul>\n<li class=\"l\"> <b>Disk subsystem, input\/output, and file systems<\/b>\n<ul>\n<li class=\"l\"> The XFS file system now supports multi-threaded traversal of inodes (for example, when checking quotas). New ioctl BULKSTAT and INUMBERS have been added, providing access to features introduced in the fifth revision of the FS format, such as inode birth time and the ability to set BULKSTAT and INUMBERS parameters for each Allocation Group (AG);\n<li class=\"l\"> In Ext4 <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=4e19d6b65fb4fc42e352ce9883649e049da14743\">support added<\/a><\/noindex>  gaps in directories (unallocated blocks).<br \/>\n<noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=02b016ca7f99229ae6227e7b2fc950c4e140d74a\">Processing has been ensured<\/a><\/noindex> the immutable flag (&#171;i&#187;) for open files (prohibiting write operations if the flag was set when the file was already opened);<\/p>\n<li class=\"l\"> Btrfs now supports fast implementation of crc32c on all architectures;\n<li class=\"l\"> In CIFS, the support for smbdirect has been removed from experimental status. SMB3 has added the ability to use cryptographic algorithms in GCM mode. A new mounting option has been added to extract mode parameters from ACE (Access Control Entry) records. Performance of the open() call has been optimized;\n<li class=\"l\"> F2FS has added an option to limit the garbage collector when operating in checkpoint=disable mode. An ioctl for deleting ranges of blocks from F2FS has been added, allowing for on-the-fly partition resizing. Support for swap file placement in F2FS with direct I\/O has been introduced. Support for file pinning and block allocation for such files has been added for all users;\n<li class=\"l\"> The io_uring interface for asynchronous I\/O has added support for asynchronous sendmsg() and recvmsg() operations;\n<li class=\"l\"> The UBIFS file system has added support for compression using the zstd algorithm and the ability to verify signed FS images;\n<li class=\"l\"> In the Ceph FS, support for SELinux security labels for files has been added;\n<li class=\"l\"> For NFSv4, a new mount option &#171;nconnect=&#187; has been implemented, defining the number of established connections with the server. Traffic between these connections will be load-balanced. Furthermore, the NFSv4 server now creates the directory \/proc\/fs\/nfsd\/clients containing information about current clients, including details about their open files;\n<\/ul>\n<li class=\"l\"> <b>Virtualization and Security<\/b>\n<ul>\n<li class=\"l\"> A hypervisor for embedded devices has been included in the kernel <noindex><a rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=51399\">ACRN<\/a><\/noindex>, designed with readiness for real-time task execution and suitability for use in mission-critical systems. ACRN ensures minimal overhead, guarantees low latency, and adequate responsiveness when interacting with hardware. It supports virtualization of CPU resources, input\/output, networking subsystems, graphics, and sound operations. ACRN can be used to run multiple isolated virtual machines in electronic control units, dashboards, automotive information systems, consumer IoT devices, and other embedded equipment;\n<li class=\"l\"> In User-mode Linux <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/linus\/065038706f77\">implemented<\/a><\/noindex> a \u2018time-travel\u2019 mode, allowing time to be slowed down or sped up in the UML virtual environment to facilitate debugging of time-related code. Furthermore, a parameter has been added,<br \/>\ntime-travel-start has been added, allowing system clocks to start from a specified moment in epoch format;<\/p>\n<li class=\"l\"> New kernel command-line options &#171;init_on_alloc&#187; and &#171;init_on_free&#187; have been added, which, when specified, enable the zeroing of allocated and freed memory areas (filling with zeros upon malloc and free), enhancing security at the cost of additional initialization overhead;\n<li class=\"l\"> A new driver has been added.  <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/linus\/edcd69ab9a323b7ac7a86e1c44b6c9c46598391f\">virtio-iommu<\/a><\/noindex> , implementing a paravirtualized device that allows sending IOMMU requests such as ATTACH, DETACH, MAP, and UNMAP over virtio transport without emulating memory page tables;\n<li class=\"l\">  A new driver has been added. <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/linus\/6e84200c0a2994b991259d19450eee561029bf70\">virtio-pmem<\/a><\/noindex>, providing access to storage devices mapped into the physical address space, such as NVDIMM;\n<li class=\"l\"> The ability to attach cryptographic keys to user or network namespaces has been implemented (keys become unavailable outside the selected namespace), as well as key protection using ACLs;\n<li class=\"l\"> In the cryptosubsystem, <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=67882e76492483bafa9b1b1648bb031e9abe5185\">has added<\/a><\/noindex> support for a very fast non-cryptographic hashing algorithm <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/Cyan4973\/xxHash\">xxhash<\/a><\/noindex>, whose speed is limited by memory performance;\n<\/ul>\n<li class=\"l\"> <b>Network subsystem<\/b>\n<ul>\n<li class=\"l\"> Support for processing IPv4 addresses in the range 0.0.0.0\/8, which was previously unavailable for use, has been provided. Introducing this subnet <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/dtaht\/unicast-extensions\">will allow<\/a><\/noindex> allows the distribution of an additional 16 million IPv4 addresses;\n<li class=\"l\"> In Netfilter for nftables, <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=c9626a2cbdb20e26587b3fad99960520a023432b\">has added<\/a><\/noindex> support for packet filtering hardware acceleration mechanisms has been enabled through the addition made to the drivers <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=da3eeb904ff432ec22cf7b4db17a47647428873a\">Flow Block API<\/a><\/noindex>Full rule tables can be exported to the network adapter side with all chains. Activation is done by binding the NFT_TABLE_F_HW flag to the table. Basic metadata for level 3 and 4 protocols, actions to accept\/reject, and matches by IP and network ports of the sender\/receiver and protocol type are supported;\n<li class=\"l\"> <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=3c171f496ef57774f8e5d509923372549734877f\">Added<\/a><\/noindex> built-in support for connection tracking for network bridges, eliminating the need for a br_netfilter emulation layer;\n<li class=\"l\"> In nf_tables <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/linus\/ad49d86e07a497e834cb06f2b151dccd75f8e148\">has added<\/a><\/noindex> support for the SYNPROXY module, replicating similar functionality from iptables, as well as the ability to inspect specific header options in IPv4 rules;\n<li class=\"l\">  New capability to attach BPF programs to the system calls setsockopt() and getsockopt(), allowing for custom access handlers on these calls. Additionally, a new hook point has been added to enable BPF program invocation once per RTT (round-trip time) interval;\n<li class=\"l\"> For IPv4 and IPv6 <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=ab84be7e54fc3d9b248285f1a14067558d858819\">implemented<\/a><\/noindex> a new routing data storage mechanism called nexthop aimed at increasing the scalability of routing tables. Tests have shown that using the new system, loading 743,000 routes into the kernel took only 4.3 seconds;\n<li class=\"l\">  For Bluetooth <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=302975cba1a4244d84e645773c82edbcfae1875f\">within<\/a><\/noindex> functionality necessary to support LE ping;\n<\/ul>\n<li class=\"l\"> <b>Hardware<\/b>\n<ul>\n<li class=\"l\"> <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=761fdd5e3327db6c646a09bab5ad48cd42680cd2\">Added<\/a><\/noindex> support for x86-compatible processors from <noindex><a rel=\"nofollow\" href=\"https:\/\/ru.wikipedia.org\/wiki\/Zhaoxin\">Zhaoxin<\/a><\/noindex>, developed as a result of a joint project between VIA Technologies and the Shanghai municipality. The ZX CPU family is based on the x86-64 Isaiah architecture, continuing the evolution of technologies from <noindex><a rel=\"nofollow\" href=\"https:\/\/en.wikipedia.org\/wiki\/Centaur_Technology\">VIA Centaur<\/a><\/noindex>;\n<li class=\"l\"> Support for parsing, processing, and sending HDR (High Dynamic Range) metadata through the HDMI port has been added to the DRM (Direct Rendering Manager) subsystem and the amdgpu and i915 graphics drivers, enabling the use of HDR panels and screens capable of displaying extended brightness ranges;\n<li class=\"l\"> The amdgpu driver has introduced initial support for AMD NAVI (RX5700) GPUs, which includes a basic driver, code for screen interaction (DCN2), and support for GFX and computing (GFX10),<br \/>\nSDMA 5 (System DMA0), power management tools, and multimedia encoders\/decoders (VCN2). Additionally, improved support for Vega12 and Vega20 GPU-based cards has been added to amdgpu, providing enhanced memory and power management capabilities;<\/p>\n<li class=\"l\"> The amdkfd driver (for discrete GPUs such as Fiji, Tonga, and Polaris) has added support for VegaM-based GPU cards;\n<li class=\"l\"> In the DRM driver for Intel video cards for Icelake chips <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=02ae8ba9664081a74cafe6662e64b3d7b8b292e6\">is implemented<\/a><\/noindex> a new multi-segment gamma correction mode has been introduced. DisplayPort output now supports YCbCr4:2:0 format. New firmware has been added <noindex><a rel=\"nofollow\" href=\"https:\/\/01.org\/linuxgraphics\/downloads\/firmware\">GuC<\/a><\/noindex> for SKL, BXT, KBL, GLK, and ICL. The ability to turn off the display power in asynchronous mode has been implemented. <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=1215d28e722ce27172de7708ead6824fcfb19364\">Added<\/a><\/noindex> support for saving and restoring rendering context for Ironlake (gen5) and gen4 (Broadwater \u2014 Cantiga) chips, enabling the restoration of GPU state from user space when transitioning from executing one batch operation to another;\n<li class=\"l\"> The Nouveau driver now supports the NVIDIA Turing TU116 chipset;\n<li class=\"l\"> The capabilities of the DRM\/KMS driver for ARM Komeda (Mali D71) screen operation accelerators have been expanded, adding support for scaling, layer splitting\/merging, rotation, deferred writing, AFBC, SMMU, and color encoding formats Y0L2, P010, YUV420_8\/10BIT;\n<li class=\"l\"> The MSM driver has added support for the Adreno A540 GPU series used in Qualcomm processors, as well as support for the MSM8998 DSI controller for Snapdragon 835;\n<li class=\"l\"> Drivers for Samsung S6E63M0, Armadeus ST0700, EDT ETM0430G0DH6, OSD101T2045-53TS LCD panels have been added,<br \/>\nEvervision VGG804821, FriendlyELEC HD702E, KOE tx14d24vm1bpa, TFC S9700RTWV43TR-01B, EDT ET035012DM6, and VXT VL050-8048NT-C01;<\/p>\n<li class=\"l\"> <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=3e7f51bd96077acad6acd7b45668f65b44233c4e\">Added<\/a><\/noindex> driver for utilizing video decoding acceleration<br \/>\navailable in the Amlogic Meson SoC;<\/p>\n<li class=\"l\"> The v3d driver (for the Broadcom Video Core V GPU used in Raspberry Pi) has introduced <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=d223f98f02099b002903b9b22b56febae16ef80d\">disabling the tracker blocking<\/a><\/noindex> computational shader dispatching;\n<li class=\"l\"> <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=038b1a05eae6666b731920e46f47d8e2332e07ff\">Added<\/a><\/noindex> driver for SPI keyboards and touchpads used in modern Apple MacBook and MacBookPro models;\n<li class=\"l\"> <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/torvalds\/linux\/commit\/47d6a7607443ea43dbc4d0f371bf773540a8f8f4\">Added<\/a><\/noindex> additional protection for ioctl calls related to the floppy driver, which has been marked as orphaned<br \/>\n(\u2018orphaned\u2019), meaning that its testing has been discontinued. The driver remains in the kernel, but its proper functioning is not guaranteed. The driver is considered deprecated, as it is difficult to find functional hardware for its testing \u2014 all current external drives typically use the USB interface. <\/p>\n<li class=\"l\"> <noindex><a rel=\"nofollow\" href=\"https:\/\/git.kernel.org\/pub\/scm\/linux\/kernel\/git\/torvalds\/linux.git\/commit\/?id=d3df18a97e586702920337056540267807b23f8e\">Added<\/a><\/noindex> cpufreq driver for Raspberry Pi boards allowing dynamic frequency scaling of the processor;\n<li class=\"l\"> Support has been added for new ARM SoCs Mediatek mt8183 (4x Cortex-A73 + 4x Cortex-A53), TI J721E (2x Cortex-A72 + 3x Cortex-R5F + 3 DSPs + MMA), and Amlogic G12B (4x Cortex-A73 + 2x Cortex-A53), as well as boards:\n<ul>\n<li>  <noindex><a rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=51436\">Purism Librem5<\/a><\/noindex>,\n<li> Aspeed BMC,\n<li> Microsoft Olympus BMC,\n<li> Kontron SMARC,\n<li> Novtech Meerkat96 (i.MX7),\n<li> ST Micro Avenger96,\n<li> Google Cheza (Qualcomm SDM845),\n<li> Qualcomm Dragonboard 845c (Qualcomm SDM845),\n<li> Hugsun X99 TV Box (Rockchip RK3399),\n<li> Khadas Edge\/Edge-V\/Captain (Rockchip RK3399),\n<li> HiHope RZ\/G2M,\n<li> NXP LS1021A-TSN.\n<\/ul>\n<\/ul>\n<\/ul>\n<p>At the same time, the Latin American Free Software Foundation <noindex><a rel=\"nofollow\" href=\"http:\/\/www.fsfla.org\/ikiwiki\/selibre\/linux-libre\/\">has formed<\/a><\/noindex><br \/>\nvariant <noindex><a rel=\"nofollow\" href=\"http:\/\/www.fsfla.org\/ikiwiki\/selibre\/linux-libre\/\">fully free kernel 5.3<\/a><\/noindex> \u2014 <noindex><a rel=\"nofollow\" href=\"http:\/\/linux-libre.fsfla.org\/pub\/linux-libre\/releases\/5.3-gnu\/\">Linux-libre 5.3-gnu<\/a><\/noindex>, cleaned of firmware and driver elements containing non-free components or code segments whose use is restricted by the manufacturer. In this release, blob loading in the qcom, hdcp drm, allegro-dvt, and meson-vdec drivers has been disabled.<br \/>\n The cleanup code for blobs in the amdgpu, i915, netx, r8169, brcmfmac, rtl8188eu, adreno, si2157, pvrusb2, touchscreen_dmi sound driver for skylake, as well as in the microcode documentation has been updated. <\/p>\n<p><noindex><a rel=\"nofollow\" name=\"link\"><\/a><\/noindex><\/p>\n<p>Source: <a \ncontent=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=51447\">opennet.ru<\/a><\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u041f\u043e\u0441\u043b\u0435 \u0434\u0432\u0443\u0445 \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u041b\u0438\u043d\u0443\u0441 \u0422\u043e\u0440\u0432\u0430\u043b\u044c\u0434\u0441 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0440\u0435\u043b\u0438\u0437 \u044f\u0434\u0440\u0430 Linux 5.3. \u0421\u0440\u0435\u0434\u0438 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0437\u0430\u043c\u0435\u0442\u043d\u044b\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439: \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 GPU AMD Navi, \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u043e\u0432 Zhaoxi \u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u044d\u043d\u0435\u0440\u0433\u043e\u043f\u043e\u0442\u0440\u0435\u0431\u043b\u0435\u043d\u0438\u0435\u043c Intel Speed Select, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0439 umwait \u0434\u043b\u044f \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u0431\u0435\u0437 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0446\u0438\u043a\u043b\u043e\u0432, \u043f\u043e\u0432\u044b\u0448\u0430\u044e\u0449\u0438\u0439 \u0438\u043d\u0442\u0435\u0440\u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u044c \u0440\u0435\u0436\u0438\u043c &#8216;utilization clamping&#8217; \u0434\u043b\u044f \u0430\u0441\u0438\u043c\u043c\u0435\u0442\u0440\u0438\u0447\u043d\u044b\u0445 CPU, \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0432\u044b\u0437\u043e\u0432 pidfd_open, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f IPv4-\u0430\u0434\u0440\u0435\u0441\u043e\u0432 \u0438\u0437 \u043f\u043e\u0434\u0441\u0435\u0442\u0438 0.0.0.0\/8, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[702],"tags":[],"class_list":["post-38151","post","type-post","status-publish","format-standard","hentry","category-news"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u041f\u043e\u0441\u043b\u0435 \u0434\u0432\u0443\u0445 \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u041b\u0438\u043d\u0443\u0441 \u0422\u043e\u0440\u0432\u0430\u043b\u044c\u0434\u0441 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0440\u0435\u043b\u0438\u0437 \u044f\u0434\u0440\u0430 Linux.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-3\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47\u0420\u0435\u043b\u0438\u0437 \u044f\u0434\u0440\u0430 Linux 5.3 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u041f\u043e\u0441\u043b\u0435 \u0434\u0432\u0443\u0445 \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u041b\u0438\u043d\u0443\u0441 \u0422\u043e\u0440\u0432\u0430\u043b\u044c\u0434\u0441 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0440\u0435\u043b\u0438\u0437 \u044f\u0434\u0440\u0430 Linux.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-3\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2019-10-31T19:21:56+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2019-10-31T19:21:56+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47Linux Kernel 5.3 Release | ProHoster","description":"After two months of development, Linus Torvalds announced the release of the Linux kernel.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-3","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"en_US","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47\u0420\u0435\u043b\u0438\u0437 \u044f\u0434\u0440\u0430 Linux 5.3 | ProHoster","og:description":"\u041f\u043e\u0441\u043b\u0435 \u0434\u0432\u0443\u0445 \u043c\u0435\u0441\u044f\u0446\u0435\u0432 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 \u041b\u0438\u043d\u0443\u0441 \u0422\u043e\u0440\u0432\u0430\u043b\u044c\u0434\u0441 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u0438\u043b \u0440\u0435\u043b\u0438\u0437 \u044f\u0434\u0440\u0430 Linux.","og:url":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-3","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2019-10-31T19:21:56+00:00","article:modified_time":"2019-10-31T19:21:56+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"38151","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-01-23 20:40:20","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-03-01 01:14:22","updated":"2026-01-23 20:40:20","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/38151","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=38151"}],"version-history":[{"count":0,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/38151\/revisions"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=38151"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=38151"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=38151"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}