{"id":99149,"date":"2021-02-16T16:22:46","date_gmt":"2021-02-16T14:22:46","guid":{"rendered":"https:\/\/prohoster.info\/blog\/novosti-interneta\/reliz-yadra-linux-5-11"},"modified":"2021-02-16T16:22:46","modified_gmt":"2021-02-16T14:22:46","slug":"reliz-yadra-linux-5-11","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-11","title":{"rendered":"Linux kernel version 5.11","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>After two months of development, Linus Torvalds released the Linux kernel 5.11. Among the most notable changes are: support for Intel SGX enclaves, a new system call interception mechanism, an auxiliary virtual bus, a prohibition on building modules without MODULE_LICENSE(), a quick filtering mode for system calls in seccomp, the discontinuation of support for the ia64 architecture, the relocation of WiMAX technology to the 'staging' branch, and the capability to encapsulate SCTP in UDP.      <\/p>\n<p>The new version includes 15,480 fixes from 1,991 developers, with the patch size being 72 MB (the changes affected 12,090 files, added 868,025 lines of code, and removed 261,456 lines). Approximately 46% of the contributions in 5.11 are related to device drivers, around 16% pertain to updates in architecture-specific code, 13% involve the networking stack, 3% address file systems, and 4% concern 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\"> Btrfs has introduced several mount options for use when recovering data from a damaged file system: 'rescue=ignorebadroots' for mounting despite damage to certain root trees (extent, uuid, data reloc, device, csum, free space), 'rescue=ignoredatacsums' to disable checksum verification for data, and 'rescue=all' to simultaneously enable the 'ignorebadroots', 'ignoredatacsums', and 'nologreplay' modes. Support for the 'inode_cache' mount option, which had previously been marked as deprecated, has been discontinued. Code preparation has been conducted to implement support for blocks with metadata and data smaller than a page (PAGE_SIZE), as well as for zoned space allocation mode. Unbuffered (Direct IO) requests have been transitioned to the iomap infrastructure. The performance of several operations has been optimized, with speed increases in some cases reaching several tens of percent.\n<li class=\"l\"> In XFS, the 'needsrepair' flag has been implemented to signal the need for recovery. When this flag is set, the file system cannot be mounted until the flag is cleared by the xfs_repair utility.\n<li class=\"l\"> In Ext4, only bug fixes and optimizations have been proposed, along with code cleaning.\n<li class=\"l\"> The re-export of filesystems mounted over NFS has been allowed (i.e., a partition mounted via NFS can now be exported over NFS and used as an intermediate cache).\n<li class=\"l\"> The system call close_range() has been enhanced with the CLOSE_RANGE_CLOEXEC option, allowing a process to close an entire range of open file descriptors in close-on-exec mode.\n<li class=\"l\"> New ioctl() calls have been added to the F2FS file system, allowing user space to manage which files are stored in compressed form. A mount option 'compress_mode=' has been added to choose the location of the compression control handler on the kernel side or in user space.\n<li class=\"l\"> Overlayfs can now be mounted by unprivileged processes using a separate user namespace. A complete audit of the code has been conducted to verify compliance with the security model. Additionally, Overlayfs has gained the capability to run using copies of filesystem images by optionally disabling UUID checks.\n<li class=\"l\"> The Ceph filesystem has been updated to support the msgr2.1 protocol, which enables the use of the AES-GCM algorithm for encrypted data transmission.\n<li class=\"l\"> The dm-multipath module has implemented the ability to account for CPU affinity when selecting the route for input\/output requests.                      <\/ul>\n<li class=\"l\"> <b>Memory and system services<\/b>\n<ul>\n<li class=\"l\"> A new mechanism for intercepting system calls has been introduced, based on prctl(), allowing user space to generate exceptions when accessing certain system calls and emulate their execution. This functionality is in demand by Wine and Proton for emulating Windows system calls, which is necessary for compatibility with games and applications that directly invoke system calls bypassing the Windows API (e.g., to prevent unauthorized usage).\n<li class=\"l\"> The userfaultfd() system call, designed to handle page faults (access to unallocated memory pages) in user space, now features the ability to disable exception handling that occurs at the kernel level to complicate the exploitation of certain vulnerabilities.\n<li class=\"l\"> The BPF subsystem has added support for task-local storage, which binds data to a specific BPF handler.\n<li class=\"l\"> Memory consumption tracking for BPF programs has been completely revamped \u2014 instead of using the memlock rlimit for managing memory usage in BPF objects, a cgroup controller is introduced.\n<li class=\"l\"> The BTF (BPF Type Format) mechanism, which provides information for type checking in BPF pseudocode, has implemented support for kernel modules.\n<li class=\"l\"> Support for the system calls shutdown(), renameat2(), and unlinkat() has been added to the io_uring asynchronous I\/O interface. The io_uring_enter() call now allows specifying a timeout (support for the timeout argument can be checked using the IORING_FEAT_EXT_ARG flag).\n<li class=\"l\"> The ia64 architecture used in Intel Itanium processors has been categorized as orphaned, meaning testing has ceased. Hewlett Packard Enterprise has stopped accepting orders for new Itanium hardware, and Intel did this last year.\n<li class=\"l\"> Support for systems based on the MicroBlaze architecture, which are not equipped with a memory management unit (MMU), has been discontinued. Such systems have long been out of everyday use.\n<li class=\"l\"> Support for code coverage testing has been added for the MIPS architecture using the gcov utility.\n<li class=\"l\"> Support for an auxiliary bus has been added to interact with multifunction devices that combine functionalities requiring different drivers (for example, network cards supporting Ethernet and RDMA). The bus can be used to assign a primary and secondary driver for the device in situations where the MFD (Multi-Function Devices) subsystem is problematic to use.\n<li class=\"l\"> Support for the CMA (Contiguous Memory Allocator) memory distribution system has been added for the RISC-V architecture, optimized for allocating large contiguous memory areas using memory page migration techniques. Access restrictions to \/dev\/mem and tracking of interrupt handling time have also been implemented for RISC-V.\n<li class=\"l\"> Support for the KASan (Kernel Address Sanitizer) debugging tool, which detects memory errors, has been added for 32-bit ARM systems. For 64-bit ARM, the KASan implementation has transitioned to using MTE (MemTag) tags.\n<li class=\"l\"> The epoll_pwait2() system call has been added, allowing the use of timeouts with nanosecond precision (the epoll_wait call manipulates milliseconds).\n<li class=\"l\"> The build system now outputs an error when attempting to build core modules that do not define a license for the code using the MODULE_LICENSE() macro. Errors during the build will also be triggered by the use of the EXPORT_SYMBOL() macro for static functions.\n<li class=\"l\"> Added support for mapping GEM objects from memory used for input\/output, which speeds up framebuffer operations on certain architectures.\n<li class=\"l\"> Support for Qt4 has been removed in Kconfig (support for Qt5, GTK, and Ncurses has been retained).                  <\/ul>\n<li class=\"l\"> <b>Virtualization and Security<\/b>\n<ul>\n<li class=\"l\"> The seccomp() system call has added support for a fast response mode, allowing for very quick determination of whether a particular system call is allowed or blocked based on an attached privilege table (constant-action bitmap) that does not require launching a BPF handler.\n<li class=\"l\"> Core components for creating and managing enclaves based on Intel SGX (Software Guard eXtensions) technology have been integrated, allowing applications to run code in isolated encrypted memory areas, access to which is restricted for the rest of the system.\n<li class=\"l\"> As part of the initiative to limit user space access to MSR (model-specific register) registers, writing to the MSR_IA32_ENERGY_PERF_BIAS register is prohibited, which allows changing the processor's energy efficiency mode ('normal', 'performance', 'powersave').\n<li class=\"l\"> The ability to disable high-priority task migration between CPUs has been ported from the kernel-rt branch for real-time systems.\n<li class=\"l\"> For ARM64 systems, the ability to apply MTE (MemTag, Memory Tagging Extension) tags for memory addresses of signal handlers has been added. Using MTE is enabled by specifying the SA_EXPOSE_TAGBITS option in sigaction() and allows for pointer usage correctness checks to block exploitation of vulnerabilities caused by accessing already freed memory blocks, buffer overflows, pre-initialization accesses, and off-context usage.\n<li class=\"l\"> The parameter 'DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING' has been added, allowing the dm-verity subsystem to verify the hash signatures of certificates stored in the secondary keyring. In practice, this setting allows verification of not only the certificates built into the kernel but also those loaded at runtime, enabling updates to certificates without updating the entire kernel.\n<li class=\"l\"> User-mode Linux has added support for suspend-to-idle mode, which allows freezing the environment and using the SIGUSR1 signal to wake up from sleep mode.\n<li class=\"l\"> The virtio-mem mechanism, which enables hot-plugging and unplugging memory to virtual machines, has added support for Big Block Mode (BBM), allowing memory to be transferred or reclaimed in blocks larger than the kernel's block size, necessary for optimizing VFIO in QEMU.\n<li class=\"l\"> The kernel-level implementation of TLS has been enhanced with support for the CHACHA20-POLY1305 cipher.      <\/ul>\n<li class=\"l\"> <b>Network subsystem<\/b>\n<ul>\n<li class=\"l\"> For 802.1Q (VLAN), a Connectivity Fault Management (CFM) mechanism has been implemented, allowing for the detection, verification, and isolation of failures in networks with Virtual Bridged Networks. For instance, CFM can be used to localize problems in networks spanning multiple independent organizations, whose employees only have access to their own equipment.\n<li class=\"l\"> Support has been added for encapsulating SCTP protocol packets within UDP packets (RFC 6951), enabling the use of SCTP in networks with older address translators that do not directly support SCTP, as well as implementing SCTP on systems that do not provide direct access to the IP layer.\n<li class=\"l\"> The implementation of WiMAX technology has been moved to staging and is slated for removal in the future if no users requiring WiMAX are found. WiMAX is no longer used in public networks, and the only driver that can be used for WiMAX in the kernel remains the outdated Intel 2400m driver. Support for WiMAX in the NetworkManager network configurator was discontinued in 2015. Currently, WiMAX has been nearly entirely replaced by technologies such as LTE, HSPA+, and Wi-Fi 802.11n.\n<li class=\"l\"> Efforts have been made to optimize the performance of incoming TCP traffic processing in zerocopy mode, i.e., without additional copying to new buffers. For medium-sized traffic, covering tens or hundreds of kilobytes of data, using zerocopy instead of recvmsg() is significantly more efficient. For example, the implemented changes have achieved a 60-70% improvement in processing efficiency for RPC-style traffic with messages of 32 KB when using zerocopy.\n<li class=\"l\"> New ioctl() calls have been added to create network bridges spanning multiple PPP channels. The proposed feature allows frames to move from one channel to another, for example, from PPPoE to a PPPoL2TP session.\n<li class=\"l\"> Integration with the MPTCP (MultiPath TCP) kernel continues, extending the TCP protocol to facilitate TCP connection work with packet delivery simultaneously over multiple routes through different network interfaces assigned to different IP addresses. The new release implements support for the ADD_ADDR option to announce available <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/lir\/ipv4\/\"   title=\"(the key to connect to is specified, and iroh finds the associated host and establishes an encrypted connection using the QUIC protocol). Direct P2P connections are established whenever possible, but if not, it falls back to using relays, which are also employed for host discovery by keys. You can run your own relay or connect to public relays supported by the community.\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"829\">(the key to connect to is specified, and iroh finds the associated host and establishes an encrypted connection using the QUIC protocol). Direct P2P connections are established whenever possible, but if not, it falls back to using relays, which are also employed for host discovery by keys. You can run your own relay or connect to public relays supported by the community.<\/a> connections when adding new streams to an existing MPTCP connection.\n<li class=\"l\"> The ability to configure actions when exceeding the budget for connection polling (busy-polling) has been added. The previously available SO_BUSY_POLL mode implied switching to softirq when the budget was exhausted. For applications that need to continue using polling, a new option SO_PREFER_BUSY_POLL has been proposed.\n<li class=\"l\"> Support for SRv6 End.DT4 and End.DT6 modes has been implemented in IPv6, used for creating multi-user IPv4 L3 <a class=\"wpil_keyword_link\" href=\"https:\/\/prohoster.info\/en\/vpn\/\"   title=\"VPN\" data-wpil-keyword-link=\"linked\"  data-wpil-monitor-id=\"155\">VPN<\/a> and VRF (Virtual Routing and Forwarding) devices.\n<li class=\"l\"> In Netfilter, the implementation of set expressions has been unified, allowing multiple expressions to be specified for each element of set lists.\n<li class=\"l\"> In the wireless 802.11 stack, APIs have been added to configure SAR power constraint settings, as well as AE PWE and HE MCS parameters. Support for the 6GHz range (Ultra High Band) has been added to the Intel iwlwifi driver. The Qualcomm Ath11k driver has added support for fast connection setup technology FILS (Fast Initial Link Setup, standardized as IEEE 802.11ai), which eliminates delays during roaming while migrating from one access point to another.   <\/ul>\n<li class=\"l\"> <b>Hardware<\/b>\n<ul>\n<li class=\"l\"> The amdgpu driver has implemented support for AMD APU 'Green Sardine' (Ryzen 5000) and GPU 'Dimgrey Cavefish' (Navi 2), as well as initial support for AMD Van Gogh APU with Zen 2 core and RDNA 2 (Navi 2) GPU. Support for new identifiers for Renoir APU (based on Zen 2 CPU and Vega GPU) has also been added.\n<li class=\"l\"> The i915 driver for Intel graphics cards has implemented support for IS technology (Integer Scaling), including a filter for scaling that takes into account the state of neighboring pixels (Nearest-neighbor interpolation) to determine the color of missing pixels. Support for discrete Intel DG1 graphics cards has been extended. Support for the 'Big Joiner' technology has been implemented, available starting from Ice Lake \/ Gen11 chips, allowing the use of a single transcoder to handle two streams, for instance, to output to an 8K screen via a single DisplayPort. An asynchronous switch between two buffers in video memory (async flip) has been added.\n<li class=\"l\"> The nouveau driver has added initial support for NVIDIA GPUs based on the 'Ampere' microarchitecture (GA100, GeForce RTX 30xx), currently limited to features for managing display modes.\n<li class=\"l\"> Support for the 3WIRE protocol used in LCD panels has been added. Support has been added for novatek nt36672a, TDO tl070wsh30, Innolux N125HCE-GN1, and ABT Y030XX067A 3.0 panels. Notably, support for the OnePlus 6 and 6T smartphone panels has been added, allowing for booting on devices with an unmodified kernel.\n<li class=\"l\"> Support for the first discrete USB4 host controller Intel Maple Ridge has been added.\n<li class=\"l\"> Support for audio codecs Allwinner H6 I2S, Analog Devices ADAU1372, Intel Alderlake-S, GMediatek MT8192, NXP i.MX HDMI and XCVR, Realtek RT715, and Qualcomm SM8250 has been added.\n<li class=\"l\"> Support has been added for ARM platforms, devices, and systems: Galaxy Note 10.1, Microsoft Lumia 950 XL, NanoPi R1, FriendlyArm ZeroPi, Elimo Initium SBC, Broadcom BCM4908, Mediatek MT8192\/MT6779\/MT8167, MStar Infinity2M, Nuvoton NPCM730, Marvell Armada 382, Mikrotik based on Marvell Prestera 98DX3236, servers with Nuvoton NPCM750 BMC, Kontron i.MX8M Mini, Espressobin Ultra, 'Trogdor' Chromebook, Kobol Helios64, Engicam PX30.Core.\n<li class=\"l\"> Built-in support for the Ouya gaming console based on NVIDIA Tegra 3 has been added.                        <\/ul>\n<\/ul>\n<p>At the same time, the Latin American Free Software Foundation has formed a fully free kernel variant 5.11 \u2014 Linux-libre 5.11-gnu, cleaned of firmware and driver elements that contain non-free components or sections of code restricted by the manufacturer. In the new release, driver clean-up has been conducted for qat_4xxx (crypto), lt9611uxcm (dsi\/hdmi bridge), ccs\/smia++ (sensor), ath11k_pci, nxp audio transceiver, and mhi pci controller. The code for cleaning blobs in drivers and subsystems amdgpu, btqca, btrtl, btusb, i915 csr has been updated. New blobs in m3 rproc, idt82p33 ptp clock, and qualcomm arm64 have been disabled.<br \/>\n<br \/>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/www.opennet.ru\/opennews\/art.shtml?num=54581\">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.11. \u0421\u0440\u0435\u0434\u0438 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0437\u0430\u043c\u0435\u0442\u043d\u044b\u0445 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439: \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0430\u043d\u043a\u043b\u0430\u0432\u043e\u0432 Intel SGX, \u043d\u043e\u0432\u044b\u0439 \u043c\u0435\u0445\u0430\u043d\u0438\u0437\u043c \u043f\u0435\u0440\u0435\u0445\u0432\u0430\u0442\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0445 \u0432\u044b\u0437\u043e\u0432\u043e\u0432, \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u0430\u044f \u0448\u0438\u043d\u0430 auxiliary, \u0437\u0430\u043f\u0440\u0435\u0442 \u0441\u0431\u043e\u0440\u043a\u0438 \u043c\u043e\u0434\u0443\u043b\u0435\u0439 \u0431\u0435\u0437 MODULE_LICENSE(), \u0440\u0435\u0436\u0438\u043c \u0431\u044b\u0441\u0442\u0440\u043e\u0439 \u0444\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u0438 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0445 \u0432\u044b\u0437\u043e\u0432\u043e\u0432 \u0432 seccomp, \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u0441\u043e\u043f\u0440\u043e\u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u044b ia64, \u043f\u0435\u0440\u0435\u043d\u043e\u0441 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 WiMAX \u0432 \u0432\u0435\u0442\u043a\u0443 &#171;staging&#187;, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0438\u043d\u043a\u0430\u043f\u0441\u0443\u043b\u044f\u0446\u0438\u0438 SCTP \u0432 UDP. \u0412 [&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-99149","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.11.\" \/>\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-11\" \/>\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.11 | 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.11.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-11\" \/>\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-02-16T14:22:46+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2021-02-16T14:22:46+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47Linux Kernel 5.11 Release | ProHoster","description":"After two months of development, Linus Torvalds has released Linux kernel 5.11.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-11","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.11 | 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.11.","og:url":"https:\/\/prohoster.info\/en\/blog\/news\/reliz-yadra-linux-5-11","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-02-16T14:22:46+00:00","article:modified_time":"2021-02-16T14:22:46+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"99149","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-02-28 09:54:35","updated":"2026-02-08 20:40:14","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\/99149","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=99149"}],"version-history":[{"count":2,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/99149\/revisions"}],"predecessor-version":[{"id":158020,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/99149\/revisions\/158020"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=99149"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=99149"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=99149"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}