{"id":102190,"date":"2021-11-02T21:36:39","date_gmt":"2021-11-02T19:36:39","guid":{"rendered":"https:\/\/prohoster.info\/blog\/novosti-interneta\/reliz-yadra-linux-5-15"},"modified":"2021-11-02T21:36:39","modified_gmt":"2021-11-02T19:36:39","slug":"reliz-yadra-linux-5-15","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-15","title":{"rendered":"Release of Linux kernel 5.15","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>After two months of development, Linus Torvalds presented the release of Linux kernel 5.15. Among the most notable changes are: a new NTFS driver with write support, the ksmbd module implementing an SMB server, the DAMON subsystem for monitoring memory access, locking primitives for real-time mode, fs-verity support in Btrfs, and the process_mrelease system call for memory shortage response systems, as well as a remote attestation module, dm-ima.        <\/p>\n<p>The new version includes 13,499 corrections from 1,888 developers, with a patch size of 42 MB (the changes affected 10,895 files, adding 632,522 lines of code, and deleting 299,966 lines). About 45% of all changes in 5.15 relate to device drivers, approximately 14% pertain to updates of architecture-specific code, 14% are related to the networking stack, 6% deal with file systems, and 3% with internal kernel subsystems.      <\/p>\n<p>Key innovations:  <\/p>\n<ul>\n<li class=\"l\"> <b>Disk subsystem, input\/output, and file systems<\/b>\n<ul>\n<li class=\"l\"> The kernel now includes a new implementation of the NTFS file system, open-sourced by Paragon Software. The new driver can operate in write mode and supports all features of the current NTFS 3.1 version, including extended file attributes, access control lists (ACL), data compression mode, efficient handling of sparse files, and journaling for integrity recovery after failures.\n<li class=\"l\"> The Btrfs file system has implemented support for the fs-verity mechanism, used for transparent integrity and authenticity verification of individual files through associated cryptographic hashes or keys stored in the metadata area. Previously, fs-verity was only available for Ext4 and F2fs file systems.\n<p>Btrfs has also added support for mapping user IDs for mounted file systems (previously supported for FAT, ext4, and XFS file systems). This feature allows mapping files of a specific user on a mounted foreign partition to another user in the current system.   <\/p>\n<p>Among other changes in Btrfs: accelerated addition of keys to the directory index to enhance file creation performance; the ability to use raid0 with a single device and raid10 with two (for example, during reconfiguration of an array); the 'rescue=ibadroots' option to ignore incorrect extent trees; speed improvements for the 'send' operation; reduced lock contention during rename operations; the ability to use 4K sectors on systems with a 64K memory page size.        <\/p>\n<li class=\"l\"> In XFS, the ability to use file systems with dates after 2038 has been stabilized. A mechanism for deferred inode deactivation and support for deferred setting and removal of file attributes has been implemented. To eliminate problems, the ability to disable disk quotas for already mounted partitions has been removed (quotas can still be forcibly disabled, but the associated counting will continue, so full disabling requires remounting).\n<li class=\"l\"> In EXT4, work has been carried out to increase the write performance of delalloc buffers and the processing of orphan files that continue to exist because they remain open but are no longer attached to a directory. The processing of discard operations has been moved out of the jbd2 kthread stream to avoid locking issues with metadata operations.\n<li class=\"l\"> In F2FS, the 'discard_unit=block|segment|section' option has been added to link discard operations (marking freed blocks that no longer need to be physically stored) to alignment with a block, sector, segment, or section. Support for tracking changes in I\/O delay has also been added.\n<li class=\"l\"> In the EROFS (Extendable Read-Only File System), support for direct input\/output for files stored uncompressed, as well as support for fiemap, has been added.\n<li class=\"l\"> In OverlayFS, proper handling of the mount flags 'immutable', 'append-only', 'sync', and 'noatime' has been implemented.\n<li class=\"l\"> In NFS, the handling of situations where the NFS server stops responding to requests has been improved. The ability to mount from an already used but accessible address through another network address has been added. <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/server\/dts-los-angeles\/\"   title=\"server\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"3763\">server<\/a>, but accessible through another network address.\n<li class=\"l\"> Preparation for rewriting the FSCACHE subsystem has begun.\n<li class=\"l\"> Support for EFI partitions with non-standard GPT table placement has been added.\n<li class=\"l\"> The fanotify mechanism has introduced a new flag FAN_REPORT_PIDFD, which allows the pidfd to be included among the returned metadata. Pidfd helps handle situations with PID reuse for more accurate identification of processes accessing monitored files (pidfd is linked to a specific process and does not change, while PID may be reassigned to another process after the current process associated with this PID terminates).\n<li class=\"l\"> The move_mount() system call has been updated to allow adding mount points to existing shared groups, which addresses issues with saving and restoring process states in the CRIU toolkit when multiple mount namespaces are shared across isolated containers.\n<li class=\"l\"> Protection against hidden race conditions that could potentially lead to file corruption during cache reads while handling gaps in the file has been added.\n<li class=\"l\"> Support for mandatory file locks implemented via file-modifying system calls has been discontinued. Due to potential race conditions, these locks were deemed unreliable and deprecated many years ago.\n<li class=\"l\"> The LightNVM subsystem, which allowed direct access to SSDs bypassing the emulation layer, has been removed. LightNVM became obsolete after the introduction of NVMe standards that support zoned namespaces (ZNS).                      <\/ul>\n<li class=\"l\"> <b>Memory and system services<\/b>\n<ul>\n<li class=\"l\"> The DAMON (Data Access MONitor) subsystem has been implemented to track memory access activity associated with a selected user-space process. The subsystem allows analysis of which memory areas the process has accessed during its entire execution and which areas remained unused. Notable features of DAMON include low CPU overhead, minimal memory consumption, high accuracy, and predictable constant overhead that does not depend on size. The subsystem can be used by the kernel for memory management optimization as well as by user-space utilities to understand what the process is doing and optimize memory usage, such as freeing up unnecessary memory for the system.\n<li class=\"l\"> A system call process_mrelease has been implemented, allowing for a faster process of releasing memory of a process that is finishing execution. Under normal conditions, resource deallocation and process termination are not instant and can be delayed for various reasons, which hinders the operation of user-space systems for early response to memory shortages, such as oomd (provided in systemd) and lmkd (used in Android). With the process_mrelease call, such systems can more predictably initiate the return of memory from forcibly terminated processes.\n<li class=\"l\"> From the PREEMPT_RT kernel branch, which develops support for real-time operation, variants of primitives for organizing mutex locks, ww_mutex, rw_semaphore, spinlock, and rwlock have been transferred, based on the RT-Mutex subsystem. Changes have been made to the SLUB slab allocator to enhance its operation in PREEMPT_RT mode and reduce its impact on interruptions.\n<li class=\"l\"> Support for the task scheduler attribute SCHED_IDLE has been added to cgroup, allowing this designation to be applied to all processes in a specific cgroup at once. That is, these processes will only start when there are no other tasks in the system waiting for execution. Unlike setting the SCHED_IDLE attribute to each process individually, when binding SCHED_IDLE to a cgroup, the relative weight of tasks within the group is taken into account when selecting a task for execution.\n<li class=\"l\"> The memory consumption tracking mechanism in cgroup has been expanded to monitor additional kernel data structures, including those created for polling, signal handling, and namespaces.\n<li class=\"l\"> Support for asymmetric task binding scheduling to processor cores has been added on architectures where some CPUs allow the execution of 32-bit tasks while others operate only in 64-bit mode (for example, ARM). The new mode allows the scheduling of 32-bit tasks to consider only CPUs that support 32-bit tasks.\n<li class=\"l\"> The interface of asynchronous I\/O io_uring now supports opening files directly in the fixed-file index table without using a file descriptor, which significantly speeds up certain types of operations, but contradicts the traditional Unix process of using file descriptors for opening files.\n<p>In io_uring for the BIO (Block I\/O Layer) subsystem, a new recycling mechanism ('BIO recycling') has been developed that reduces overhead in managing internal memory and increases the number of I\/O operations processed per second by about 10%. Support for the system calls mkdirat(), symlinkat(), and linkat() has also been added to io_uring.    <\/p>\n<li class=\"l\"> For BPF programs, the ability to request and handle timer events has been implemented. An iterator for UNIX sockets has been added, as well as the ability to get and set socket options for setsockopt. Support for typed data has been added to the BTF dumper.\n<li class=\"l\"> On NUMA systems with different types of memory that vary in performance, a mechanism has been implemented to transfer evicted memory pages from dynamic RAM (DRAM) to slower persistent memory instead of deleting those pages in situations where free space is exhausted. Tests have shown that this tactic generally improves performance on such systems. For NUMA, the ability to allocate memory pages for a process from a chosen set of NUMA nodes has also been implemented.\n<li class=\"l\"> For the ARC architecture, support for three- and four-level page tables has been implemented, which will allow future support for 64-bit ARC processors.\n<li class=\"l\"> For the s390 architecture, the KFENCE mechanism for detecting memory errors has been enabled, and support for the KCSAN race condition detector has been added.\n<li class=\"l\"> Support for indexing the list of messages output via printk() has been added, allowing for the extraction of all such messages at once and monitoring changes in user space.\n<li class=\"l\"> Support for the VM_DENYWRITE option in mmap() has been discontinued, and the kernel code has been cleared of the MAP_DENYWRITE mode, reducing the number of situations that lead to write failures with error ETXTBSY.\n<li class=\"l\"> A new type of checks, 'Event probes', has been added to the tracing subsystem, which can be attached to existing tracing events, allowing for the definition of custom output formats.\n<li class=\"l\"> When building the kernel with the Clang compiler, the integrated assembler from the LLVM project is now used by default.\n<li class=\"l\"> As part of a project to eliminate kernel code that triggers compiler warnings, an experiment was conducted to enable the '-Werror' mode by default, where compiler warnings are treated as errors. During the preparation for the 5.15 release, Linus began accepting only changes that did not produce warnings when compiling the kernel and activated compilation with '-Werror', but later agreed that it was premature to do so and postponed enabling '-Werror' by default. The management of the '-Werror' flag during compilation is handled by the WERROR parameter, which is set by default to COMPILE_TEST, meaning it is only enabled for test builds.                    <\/ul>\n<li class=\"l\"> <b>Virtualization and Security<\/b>\n<ul>\n<li class=\"l\"> A new handler, dm-ima, has been added to the Device Mapper (DM) with the implementation of a remote attestation mechanism based on the IMA (Integrity Measurement Architecture) subsystem, allowing an external service to verify the state of kernel subsystems to ensure their authenticity. In practice, dm-ima enables the creation of storage linked to external cloud systems using the Device Mapper, where the validity of the executed DM target configuration is checked using IMA.\n<li class=\"l\"> A new option, PR_SPEC_L1D_FLUSH, has been implemented in prctl(). When enabled, the kernel flushes the contents of the level 1 data cache (L1D) each time context switching occurs. This mode allows for additional protection against side-channel attacks that attempt to determine data left in the cache due to vulnerabilities caused by the speculative execution of instructions in the CPU, selectively for the most important processes. The cost of enabling PR_SPEC_L1D_FLUSH (which is disabled by default) is a significant decrease in performance.\n<li class=\"l\"> The ability to compile the kernel with the GCC flag '-fzero-call-used-regs=used-gpr' has been implemented, ensuring that all registers are zeroed before returning control from a function. This option helps protect against information leakage from functions and reduces the number of blocks suitable for constructing ROP gadgets (Return-Oriented Programming) in exploits by 20%.\n<li class=\"l\"> The ability to compile kernels for the ARM64 architecture has been implemented in the form of clients for the Hyper-V hypervisor.\n<li class=\"l\"> A new framework for driver development called 'VDUSE' has been proposed, allowing for the implementation of virtual block devices in user space and using Virtio as a transport for access from guest systems.\n<li class=\"l\"> A Virtio driver for the I2C bus has been added, enabling the emulation of I2C controllers in paravirtualization mode with the use of separate backends.\n<li class=\"l\"> A gpio-virtio Virtio driver has been added, allowing guest systems to access GPIO lines provided by the host system.\n<li class=\"l\"> The capability to restrict access to memory pages for device drivers with DMA support has been added on systems without an I\/O MMU (memory management unit).\n<li class=\"l\"> The KVM hypervisor has implemented the ability to output statistics in the form of linear and logarithmic histograms.          <\/ul>\n<li class=\"l\"> <b>Network subsystem<\/b>\n<ul>\n<li class=\"l\"> A module named ksmbd has been added to the kernel, implementing a file server that uses the SMB3 protocol. This module complements the previously available SMB client implementation in the kernel and, unlike the user-space SMB server, is more efficient in terms of performance, memory consumption, and integration with the kernel's advanced capabilities. Ksmbd is presented as a high-performance extension to Samba, ready for use in embedded devices, and can be integrated with Samba tools and libraries if needed. Notably, ksmbd features improved support for distributed file caching technology (SMB leases) on local systems, significantly reducing traffic. There are plans to add support for RDMA ('smbdirect') and protocol extensions related to enhancing encryption reliability and digital signature verification.\n<li class=\"l\"> Support for NTLM and less secure authentication algorithms based on the DES algorithm used in SMB1 has been discontinued in the CIFS client.\n<li class=\"l\"> Multicast support has been implemented in the VLAN bridge implementation.\n<li class=\"l\"> The bonding driver, used for aggregating network interfaces, has added support for the XDP (eXpress Data Path) subsystem, which allows manipulation of network packets before they are processed by the Linux kernel network stack.\n<li class=\"l\"> The mac80211 wireless stack now supports 6GHz STA (Special Temporary Authorization) in LPI, SP, and VLP modes, as well as the ability to set individual TWT (Target Wake Time) in access point mode.\n<li class=\"l\"> Support for the MCTP (Management Component Transport Protocol) has been added, which is used for communication between management controllers and associated devices (host processors, peripherals, etc.).\n<li class=\"l\"> Integration of MPTCP (MultiPath TCP) into the kernel continues, which is an extension of the TCP protocol for establishing TCP connections with packet delivery over multiple routes through different network interfaces bound to different IP addresses. The new release adds support for fullmesh mode addresses.\n<li class=\"l\"> Network stream handlers encapsulated in the SRv6 (Segment Routing IPv6) protocol have been added to netfilter.\n<li class=\"l\"> Sockmap support for streaming Unix sockets has been added.              <\/ul>\n<li class=\"l\"> <b>Hardware<\/b>\n<ul>\n<li class=\"l\"> The amdgpu driver now supports the Cyan Skillfish APU (equipped with Navi 1x GPU). Support for video codecs has been implemented for the Yellow Carp APU. Improved support for the Aldebaran GPU. New identifiers for cards based on the Navi 24 GPU 'Beige Goby' and RDNA2 have been added. An enhanced implementation of virtual screens (VKMS) is proposed. Support has been realized for tracking the temperature of AMD Zen 3 chips.\n<li class=\"l\"> The amdkfd driver (for discrete GPUs such as Polaris) has implemented a shared virtual memory (SVM) manager based on the HMM (Heterogeneous Memory Management) subsystem, allowing the use of devices with their own memory management units (MMU) that can access main memory. Using HMM, a shared address space between GPU and CPU can be organized, enabling the GPU to access the main memory of a process.\n<li class=\"l\"> The i915 driver for Intel graphics cards has expanded the use of the TTM video memory management system and included the ability to manage power consumption based on the GuC (Graphics micro Controller). Preparations have begun for the implementation of support for the Intel ARC Alchemist graphics card and Intel Xe-HP GPU.\n<li class=\"l\"> The nouveau driver implements control of eDP panel backlighting using DPCD (DisplayPort Configuration Data).\n<li class=\"l\"> The msm driver has added support for the Adreno 7c Gen 3 and Adreno 680 GPUs.\n<li class=\"l\"> An IOMMU driver has been implemented for the Apple M1 chip.\n<li class=\"l\"> A sound driver has been added for systems based on AMD Van Gogh APU.\n<li class=\"l\"> The staging branch has added the Realtek R8188EU driver, which has replaced the old rtl8188eu driver for Realtek RTL8188EU 802.11 b\/g\/n wireless chips.\n<li class=\"l\"> The ocp_pt driver has been accepted for the PCIe card developed by Meta (Facebook), implementing miniature atomic clocks and GNSS receivers, which can be used for organizing isolated precision time synchronization. <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/server\/\"   title=\"servers\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"1616\">servers<\/a> precise time synchronization.\n<li class=\"l\"> Support has been added for smartphones Sony Xperia 10II (Snapdragon 665), Xiaomi Redmi 2 (Snapdragon MSM8916), Samsung Galaxy S3 (Snapdragon MSM8226), and Samsung Gavini\/Codina\/Kyle.\n<li class=\"l\"> Support has been added for ARM SoCs and NVIDIA Jetson TX2 NX Developer Kit, Sancloud BBE Lite, PicoITX, DRC02, SolidRun SolidSense, SKOV i.MX6, Nitrogen8, Traverse Ten64, GW7902, Microchip SAMA7, Qualcomm Snapdragon SDM636\/SM8150, Renesas R-Car H3e-2G\/M3e-2G, Marvell CN913x, ASpeed AST2600 (server boards Facebook Cloudripper, Elbert, and Fuji), 4KOpen STiH418-b2264.\n<li class=\"l\"> Support has been added for LCD panels Gopher 2b, EDT ETM0350G0DH6\/ETMV570G2DHU, LOGIC Technologies LTTD800480070-L6WH-RT, Multi-Innotechnology MI1010AIT-1CP1, Innolux EJ030NA 3.0, ilitek ili9341, E Ink VB3300-KCA, Samsung ATNA33XC20, Samsung DB7430, and WideChips WS2401.\n<li class=\"l\"> The LiteETH driver has been added with support for Ethernet controllers used in LiteX software SoCs (for FPGAs).\n<li class=\"l\"> The usb-audio driver has added a lowlatency option to manage operations in reduced delay mode. A quirk_flags option has also been added to pass device-specific settings.      <\/ul>\n<\/ul>\n<p>At the same time, the Latin American Free Software Foundation has created a fully free version of kernel 5.15 \u2014 Linux-libre 5.15-gnu, cleaned of firmware and driver elements that contain non-free components or code portions limited by the manufacturer. The new release includes logging a message upon completion of the cleaning process. Issues with package formation using mkspec have been resolved, and support for snap packages has been improved. Some warnings emitted during the handling of the firmware.h header file have been eliminated. Certain types of warnings ('format-extra-args', comments, unused functions and variables) are now allowed during compilation in '-Werror' mode. Cleanup for the gehc-achc driver has been added. The blob cleanup code in the adreno, btusb, btintel, brcmfmac, and aarch64 qcom drivers and subsystems has been updated. Cleanup of the prism54 drivers (removed) and rtl8188eu (replaced with r8188eu) has been discontinued.<br \/>\n<br \/>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=56079\">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.15. \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: \u043d\u043e\u0432\u044b\u0439 \u0434\u0440\u0430\u0439\u0432\u0435\u0440 NTFS \u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438, \u043c\u043e\u0434\u0443\u043b\u044c ksmbd \u0441 \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0435\u0439 SMB-\u0441\u0435\u0440\u0432\u0435\u0440\u0430, \u043f\u043e\u0434\u0441\u0438\u0441\u0442\u0435\u043c\u0430 DAMON \u0434\u043b\u044f \u043c\u043e\u043d\u0438\u0442\u043e\u0440\u0438\u043d\u0433\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043f\u0430\u043c\u044f\u0442\u0438, \u043f\u0440\u0438\u043c\u0438\u0442\u0438\u0432\u044b \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043e\u043a \u0434\u043b\u044f \u0440\u0435\u0436\u0438\u043c\u0430 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 fs-verity \u0432 Btrfs, \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0439 \u0432\u044b\u0437\u043e\u0432 process_mrelease \u0434\u043b\u044f \u0441\u0438\u0441\u0442\u0435\u043c \u0440\u0435\u0430\u0433\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043d\u0430 \u043d\u0435\u0445\u0432\u0430\u0442\u043a\u0443 \u043f\u0430\u043c\u044f\u0442\u0438, \u043c\u043e\u0434\u0443\u043b\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0439 \u0430\u0442\u0442\u0435\u0441\u0442\u0430\u0446\u0438\u0438 [&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-102190","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 5.15.\" \/>\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-15\" \/>\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.15 | 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 5.15.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-15\" \/>\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=\"2021-11-02T19:36:39+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2021-11-02T19:36:39+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 Linux Kernel 5.15 | ProHoster","description":"After two months of development, Linus Torvalds has presented the release of Linux kernel 5.15.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-15","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.15 | 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 5.15.","og:url":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-15","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":"2021-11-02T19:36:39+00:00","article:modified_time":"2021-11-02T19:36:39+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"102190","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":null,"breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-11-02 19:38:03","updated":"2026-02-22 15:30:33","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\/102190","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=102190"}],"version-history":[{"count":2,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/102190\/revisions"}],"predecessor-version":[{"id":162291,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/102190\/revisions\/162291"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=102190"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=102190"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=102190"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}