{"id":122993,"date":"2025-03-25T22:22:41","date_gmt":"2025-03-25T20:22:41","guid":{"rendered":"https:\/\/prohoster.info\/blog\/novosti-interneta\/reliz-yadra-linux-6-14"},"modified":"2025-03-25T22:22:41","modified_gmt":"2025-03-25T20:22:41","slug":"reliz-yadra-linux-6-14","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-6-14","title":{"rendered":"Release of Linux kernel 6.14","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>After two months of development, Linus Torvalds presented the release of Linux kernel 6.14. Among the most notable changes are: the ntsync driver with Windows NT synchronization primitives, read operation balancing configuration in Btrfs RAID1, reflink support in XFS in realtime mode, the possibility of non-cacheable buffered I\/O, dmem cgroup for limiting GPU memory, utilization of io_uring in FUSE, delegation of attributes in NFS, support for atomic writes in Device Mapper, acceleration of symbolic links, management of script execution permissions, support for Qualcomm Snapdragon 8 Elite chips, and an AMD NPU driver.    <\/p>\n<p>The new version includes 12,115 fixes from 1,984 developers, with a patch size of 39 MB (the changes affected 10,170 files, added 531,586 lines of code, and removed 235,999 lines). The previous release contained 14,172 fixes from 2,086 developers, with a patch size of 46 MB. Approximately 41% of all changes presented in 6.14 are related to device drivers, about 13% pertain to updates specific to hardware architecture code, 14% are related to the network stack, 7% involve file systems, and 4% concern internal kernel subsystems.       <\/p>\n<p>Key innovations in kernel 6.14:  <\/p>\n<ul>\n<li class=\"l\"> <b>Disk subsystem, input\/output, and file systems<\/b>\n<ul>\n<li class=\"l\"> The Btrfs file system has introduced support for new methods of balancing read operations among drives in a RAID1 array. In addition to the previously existing process ID (pid)-based load distribution, the new version offers three new balancing modes: 'rotation' (even load distribution across all drives, mode enabled by default); 'latency' (distribution considering delays, which can be useful during failures or unstable drive operations); and 'devid' (manual control). An interface '\/sys\/fs\/btrfs\/\/read_policy' has been added to change the balancing mode. Among other changes in Btrfs is the implementation of ioctl FS_IOC_READ_VERITY_METADATA.\n<li class=\"l\"> A non-cacheable buffered I\/O mode has been added, in which data is removed from the page cache immediately after read or write operations are completed. This change may be beneficial when using very fast storage devices, where caching operations in memory is redundant. For such devices, the new mode prevents excessive memory consumption by the page cache without the need for elaborate Direct I\/O APIs.\n<li class=\"l\"> In fsnotify, the mechanism for tracking changes in the file system, a new event FS_PRE_ACCESS has been added, generated at the stage before accessing the contents of a file. The event is processed synchronously, meaning the kernel sends the event and waits for a response. If a response is received, the operation is performed; if a failure occurs, the system call returns an error code to user space. Using FS_PRE_ACCESS, a process in user space can, for example, manage file filling as data becomes ready in slower storage.\n<li class=\"l\"> Support for data exchange between the kernel and the user space handler using the io_uring I\/O mechanism has been added to the FUSE subsystem, which allows for the implementation of file systems in user space. This change improves FUSE performance by reducing context switches between the kernel and user space.\n<li class=\"l\"> Support for reverse mapping (rmap) has been added to the XFS file system, allowing operation in predictable latency mode (\"realtime device\"). Reverse mapping enables the determination of which file uses a specific block on the storage device. Using rmap, XFS has implemented support for the reflink operation in realtime mode, allowing file copies to be created by cloning file metadata and creating links to existing data without actually copying it.\n<li class=\"l\"> VFS has implemented caching of symbolic link sizes, achieving a 1.5% speed increase in executing the readlink operation (in tests with \/initrd.img in ext4). Caching is enabled in ext4 and tmpfs.\n<li class=\"l\"> Support for file attribute delegation has been added to NFSv4.2, allowing management of file attributes such as modification time (mtime) on the NFS client side without the need to flush changes to the server. NFS also enhances support for the \"LOCALIO\" protocol, which determines whether the NFS client and server are on the same host to utilize corresponding optimizations, such as enabling direct I\/O by the client.\n<li class=\"l\"> The performance of read operations in NETFS, CIFS, and AFS (Andrew File System) has been enhanced.\n<li class=\"l\"> Squashfs now includes a direct block loading mode into the page cache (SQUASHFS_FILE_DIRECT), eliminating the need for a separate read_page cache. This change has reduced the memory footprint when operating Squashfs.\n<li class=\"l\"> The statx() system call has implemented the STATX_DIO_READ_ALIGN flag to determine the required alignment for file read operations.\n<li class=\"l\"> In the Bcachefs file system, the format of disk structures has been updated and stabilized. Any further changes to the format will be categorized as optional and will be implemented as optional extensions. The speed of FS integrity checks has been significantly improved. Additionally, Bcachefs has enhanced read-only mode operations; issues causing memory access after free have been resolved; and problems with reflink pointers in fsck have been addressed; transaction restart handling has been corrected.\n<li class=\"l\"> The md-linear module, designed for combining block devices, has been restored. This module was previously deprecated and removed from the 6.8 kernel but, as it turned out, it was in demand and has now been reinstated.\n<li class=\"l\"> The F2FS and SQUASHFS file systems have migrated to using page folios.\n<li class=\"l\"> The OCFS2 and DLMFS file systems have transitioned to utilizing a new partition mounting API.\n<li class=\"l\"> The null_blk driver has implemented the \"rotational\" attribute, set through configfs, which simulates operation with a spinning disk device to simplify testing of kernel functions.\n<li class=\"l\"> Atomic write support has been implemented in the Device Mapper system and in the modules dm-mirror, dm-io, dm-table, dm-linear, dm-stripe, and dm-raid1.                             <\/ul>\n<li class=\"l\"> <b>Memory and system services<\/b>\n<ul>\n<li class=\"l\"> The integration into the core of the ntsync driver has been completed, implementing the symbolic device \/dev\/ntsync and a set of synchronization primitives used in the Windows NT kernel. Implementing such primitives at the kernel level significantly increases the performance of Windows games running through Wine. The performance boost is achieved by eliminating the overhead associated with using RPC in user space. The creation of a separate driver for the Linux kernel is due to the challenges of properly implementing the NT synchronization API over existing primitives in the kernel.\n<li class=\"l\"> A new DMEM cgroup controller has been added for the separate accounting of device memory areas, such as those for GPUs. DMEM allows for the creation of distinct cgroups for various tasks that work with the GPU, enabling them to run without interfering with each other. This new feature addresses the issue of forced termination of GPU operations when available memory runs out, as it accounts for both reflected GPU memory and CPU memory used by drivers in separate cgroups.\n<li class=\"l\"> Optimizations have been made to scale the flush operation of the TLB (Translation Lookaside Buffer) cache, which is used to accelerate the translation of virtual addresses to physical addresses. The added optimizations involve deferring the update of certain data structures during context switching, which allows for improved performance in certain test scenarios.\n<li class=\"l\"> The performance of the MGLRU (Multi-Generational LRU) mechanism has been enhanced, which is used to determine which memory pages are in use and which can be swapped out to the paging area.\n<li class=\"l\">  The migration of changes from the Rust-for-Linux branch has continued, relating to the use of the Rust language as a second language for developing drivers and kernel modules (Rust support is not active by default and does not lead to Rust being included as a mandatory build dependency for the kernel). The ability to use the \"derive(CoercePointee)\" macro in kernel code has been provided, allowing smart pointers with trait objects. Rust bindings for PCI, platforms, Open Firmware, character devices, and some I\/O functions have been included in the kernel. Greg Kroah-Hartman, responsible for supporting the stable branch of the Linux kernel, has characterized the current state as \"almost ready to write a real driver in Rust.\"\n<li class=\"l\"> A new code for generating debug symbol versions for loadable modules has been proposed in the build scenarios, which now uses information from debug records in DWARF format, rather than parsing the source code directly. This change allows versioning of debug symbols for modules written in Rust. The old implementation is also retained in the kernel, with the choice of generator made at the build options level.\n<li class=\"l\"> Support for the lazy preemption mode (PREEMPT_LAZY) has been implemented for the PowerPC architecture, corresponding to full preemption mode (\"full preemption\") for realtime tasks (RR\/FIFO\/DEADLINE), but delaying the preemption of normal tasks (SCHED_NORMAL) until the tick boundary.\n<li class=\"l\"> The performance profiling subsystem 'perf' has been updated to support power consumption counters for AMD processors. It now works on systems with up to 2048 CPU cores.\n<li class=\"l\"> The sysctl parameter pid_max can be used with process ID namespace. The pid_max parameter is designed to limit the maximum value of process identifiers (PID) and can now be used to restrict the maximum possible number of processes running in a specified namespace. The parameter is processed hierarchically, meaning that limitations in outer namespaces apply to nested namespaces.\n<li class=\"l\"> When using the execveat system call to initiate a process, the filename of the executed file will now be displayed in the \/proc file system instead of the file descriptor number.\n<li class=\"l\"> The kernel source code (in the samples\/vfs directory) has added the mountinfo utility, demonstrating the use of the statmount() and listmount() system calls.\n<li class=\"l\"> New functions bpf_local_irq_save() and bpf_local_irq_restore() have been proposed in the BPF subsystem to temporarily disable interrupts on the local CPU. These functions can be used to implement structures whose processing is not interrupted.\n<li class=\"l\"> In the madvise() system call, using the MADV_DONTNEED and MADV_FREE flags now ensures the release of memory page tables associated with the freed address range, as in some situations, empty memory pages can occupy a significant amount of memory.\n<li class=\"l\"> Support for restartable sequences (rseq) has been implemented for the OpenRISC architecture, designed for quick atomic execution of operations, which, if interrupted by another thread, are cleaned up and a retry is attempted.\n<li class=\"l\"> The code has been reorganized with the implementation of the CRC32 and CRC-T10DIF algorithms, which no longer overlap with the crypto subsystem and are called directly from the library interface. This change has simplified the code and improved its efficiency.\n<li class=\"l\"> An interface has been added to the io_uring asynchronous I\/O system for transferring additional integrity metadata during read and write operations.            <\/ul>\n<li class=\"l\"> <b>Virtualization and Security<\/b>\n<ul>\n<li class=\"l\"> The execveat system call has been enhanced with the AT_EXECVE_CHECK flag, allowing for the validation of file execution without actually running the file, while considering security policies, access rights, and active LSM modules. To be used with AT_EXECVE_CHECK, the securebit flags SECBIT_EXEC_RESTRICT_FILE and SECBIT_EXEC_DENY_INTERACTIVE are proposed, which can be utilized to restrict the execution of files with scripts written in interpreted programming languages. The SECBIT_EXEC_RESTRICT_FILE flag requires linkers and interpreters to employ the AT_EXECVE_CHECK option for execution validation, while the SECBIT_EXEC_DENY_INTERACTIVE flag prohibits the processing of interactive commands. The main idea behind this change is to apply security policies not only to traditional executable files but also to text files containing scripts that can be loaded through the interpreter (i.e., the execution prohibition can be implemented not only when running '.\/script.sh' but also when executing 'sh script.sh').\n<li class=\"l\"> On x86 systems, support for secure time counters for guest systems has been implemented, preventing changes to the guest system's system clocks from the host environment. This capability is based on the AMD SEV (Secure Encrypted Virtualization) mechanism used in virtualization systems for protection. <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/vps\/\"   title=\"of virtual machines\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"2196\">of virtual machines<\/a> from interference by the hypervisor or the host system administrator.\n<li class=\"l\"> Support for xperm rules has been added to the SELinux mandatory access control system, allowing SELinux policies to be tied to specific ioctl() calls or netlink messages.\n<li class=\"l\"> For signing kernel modules with a digital signature, the SHA512 algorithm has been employed by default instead of SHA1.\n<li class=\"l\"> Support for the ARM64 architecture has been enabled in the VirtualBox guest system drivers.\n<li class=\"l\"> In the hypervisor <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/vps\/abuzoustojchivye-vps\/\"   title=\"KVM\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"4439\">KVM<\/a> Work has continued on utilizing the Intel TDX (Trusted Domain Extensions) mechanism for encrypting guest system memory.\n<li class=\"l\"> Support for error recovery mode has been added in virtio_blk.                <\/ul>\n<li class=\"l\"> <b>Network subsystem<\/b>\n<ul>\n<li class=\"l\"> The RxRPC protocol implementation now allows the use of large UDP frames to increase throughput.\n<li class=\"l\"> Support for the RACK-TLP algorithm has been added to TCP for packet loss detection.\n<li class=\"l\"> A new sysctl parameter tcp_tw_reuse_delay has been added, applicable within the network namespace, allowing the system to specify the delay before it can reuse a network port number after closing a TCP socket.\n<li class=\"l\"> The option to select a Precision Time Protocol (PTP) provider for generating timestamps at PHY and MAC levels has been added.\n<li class=\"l\"> Support for the aggregation and fragmentation mechanism for encapsulated IP packets has been implemented for IPsec \u2014 IP-TFS\/AGGFRAG (IP Traffic Flow Security\/Aggregation and Fragmentation Mode for Encapsulating Security Payload).\n<li class=\"l\"> The network socket system has been updated to support the transmission of priority information (SO_PRIORITY) in the form of control messages (cmsg). For network sockets, the SO_RCVPRIORITY option has been added, which includes priority information in the recvmsg() function.                                <\/ul>\n<li class=\"l\"> <b>Hardware<\/b>\n<ul>\n<li class=\"l\"> The amdxdna driver for AMD CPU-integrated NPU (Neural Processing Unit) accelerators based on the XDNA architecture has been added to speed up machine learning-related operations. NPU based on the XDNA architecture is available in the 7040 and 8040 series of AMD Ryzen processors, AMD Alveo V70 accelerators, and AMD Versal SoCs.\n<li class=\"l\"> New GPU identifiers have been added to the i915 driver, an HDMI initialization failure handler has been implemented, and the reliability of GPU engine resets on Haswell and older systems has been improved.\n<li class=\"l\"> Work continues on the drm driver (Direct Rendering Manager) Xe for GPUs based on Intel Xe architecture, used in Intel Arc graphics cards and integrated graphics starting from Tiger Lake processors.\n<li class=\"l\"> The Nouveau driver has added the ability to transmit GSP-RM log buffers through debugfs.\n<li class=\"l\"> The AMDGPU driver has implemented support for the DRM panic mechanism, displaying a version of the 'blue screen of death' in case of failures. Preparations for supporting the upcoming Radeon RX 9000 graphics card series based on the RDNA4 architecture have continued. Support has been updated for DCN 3.5, GG 9.5, IH 4.4, PSP 13.x, SMU 13.x, VCN 5.x, JPEG 5.x, GC 12.x, DC FAMS, RAS, and ISP.\n<li class=\"l\"> Support for the Qualcomm SM6150 (QCS615) platform has been added to the drm msm driver (Qualcomm Adreno GPU).\n<li class=\"l\"> The panfrost drm driver has added support for the MediaTek MT8188 SoC with Mali-G57 GPU.\n<li class=\"l\"> The vc4 drm driver has added support for the Broadcom BCM2712 SoC (Raspberry Pi 5).\n<li class=\"l\"> Support for NVIDIA Grace Blackwell 200 chips has been added to the vfio nvgrace-gpu driver.\n<li class=\"l\"> The package includes a driver for Intel THC (Touch Host Controller), used for interaction with touchscreens and touchpads on certain laptops. Support for Wacom devices with a PCI interface has been added. Support for gaming controllers from QH Electronics has also been included.\n<li class=\"l\"> Support for ARM platforms, SoCs, and devices has been added: Qualcomm Snapdragon 8 Elite (SM8750), Qualcomm Snapdragon AR2 (SAR2130P), Qualcomm IQ6\/IQ8, Snapdragon 425 (MSM8917), Samsung Exynos 9810, Blaize BLZP1600, Microchip SAMA7D65, Renesas R-Car V4H ES3.0, Renesas RZ\/G3E. Support for the SpacemiT K1 SoC based on RISC-V architecture has also been added.\n<li class=\"l\"> In the ALSA sound subsystem for MIDI 2.0, the rawmidi and sequencer APIs have been expanded. The API for offloading compression operations to the sound card now includes support for ASRC (Asynchronous Sample Rate Conversion).\n<li class=\"l\">  Support for sound systems of Allwinner devices suinv F1C100s, Awinc AW88083, Realtek ALC5682I-VE, TAS2781, Focusrite Scarlett 4th Gen 16i16, 18i16, and 18i20 has been added. Support for SteelSeries Arctis 9 wireless headphones has also been added.      <\/ul>\n<\/ul>\n<p>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=62937\">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.14. \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 ntsync c \u043f\u0440\u0438\u043c\u0438\u0442\u0438\u0432\u0430\u043c\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 Windows NT, \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0431\u0430\u043b\u0430\u043d\u0441\u0438\u0440\u043e\u0432\u043a\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439 \u0447\u0442\u0435\u043d\u0438\u044f \u0432 Btrfs RAID1, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 reflink \u0432 XFS \u0432 \u0440\u0435\u0436\u0438\u043c\u0435 realtime, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u043d\u0435\u043a\u044d\u0448\u0438\u0440\u0443\u0435\u043c\u043e\u0433\u043e \u0431\u0443\u0444\u0435\u0440\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0432\u0432\u043e\u0434\u0430\/\u0432\u044b\u0432\u043e\u0434\u0430, dmem cgroup \u0434\u043b\u044f \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f \u043f\u0430\u043c\u044f\u0442\u0438 GPU, \u0437\u0430\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435 io_uring \u0432 FUSE, \u0434\u0435\u043b\u0435\u0433\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u043e\u0432 \u0432 NFS, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 [&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-122993","post","type-post","status-publish","format-standard","hentry","category-news"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - 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.14.\" \/>\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-14\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\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.14 | 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.14.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-6-14\" \/>\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-03-25T20:22:41+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-03-25T20:22:41+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 6.14 release | ProHoster","description":"After two months of development, Linus Torvalds has released the Linux kernel 6.14.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-6-14","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.14 | 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.14.","og:url":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-6-14","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-03-25T20:22:41+00:00","article:modified_time":"2025-03-25T20:22:41+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"122993","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-09 17:43:20","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2026-01-23 11:35:20","updated":"2026-02-09 17:43: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\/122993","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=122993"}],"version-history":[{"count":2,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/122993\/revisions"}],"predecessor-version":[{"id":164317,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/122993\/revisions\/164317"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=122993"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=122993"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=122993"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}