{"id":139749,"date":"2025-07-28T17:11:54","date_gmt":"2025-07-28T15:11:54","guid":{"rendered":"https:\/\/prohoster.info\/blog\/novosti-interneta\/reliz-yadra-linux-6-16"},"modified":"2025-07-28T17:11:54","modified_gmt":"2025-07-28T15:11:54","slug":"reliz-yadra-linux-6-16","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-6-16","title":{"rendered":"Release of Linux kernel 6.16.","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>After two months of development, Linus Torvalds presented the release of the Linux kernel 6.16. Among the most notable changes are: a driver for accelerating OpenVPN, the Kexec HandOver mechanism, enabling five-level page tables for x86 by default, the removal of the DCCP protocol, the zloop block driver, the ability to send core dumps via a UNIX socket, support for atomic write operations in XFS, offload processing of audio for USB devices, optimizations in Ext4, a virtual TPM (Trusted Platform Module) driver, a full implementation of Device Memory TCP, support for unnamed pipes in io_uring, preparation for the integration of the Asahi DRM driver, the \u201cusermode queue\u201d mechanism in the AMDGPU driver, and support for Intel TDE (Trusted Domain Extensions) and Intel APE (Advanced Performance Extensions).    <\/p>\n<p>The new version includes 15,924 fixes from 2,145 developers, with a patch size of 50 MB (the changes affected 13,793 files, adding 655,451 lines of code and removing 316,441 lines). In the previous release, there were 15,945 fixes from 2,154 developers, with a patch size of 59 MB. About 45% of all changes in 6.16 are related to device drivers, approximately 16% pertain to code updates specific to hardware architectures, 13% are related to the networking stack, 4% to file systems, and 3% to internal kernel subsystems.       <\/p>\n<p>Key innovations in kernel 6.16:  <\/p>\n<ul>\n<li class=\"l\"> <b>Disk subsystem, input\/output, and file systems<\/b>\n<ul>\n<li class=\"l\"> A zloop driver has been added to create zoned block loopback devices, which are mounted in loop mode. The driver emulates the behavior of regular block devices using several files from an existing file system (one file for each zone). This feature may be useful for testing file systems, device mapper handlers, and applications for their support of zoned devices that apply zone grouping of blocks or sectors, which only allow sequential data addition with the entire group of blocks being updated.\n<li class=\"l\"> The XFS file system now supports atomic writes of large data chunks\u2014several blocks can now be written atomically (either all blocks will be successfully written, or none will).\n<li class=\"l\"> In the Ext4 file system, the performance of the 'fast commit' mechanism has been improved. Support for large folios of memory pages has been added for regular files, which increased performance by 37% in intensive sequential I\/O tests. Support for atomic write operations covering multiple blocks has also been added.\n<li class=\"l\"> Support for the DAX mechanism, which provides direct access to the FS bypassing the page cache, has been deprecated in the ext2 file system driver. The removal of DAX from the ext2 driver is scheduled for the end of the year. The reason mentioned is the consideration of the ext2 driver as a stable reference implementation, in which the use of specific features that have not gained proper adoption is unacceptable.\n<li class=\"l\"> The OrangeFS, UFS, BFS, and OMFS file systems have been transitioned to use the new partition mounting API.\n<li class=\"l\"> A new vfs_cache_pressure_denom setting has been added to sysctl, allowing control over the number of entries in the \u2018dentry\u2019 cache (the internal representation of directory entries) under low memory conditions in the system. The higher the value set, the more entries can be evicted from the cache (fewer entries will remain in the cache) during memory shortages.\n<li class=\"l\"> In the Bcachefs file system, a new option 'rebalance_on_ac_only' has been added, which prohibits rebalancing and background compression operations when the system is powered by a battery. The operations for deleting snapshots and devices have been accelerated. Memory consumption has been reduced when mounted in read-only mode. The possibility of running some recovery operations in the background without interrupting file system operations has been introduced.\n<li class=\"l\"> The power management subsystem is allowed to independently freeze file systems and EFI variables for sleep and hibernation modes (if the FS is already frozen by the user-space handler, no re-freezing occurs).\n<li class=\"l\"> The performance of EROFS can be accelerated using the built-in Intel QAT (QuickAssist Technology) processor accelerator, which offers tools for speeding up computations related to compression and encryption.\n<li class=\"l\"> The maximum data packet size for read and write operations in NFS has been increased from 1 to 4 MB (the default is set to 1 MB, as not all clients support larger sizes).\n<li class=\"l\"> Unprivileged users with CAP_SYS_ADMIN rights in a separate user namespace, but without elevated rights in the root namespace, are provided the ability to use the fanotify mechanism to monitor changes in file systems.\n<li class=\"l\"> For file systems using the FUSE subsystem, functionality has been added to clear all cached directory entries (dentries) at once. Support for large page folios has been added to the FUSE subsystem.\n<li class=\"l\"> In the OverlayFS, support has been implemented for creating data layers in unprivileged namespaces that utilize integrity checking based on the dm-verity module. This feature allows for combining trusted layers with metadata and untrusted data layers processed in unprivileged namespaces.                      <\/ul>\n<li class=\"l\"> <b>Memory and system services<\/b>\n<ul>\n<li class=\"l\"> The KHO (Kexec HandOver) mechanism has been added to launch a new kernel from an old one without losing system state. Before handing control to the new kernel version, the state of key kernel subsystems can be serialized in a memory area that will not be affected by subsequent operations. The new kernel, upon gaining control, restores the serialized state. The Live Update Orchestrator (LUO) subsystem, which allows for kernel reloads without stopping device operations, is being developed based on KHO.\n<li class=\"l\"> A kernel build parameter CONFIG_X86_NATIVE has been added, allowing the use of the '-march=native' option during compilation to optimize according to the capabilities of the processor on the current system.\n<li class=\"l\"> Support for the Intel APX (Advanced Performance Extension) instruction set architecture extension has been added, providing 16 additional general-purpose registers (in addition to the existing 16), allowing for fewer memory read and write operations in code to enhance performance and reduce power consumption.\n<li class=\"l\"> A mode for automatic memory distribution policy tuning in NUMA systems has been added, where all node weights are recalculated when new bandwidth information is available during boot or when memory is hot-plugged.\n<li class=\"l\"> The implementation of futexes has introduced support for a local hash table of processes (local futex_hash_bucket), which, unlike the previously supported global hash table for all processes, is local to a single process and is shared by all threads of that process. Local hash tables are used only for the PROCESS_PRIVATE futex operation. Additionally, the new release adds support for FUTEX2_NUMA and FUTEX2_MPOL options, allowing control over the placement of futexes in memory, positioning them closer to the processes that use them.\n<li class=\"l\"> For x86_64 systems, permanent support for five-level page tables (the CONFIG_X86_5LEVEL parameter that controlled the inclusion of five-level tables has been removed) is included.\n<li class=\"l\"> Support for task scheduler operation with energy awareness (EAS - Energy Aware Scheduling) has been added to the intel_pstate driver, which manages power consumption parameters (P-state) on systems with Intel processors, specifically on hybrid processors that combine high-performance and energy-efficient CPU cores, such as Intel Lunar Lake.\n<li class=\"l\"> In sysfs, interfaces have been added: '\/sys\/devices\/system\/cpu\/cpuN\/cpu_capacity' to obtain information about the capabilities of various CPUs in hybrid processors and '\/sys\/devices\/system\/cpu\/cpuidle\/intel_c1_demotion' to control the ability to keep the CPU in a more performant state even if the core attempts to transition the CPU to a lower power state (for example, the core may request a transition to power state C6, but firmware under high CPU wake-up intensity may keep it in state C1).\n<li class=\"l\"> Support for lazy task preemption mode (PREEMPT_LAZY) has been enabled for the ARM64 architecture, which corresponds to full preemption mode ('full preemption') for real-time tasks (RR\/FIFO\/DEADLINE), but delays the preemption of normal tasks (SCHED_NORMAL) until the tick boundary.\n<li class=\"l\"> For the ARM64 architecture, support for the use of SME (Scalable Matrix Extension) extensions has been added, enabled through the CONFIG_ARM64_SME parameter.\n<li class=\"l\">  The transfer of changes from the Rust-for-Linux branch related to the use of the Rust language as a second language for developing drivers and kernel modules continues (support for Rust is not enabled by default and does not make Rust a mandatory build dependency for the kernel). For modules written in Rust, the use of configfs is provided. Abstractions necessary for developing graphics drivers have been added. The capabilities of the alloc, time, str, list, workqueue, and page modules have been expanded. Support for the macro \"assert!\" in KUnit-based tests has been added. A set of abstractions for managing CPU frequency and using APIs related to power management has been added. Support for the data structure 'xarray' has been included.\n<li class=\"l\"> For the RISC-V architecture, the implementation of the getrandom() system call has been ported, optimized using the vDSO (virtual dynamic shared object) mechanism, which allows shifting the system call handler from the kernel to user space and avoids context switches. In conducted tests, the optimization accelerated random number generation by 17 times. For RISC-V, support for vector extensions Zicbop, Zabha, and Svinval, used in SiFive processors, has also been implemented.\n<li class=\"l\"> For the LoongArch architecture, the limit on the number of CPUs in the system has been raised from 256 to 2048. Support for the SCHED_MC (Multi-core) task scheduler has been added.\n<li class=\"l\"> The ability to use Unix sockets for passing file descriptors has been introduced. To disable this functionality, applications can use the SO_PASSRIGHTS flag in setsockopt().\n<li class=\"l\"> The ability to map a ring buffer used for kernel tracing into user space memory has been provided.\n<li class=\"l\"> Crash-dump handlers used to generate a report on issues after the kernel crashes can now utilize the LUKS keys used by the faulty kernel to save crash dumps in encrypted file systems.\n<li class=\"l\"> The io_uring asynchronous input\/output system has added the IORING_OP_PIPE operation for creating unnamed pipes, similar to the pipe2 system call, except it supports fixed file descriptors.\n<li class=\"l\"> A kernel command line option \"rt_group_sched\" has been added to manage the inclusion of the scheduler for realtime-group tasks (SCHED_RR). The option is similar to the RT_GROUP_SCHED setting in Kconfig.\n<li class=\"l\"> For devices based on the CXL (Compute Express Link) bus, used to organize high-speed interaction between the CPU and memory devices, support for RAS (Reliability, Availability, Serviceability) extensions has been implemented, allowing for various error detection and correction schemes. CXL enables the connection of new memory areas provided by external memory devices and uses them as additional resources for the physical address space to expand system RAM (DDR) or persistent memory (PMEM).\n<li class=\"l\"> The minimum required GCC version for kernel compilation across all architectures has been raised to GCC 8. Additionally, at least version 2.30 of the binutils package is now required for compilation.\n<li class=\"l\"> The system call uselib() has been removed, as it has long been deprecated; mmap() is now used for program access to shared libraries.                  <\/ul>\n<li class=\"l\"> <b>Virtualization and Security<\/b>\n<ul>\n<li class=\"l\"> Initial support has been added for the Intel TDX (Trusted Domain Extensions) mechanism to protect guest systems running under the KVM hypervisor from intrusion and analysis by the host system administrator, as well as physical attacks on the hardware. Protection is ensured through memory encryption. <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/vps\/\"   title=\"of virtual machines\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"2021\">of virtual machines<\/a>.\n<li class=\"l\"> A virtual TPM (Trusted Platform Module) driver has been added, allowing virtual machines to interact with TPM devices emulated by the SVSM (Secure VM Service Module).\n<li class=\"l\"> The use of the GCC plugin randstruct has been restored, which randomizes the layout of data structures at compile time to complicate the exploitation of vulnerabilities.\n<li class=\"l\"> Support for using IMA (Integrity Measurement Architecture) technology to check integrity at the start of new kernels via the kexec system call has been added.\n<li class=\"l\"> Work has been done to reduce the performance impact of using SELinux. To speed up operations, a cache of access check results for directories has been added. The genfscon rules now allow the use of masks.\n<li class=\"l\"> In the code interacting with EFI, the ability to embed the SBAT (UEFI Secure Boot Advanced Targeting) section with metadata about revoked boot component versions has been provided.\n<li class=\"l\"> In loadable modules, the section \".static_call_sites\" has been made read-only after initialization is complete.\n<li class=\"l\"> For 64-bit ARM systems, nested virtualization support is implemented in the KVM hypervisor (disabled by default).\n<li class=\"l\"> Stable support for the RISC-V architecture has been declared in the KVM hypervisor.                                  <\/ul>\n<li class=\"l\"> <b>Network subsystem<\/b>\n<ul>\n<li class=\"l\"> The ovpn driver has been accepted, allowing significant performance improvements for OpenVPN by offloading encryption, packet processing, and channel management operations to the Linux kernel. The driver eliminates overhead associated with context switching, optimizes performance through direct access to the kernel's internal APIs, and avoids slow data transfers between the kernel and user space (encryption, decryption, and routing are performed by the module without sending traffic to the user-space handler).\n<li class=\"l\"> The Device Memory TCP mechanism has been updated to support sending data from device memory (TX path). Previously, to simplify the integration of Device Memory TCP into the kernel, functionality was limited to data reception (RX path). Device Memory TCP allows for the use of network sockets for direct sending of peripheral device memory content over the network (zero-copy mode), as well as direct placement of network packet content in the device memory on the receiver's side. Data transmitted in packets moves from the network card to the peripheral device's memory (DMABUF), such as GPU memory, or from device memory directly to the network card, bypassing the CPU, while packet headers are stored in regular kernel buffers.\n<li class=\"l\"> Sending the contents of core dumps through the AF_UNIX socket is now possible, enabling the creation of more secure user-space core dump handlers that are not reliant on privileged process calls from the kernel.\n<li class=\"l\"> Support for the DCCP (Datagram Congestion Control Protocol) network protocol, which has not gained popularity and has remained unmaintained in the kernel for five years, has been removed. The removal of DCCP from the kernel will eliminate barriers that hinder the redesign of the inet_connection_sock data structure to enhance TCP stack efficiency. Support for netfilter modules for DCCP packet filtering has been retained.\n<li class=\"l\"> To simplify error handling when using sockets, the kernel can now pass pidfd for already terminated processes (pidfd is tied to specific processes and unlike pid, is not reassigned).\n<li class=\"l\"> With BPF, it is now possible to create packet queue management handlers in the network stack (qdiscs) to influence the order of network packet processing.\n<li class=\"l\"> The AFS network file system has implemented GSSAPI (Generic Security Services API) for managing encryption of connections with <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/server\/dts-dusseldorf\/\"   title=\"servers\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"3430\">servers<\/a> YFS and OpenAFS.\n<li class=\"l\"> A significant amount of optimizations has been made. The lock organization for IPv6 routing tables has been reworked (some routing operations now perform up to 3 times faster). The software computation of crc32c checksums has been accelerated. The GRO engine for tunneled UDP traffic has been sped up by 10%. The auto-tuning of the receiving buffer for TCP has been improved and the default limits have been increased (in conducted tests, throughput for single streams over a 200Gbs channel increased by 60%).\n<li class=\"l\"> Netfilter has added the ability to use masks in the names of network devices used in netdev and flowtable. The conntrack tracing information has been integrated into the nft trace infrastructure. The extraction of connection tracking tables (conntrack) via procfs has been accelerated.      <\/ul>\n<li class=\"l\"> <b>Hardware<\/b>\n<ul>\n<li class=\"l\"> Support has been added for offloading audio stream processing to USB interface sound devices (USB audio offload). This change significantly reduces the power consumption of portable devices by continuing to process the audio stream while the rest of the system is in sleep mode. Previously, a specific implementation of audio offload processing for USB devices was provided in kernels for the Android platform, and now a universal implementation has appeared in the main kernel that can be used by any projects.\n<li class=\"l\"> Continued integration of Nova driver components for NVIDIA GPUs equipped with GSP firmware, used starting from the NVIDIA GeForce RTX 2000 series based on the Turing microarchitecture. The driver is written in Rust. In addition to the nova-core component added in the previous release, which implements a basic level of abstraction over the GSP firmware programming interfaces, version 6.16 includes the initial implementation of the nova-drm (Direct Rendering Manager) DRM driver for interacting with the GPU from user space.\n<li class=\"l\"> The process of promoting the Asahi DRM driver for Apple AGX GPUs, used in Apple Silicon chips, has begun. The driver is written in Rust. At this stage, only UAPI header files from the Asahi driver necessary for Mesa have been included in the kernel, while the main code of the Asahi driver will be integrated later.\n<li class=\"l\"> Support for NVIDIA Hopper and Blackwell family GPUs has been added to the Nouveau driver.\n<li class=\"l\"> Work on the Xe DRM driver (Direct Rendering Manager) for GPUs based on the Intel Xe architecture, which is used in Intel Arc family graphics cards and integrated graphics starting from Tiger Lake processors, has continued. The ability to use different firmware files for different Intel GPU families has been added.\n<li class=\"l\"> Support for the \"usermode queue\" mechanism has been implemented in the AMDGPU driver, allowing the creation of custom work queues in user space that can be sent directly to the GPU without going through the kernel scheduler. Support for the \"usermode queue\" has been enabled for Navi 4X GPUs and GFX 12.\n<li class=\"l\"> Support for Intel WCL (Whiskey Lake) audio systems, AMD ACP 7.x (Audio Co-Processor), Cirrus Logic CS35L63 and CS48L32, Everest Semiconductor ES8375 and ES8389, Pioneer DJM-V10, Longsoon-1 AC'97, NVIDIA Tegra264, Richtek ALC203, RT9123, and Rockchip SAI, as well as new Intel AVS platforms has been added.\n<li class=\"l\"> Support for ARM platforms, SoCs, and devices has been added: Samsung Exynos7870, Qualcomm Snapdragon X1P42100, Qualcomm MSM8926, RK3562, NXP i.MX94, Renesas RZ\/V2N, Amlogic S6\/S7\/S7D, WonderMedia wm8950, Amlogic s805y, Allwinner A523, Toradex Verdin AM62P, ROCK 5B+, Nitrogen8M Plus, Retronix R-Car V4H Sparrow Hawk, MT8186 Ponyta Chromebook, VIA APC Rock\/Paper, Renesas rz\/t2h, ASUS Transformer Pad LTE TF300TL, LG Nexus 4, Google Pixel 4a, Raspberry Pi 2.\n<li class=\"l\"> The driver for video capture cards based on STA2X11 chips has been removed.                    <\/ul>\n<\/ul>\n<p>Simultaneously, the Latin American Free Software Foundation has formed a variant of the fully free kernel 6.16 \u2014 Linux-libre 6.16-gnu, cleaned of firmware and driver elements containing proprietary components or code sections restricted by the manufacturer. In version 6.16, blob loading in the new Intel qat 6xxx crypto drivers, ST vd55g1 sensor, ath12k AHB wifi, Aeonsemi AS21xxx, and MediaTek 25Gb Ethernet has been neutralized. The names of blobs in DTS files (devicetree) for Qualcomm and MediaTek ARM chips have been cleaned. The blob cleaning code in the Nova Core, Nouveau, Realtek r8169 Ethernet, Qualcomm Iris, Venus, Mediatek mt7996 wifi, Qualcomm ath11k and ath12k wifi, Texas Instruments tas2781, and Renesas R-Car gen4 PCIe drivers has been updated.<br \/>\n<br \/>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=63632\">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 6.16. \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: \u0434\u0440\u0430\u0439\u0432\u0435\u0440 \u0434\u043b\u044f \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u044f OpenVPN, \u043c\u0435\u0445\u0430\u043d\u0438\u0437\u043c Kexec HandOver, \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u043f\u044f\u0442\u0438\u0443\u0440\u043e\u0432\u043d\u0435\u0432\u044b\u0445 \u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u043f\u0430\u043c\u044f\u0442\u0438 \u0434\u043b\u044f x86, \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0430 DCCP, \u0431\u043b\u043e\u0447\u043d\u044b\u0439 \u0434\u0440\u0430\u0439\u0432\u0435\u0440 zloop, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 core-\u0434\u0430\u043c\u043f\u043e\u0432 \u0447\u0435\u0440\u0435\u0437 UNIX-\u0441\u043e\u043a\u0435\u0442, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0430\u0442\u043e\u043c\u0430\u0440\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 XFS, offload-\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0437\u0432\u0443\u043a\u0430 \u0434\u043b\u044f USB-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043e\u043f\u0442\u0438\u043c\u0438\u0437\u0430\u0446\u0438\u0438 \u0432 Ext4, \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u0439 [&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-139749","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 6.16.\" \/>\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-6-16\" \/>\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 6.16 | 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 6.16.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-6-16\" \/>\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=\"2025-07-28T15:11:54+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-07-28T15:11:54+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\udd47Release of kernel Linux 6.16 | ProHoster","description":"After two months of development, Linus Torvalds presented the release of kernel Linux 6.16.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-6-16","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 6.16 | 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 6.16.","og:url":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-6-16","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":"2025-07-28T15:11:54+00:00","article:modified_time":"2025-07-28T15:11:54+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"139749","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":"default","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-02-19 09:17:27","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2026-01-23 14:01:19","updated":"2026-02-19 09:17:27","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\/139749","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=139749"}],"version-history":[{"count":2,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/139749\/revisions"}],"predecessor-version":[{"id":161805,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/139749\/revisions\/161805"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=139749"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=139749"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=139749"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}