#pragma section-numbers on #pragma keywords Linux, kernel, operating system, changes, changelog, file system, Linus Torvalds, open source, device drivers #pragma description List of changes and new features merged in the Linux kernel during the 4.20 development cycle Linux 4.20 [[https://lkml.org/lkml/2018/12/23/187|was released]] on Sun, 23 Dec 2018. Summary: This release includes support for a new way to measure the system load; it adds support for future AMD Radeon Picasso and Raven2 and enables non-experimental support for Radeon Vega20; it adds support for the C-SKY CPU architecture and the x86 Hygon Dhyana CPUs; a TLB microoptimization brings a small performance win in some workloads; TCP has switched to a "Early Departure Time" model; a mechanism to turn memfd regions into dma-buf allows qemu to improve virtualized graphics performance; it also includes the latest round of fixes for CPU security bugs; and it also adds many new drivers and other improvements. <> = Prominent features = == Pressure stall information for better overview of system load == When systems are overcommitted and resources become contended, it's hard to tell exactly the impact this has on workload productivity, or how close the system is to lockups and OOM kills. In particular, when machines work multiple jobs concurrently, the impact of overcommit in terms of latency and throughput on the individual job can be enormous. In order to maximize hardware utilization without sacrificing individual job health or risk complete machine lockups, this release adds pressure stall information, a way to quantify resource pressure in the system. Under {{{/proc/pressure/}}} (and also inside each cgroup), several files expose the percentage of time the system is stalled on CPU, memory, or IO, respectively. These percentages of walltime can be thought of as pressure percentages, and they give a general sense of system health and productivity loss incurred by resource overcommit. They can also indicate when the system is approaching lockup scenarios and OOMs. Documentation: [[https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/Documentation/accounting/psi.txt?id=eb414681d5a07d28d2ff90dc05f69ec6b232ebd2|Documentation/accounting/psi.txt]] Recommended LWN article: [[https://lwn.net/Articles/759781/|Tracking pressure-stall information]] == AMD Radeon Picasso + Raven2 support, and Vega20 enablement == This release adds support for Raven2 APU and Picasso APUs. Also, support for Vega20 is no longer considered experimental. == More efficient virtualized graphics == This release includes udmabuf, a device that can turn memfd regions into dma-buf. It allows qemu to create dmabufs for the vga framebuffer or virtio-gpu resources. Then they can be passed around to display those guest things on the host. To spice client for classic full framebuffer display, and hopefully some day to wayland server for seamless guest window display. == New chinese CPUs: C-SKY architecture and Hygon Dhyana x86 CPUs == This release adds support for new architecture: [[www.c-sky.com|C-SKY architecture]], a 32 bit chinese CPU ISA There is also support for Hygon Dhyana Family 18h, a new x86 processor coming from the [[https://en.wikipedia.org/wiki/AMD%E2%80%93Chinese_joint_venture|AMD–Chinese joint venture]] == TCP: switch to Early Departure Time model == Internet grew following a AFAP ("As Fast As Possible") idea. Due to the constraints of modern hardware, this model is not optimal any more. This release switches the TCP stack to Early Departure Time model See: * [[https://www.netdevconf.org/0x12/session.html?evolving-from-afap-teaching-nics-about-time|Evolving from AFAP: Teaching NICs about time]] * [[https://www.files.netdevconf.org/d/46def75c2ef345809bbe/files/?p=/Evolving%20from%20AFAP%20%E2%80%93%20Teaching%20NICs%20about%20time.pdf|Evolving from AFAP: Teaching NICs about time]] * [[https://jvns.ca/blog/2018/07/12/netdev-day-2--moving-away-from--as-fast-as-possible/|netdev day 2: moving away from "as fast as possible" in networking code]] == Make lazy TLB even lazier == As TLB flushes are extremely expensive, a technique called lazy TLB is employed by Linux which avoids unnecessary TLB flushes by processes which do not access the userspace page tables as the kernel portion of the address space is always visible. This release tries to use lazy TLB used even lazier: On most workloads, the number of context switches far exceeds the number of TLB flushes sent. Optimizing the context switches, by always using lazy TLB mode, speeds up those workloads. This reduces total CPU use in the system by about 1-2% for a memcache workload on two socket systems, and by about 1% for a heavily multi-process netperf between two systems. == Another round of fixes for CPU security bugs == * x86: Remedy the overhead of STIBP/IBPB with per task indirect branch speculation control * x86: Harden spectre v2 userspace-userspace protection * x86: The "minimal retpoline" support is no longer useful and has been removed * arm64: Support for the new ARMv8.5 PSTATE.SSBS bit which can be used to mitigate Spectre-v4 dynamically without trapping to EL3 firmware Recommended LWN articles: * [[https://lwn.net/Articles/764209/|Strengthening user-space Spectre v2 protection]] * [[https://lwn.net/Articles/773118/|Taming STIBP]] = Core (various) = * fanotify super block marks: It implement the new mark type {{{FAN_MARK_FILESYSTEM}}} to enable monitoring of filesystem events on all filesystem objects regardless of the mount where event was generated [[https://git.kernel.org/linus/1e6cb72399fd58b38a1c11055ef18fe01f535cda|commit]], [[https://git.kernel.org/linus/60f7ed8c7c4d06aeda448c6da74621552ee739aa|commit]], [[https://git.kernel.org/linus/d54f4fba889b205e9cd8239182ca5d27d0ac3bc2|commit]] * New fanotify event info API: In order to identify which thread triggered the event in a multi-threaded program, add the {{{FAN_REPORT_TID}}} flag in fanotify_init to opt-in for reporting the event creator's thread id information [[https://git.kernel.org/linus/b723a7911d028fb55f67a63c4c4d895f72e059d4|commit]], [[https://git.kernel.org/linus/007d1e8395eaa59b0e7ad9eb2b53a40859446a88|commit]], [[https://git.kernel.org/linus/a72fd224e37bf6a0630bce302deebbccbc236ba2|commit]], [[https://git.kernel.org/linus/23c9deeb3285d34fd243abb3d6b9f07db60c3cf4|commit]], [[https://git.kernel.org/linus/a39f7ec41766118bf836d266224505741570ada6|commit]], [[https://git.kernel.org/linus/bdd5a46fe30653cb4d26c7c787a22159bf79eed9|commit]], [[https://git.kernel.org/linus/d0a6a87e40da49cfc7954c491d3065a25a641b29|commit]] * (FEATURED) psi: pressure stall information for CPU, memory, and IO [[https://git.kernel.org/linus/95f9ab2d596e8cbb388315e78c82b9a131bf2928|commit]], [[https://git.kernel.org/linus/1899ad18c6072d689896badafb81267b0a1092a4|commit]], [[https://git.kernel.org/linus/b1d29ba82cf2bc784f4c963ddd6a2cf29e229b33|commit]], [[https://git.kernel.org/linus/8508cf3ffad4defa202b303e5b6379efc4cd9054|commit]], [[https://git.kernel.org/linus/5c54f5b9edb1aa2eabbb1091c458f1b6776a1896|commit]], [[https://git.kernel.org/linus/1f351d7f7590857ea281579c26e6045b4c548ef4|commit]], [[https://git.kernel.org/linus/246b3b3342c9b0a2e24cda2178be87bc36e1c874|commit]], [[https://git.kernel.org/linus/eb414681d5a07d28d2ff90dc05f69ec6b232ebd2|commit]], [[https://git.kernel.org/linus/2ce7135adc9ad081aa3c49744144376ac74fea60|commit]] * init: add {{{root=PARTLABEL=}}} support [[https://git.kernel.org/linus/f027c34d844013d9d6c902af8fa01a82d6e5073d|commit]] * task scheduler * Migrate 'misfit' tasks on asymmetric capacity systems (e.g. Arm big.LITTLE) [[https://git.kernel.org/linus/df054e8445a4011e3d693c2268129c0456108663|commit]], [[https://git.kernel.org/linus/3b1baa6496e6b7ad016342a9d256bdfb072ce902|commit]], [[https://git.kernel.org/linus/e3d6d0cb66f2351cbfd09fbae04eb9804afe9577|commit]], [[https://git.kernel.org/linus/cad68e552e7774b68ae6a2c5fedb792936098b72|commit]], [[https://git.kernel.org/linus/5fbdfae5221a5208ed8e7653fc1c4b31de420f74|commit]], [[https://git.kernel.org/linus/dbbad719449e06d73db21598d6eee178f7a54b3b|commit]], [[https://git.kernel.org/linus/575638d1047eb057a5cdf95cc0b3c084e1279508|commit]], [[https://git.kernel.org/linus/e90c8fe15a3bf93a23088bcf1a56a0fa391d4e50|commit]], [[https://git.kernel.org/linus/757ffdd705ee942fc8150b17942d968601d2a15b|commit]], [[https://git.kernel.org/linus/4ad3831a9d4af5e36da5d44a3b9c6522d0353cee|commit]], [[https://git.kernel.org/linus/9c63e84db29bcf584040931ad97c2edd11e35f6c|commit]] * Set {{{SD_ASYM_CPUCAPACITY}}} flag automatically [[https://git.kernel.org/linus/05484e0984487d42e97c417cbb0697fa9d16e7e9|commit]], [[https://git.kernel.org/linus/bb1fbdd3c3fd12b612c7d8cdf13bd6bfeebdefa3|commit]], [[https://git.kernel.org/linus/3ba09df4b8b6e3f01ed6381e8fb890840fd0bca3|commit]], [[https://git.kernel.org/linus/e1799a80a4f5a463f252b7325da8bb66dfd55471|commit]] * Android binder: Add {{{BINDER_GET_NODE_INFO_FOR_REF}}} ioctl. It allows the context manager to retrieve information about nodes that it holds a reference to, such as the current number of references to those nodes [[https://git.kernel.org/linus/b7e6a8961b5d6dd3fc535970e65d497d868bb49f|commit]] * gcc-plugins: Add the STACKLEAK plugin, which erases the kernel stack before returning from syscalls. That reduces the information which kernel stack leak bugs can reveal and blocks some uninitialized stack variable attacks [[https://git.kernel.org/linus/10e9ae9fabaf96c8e5227c1cd4827d58b3aa406d|commit]], [[https://git.kernel.org/linus/afaef01c001537fa97a25092d7f54d764dc7d8c1|commit]], [[https://git.kernel.org/linus/c8d126275a5fa59394fe17109bdb9812fed296b8|commit]] * Allow dedupe of user owned read-only files [[https://git.kernel.org/linus/5de4480ae7f8f1969065aa88be98111e36075bb0|commit]], [[https://git.kernel.org/linus/85c95f208f481ab3c34c4622f508272cd4803afd|commit]] * qspinlock_stat: Count instances of nested lock slowpaths [[https://git.kernel.org/linus/1222109a53637f96c581224198b86856d503f892|commit]] * Building * Remove oldnoconfig and silentoldconfig targets [[https://git.kernel.org/linus/04c459d204484fa4747d29c24f00df11fe6334d4|commit]], [[https://git.kernel.org/linus/0085b4191f3e30ec94beef4103679f2828d3c54f|commit]] * Add the following GCC flags unconditionally: {{{-Wvla}}}, {{{-Wdeclaration-after-statement}}}, {{{-Wno-pointer-sign}}}, {{{-Wno-unused-but-set-variable}}} [[https://git.kernel.org/linus/0bb95f80a38f82884693194ea720e9cca5e12ada|commit]], [[https://git.kernel.org/linus/a33e7ae295d5bc20568c48ac217d07f011091c32|commit]], [[https://git.kernel.org/linus/fb073a4b473e5b854312dc819c66ded9d103e824|commit]], [[https://git.kernel.org/linus/9df3e7a7d7d6d92df7c58fb17f900fdc2d8b5031|commit]] = File systems = * XFS * Support returning partial reflink results. For example, if userspace sends a 1GB clone request and we run out of space halfway through, we at least can tell userspace that we completed 512M of that request like a regular write [[https://git.kernel.org/linus/3f68c1f562f1e4c5e1a515b392a2e0a509a342d5|commit]] * BTRFS * qgroups: Reduce dirty extents for metadata. It significantly improves balancing with quota enabled [[https://git.kernel.org/linus/c337e7b02f71c4b2f6f2138807a284d2c4e1ac5e|commit]], [[https://git.kernel.org/linus/25982561db7f43f29305704f9f24ff36ea7d5671|commit]], [[https://git.kernel.org/linus/ea49f3e73c4b7252c1569906c1b2cd54605af3c9|commit]], [[https://git.kernel.org/linus/5f527822be40104e9056c981ff06c7750153a10a|commit]], [[https://git.kernel.org/linus/2cd86d309bd1203241ceb833effe90787f3564a1|commit]], [[https://git.kernel.org/linus/3d0174f78e72301324a5b0ba7d67676474e36fff|commit]] * Improve btrfs btree locking modes. It significantly improves performance: more files/sec in fsmark, better perf on multi-threaded workloads (filebench, dbench), fewer context switches, better latency, etc [[https://git.kernel.org/linus/523983401644ebeb331c923c28c9591c07430a7d|commit]] * CIFS * Compounding support, it aggregates several operations to avoid round trips [[https://git.kernel.org/linus/c5a5f38f075cf7656a1d7ad2b40cbc19e48e9805|commit]], [[https://git.kernel.org/linus/f733e3936da462265a155f4dd44a333e56d197ed|commit]], [[https://git.kernel.org/linus/47dd9597df41f0f5cc6d86cffbbccce2d9e3a788|commit]], [[https://git.kernel.org/linus/ba8ca116854abe19893b8287d15c781e73e72405|commit]], [[https://git.kernel.org/linus/c2e0fe3f5aae1f70a1ab402778819d2cacbaefa6|commit]], [[https://git.kernel.org/linus/f7bfe04bf0dbc422cbb3d5cffe1601518116dad6|commit]], [[https://git.kernel.org/linus/3764cbd179f061ddb308cd58c1e9bbf987505a18|commit]], [[https://git.kernel.org/linus/dcbf91035709e9b8490bba96995998f48ce85947|commit]], [[https://git.kernel.org/linus/bb435512cec806a8e4e1af2700a7a7848baed0b5|commit]], [[https://git.kernel.org/linus/14e562ada2b152cdeb49a1aec40fac402d19f3ce|commit]] * Implement direct I/O: The file system passes the I/O data directly from user-space buffer to the transport layer, when file system is mounted with {{{cache-none}}} [[https://git.kernel.org/linus/6e6e2b86c29c6fcfa16ad9fdc7ea32027bea5d73|commit]], [[https://git.kernel.org/linus/8c5f9c1ab7cb45f6584ce312b14fb310a8fa28f3|commit]], [[https://git.kernel.org/linus/be4eb68846dc4450a9a4998d7c16d9f4955f9988|commit]] * Add ioctl for {{{QUERY_INFO}}} passthrough to userspace. It allows userspace tools to query the raw info levels for cifs files and process the response in userspace [[https://git.kernel.org/linus/f5b05d622a3e99e6a97a189fe500414be802a05c|commit]] * Add support for ioctl on directories [[https://git.kernel.org/linus/8d8b26e58432cb2840048b9f8aea286be6f75de5|commit]] * Show number of current open files in /proc/fs/cifs/Stats [[https://git.kernel.org/linus/fae8044c03c3c03e06b384a6122b78a6c3a0b6a7|commit]] * F2FS * Support superblock checksum [[https://git.kernel.org/linus/d440c52d3151a28358f4c2d52d8583a0aa54ab83|commit]] * Checkpoint disabling [[https://git.kernel.org/linus/4354994f097d068a894aa1a0860da54571df3582|commit]] * Account meta IO and skip count of background GC in {{{status}}} debugfs entry [[https://git.kernel.org/linus/b63e7be5908cb757fc6b98fb9534dabd78b5338a|commit]], [[https://git.kernel.org/linus/274bd9ba39425610fdb9a6827602197a5cd27cd8|commit]] * Add new idle interval timing for discard and gc paths [[https://git.kernel.org/linus/a7d10cf3e4e3e308da01462a1ef8008233ee523d|commit]] * FUSE * Allow caching readdir [[https://git.kernel.org/linus/d123d8e1833c5d854b56f2a7da17cafd0a901df8|commit]], [[https://git.kernel.org/linus/6433b8998a21dc597002731c4ceb4144e856edc4|commit]], [[https://git.kernel.org/linus/18172b10b674a7cd5340b2dd70202ce6622400bd|commit]], [[https://git.kernel.org/linus/69e34551152a286f827d54dcb5700da6aeaac1fb|commit]], [[https://git.kernel.org/linus/5d7bc7e8680c7ca4c8a4f139ce2a54ccb8131ef0|commit]], [[https://git.kernel.org/linus/3494927e090bf511e54eecaf33a8e56e5c0463db|commit]], [[https://git.kernel.org/linus/7118883b44b8edfea732aadeb0d4424da3f152b2|commit]], [[https://git.kernel.org/linus/261aaba72fdba17b74a3a434d9f925b43d90e958|commit]], [[https://git.kernel.org/linus/ab2257e9941b9ef28d4a4a451e4b146d40a21e18|commit]] * Add support for copy_file_range() [[https://git.kernel.org/linus/88bc7d5097a11d9bdcf08ecf85c81ba998353437|commit]] * Enable caching of symlinks [[https://git.kernel.org/linus/5571f1e65486be025f73fa6aa30fb03725d362a2|commit]] * GFS2 * Add support for ioctl {{{getfslabel}}} [[https://git.kernel.org/linus/6ddc5c3ddf256a7a0906732681a337f0452ac67a|commit]] * NFSD * Server side support for async COPY [[https://git.kernel.org/linus/9eb190fca8f9056ea4502526dc55fe52318d9afc|commit]], [[https://git.kernel.org/linus/6308bc98e86ee8c7bbd56a39839a257a16c9378c|commit]], [[https://git.kernel.org/linus/e0639dc5805a9d4faaa2c07ad98fa853b9529dd3|commit]], [[https://git.kernel.org/linus/885e2bf3ea5121975ade0d7866ab6226a8547dc9|commit]] * 9P * Add mount option for lock retry interval [[https://git.kernel.org/linus/5e172f75e51e3de1b4274146d9b990f803cb5c2a|commit]] * AFS * Add support for the YFS variant of the AFS server [[https://git.kernel.org/linus/35dbfba3111a5ef0663bb89185ce8dfdbef63f8d|commit]], [[https://git.kernel.org/linus/d4936803a92b7d088086b1d7b8ecb5739d52c03b|commit]], [[https://git.kernel.org/linus/30062bd13e3659a309d249a06d5f4ebb4a5c5251|commit]] * Allow dumping of server cursor on operation failure [[https://git.kernel.org/linus/744bcd713a4eabb248246f7deccfad30c579b7f5|commit]] * CEPH * Add support for copy_file_range [[https://git.kernel.org/linus/2ee9dd958d474252510b8c4dc216aa1dab7ad272|commit]], [[https://git.kernel.org/linus/23ddf9bea900b4ce39e5707e1ddf66062cfe6d91|commit]], [[https://git.kernel.org/linus/503f82a9932d311c12430779627f7a130bbe462a|commit]], [[https://git.kernel.org/linus/ea4cdc548e5e74a529cdd1aea885d74b4aa8f1b3|commit]] * OCFS2 * Support partial clone range and dedupe range [[https://git.kernel.org/linus/900611a1bd06ef4a79980e58babc61ef056c81ab|commit]] * OVERLAYFS * Automatically enable redirect_dir on metacopy=on [[https://git.kernel.org/linus/d47748e5ae5af6572e520cc9767bbe70c22ea498|commit]] = Memory management = * XArray (recommended LWN article [[https://lwn.net/Articles/745073/|The XArray data structure]]) [[https://git.kernel.org/linus/3d0186bb068e6cc6c23dc1d2f0b1cf64894c40ea|commit]], [[https://git.kernel.org/linus/66ee620f06f99d72475db6eb638559ba608c7dee|commit]], [[https://git.kernel.org/linus/3159f943aafdbacb2f94c38fdaadabf2bbde2a14|commit]], [[https://git.kernel.org/linus/02c02bf12c5d838603eed44195d3e91f094e2ab2|commit]], [[https://git.kernel.org/linus/f8d5d0cc145cc21bfc56ef807dc28102aebbf228|commit]], [[https://git.kernel.org/linus/01959dfe771c6893365482ec78dc1d9cbbbe6de8|commit]], [[https://git.kernel.org/linus/992a8e60e3fea77c55589fc1c5af2304e78a5baa|commit]], [[https://git.kernel.org/linus/ad3d6c7263e368abdc151e1cc13dc78aa39cc7a7|commit]], [[https://git.kernel.org/linus/9b89a0355144685a787b0dc5bcf7bdd6f2d02968|commit]], [[https://git.kernel.org/linus/58d6ea3085f2e53714810a513c61629f6d2be0a6|commit]], [[https://git.kernel.org/linus/41aec91f55985e7f14ee75fe2f6e7bcfff0d0fae|commit]], [[https://git.kernel.org/linus/b803b42823d0d9e8b6deccf01ffc2aba5d0738df|commit]], [[https://git.kernel.org/linus/80a0a1a9a3cde9b23851e8eb7160e2786549306a|commit]], [[https://git.kernel.org/linus/687149fca1f37c447e5d161e0a4a04cb2c880cb6|commit]], [[https://git.kernel.org/linus/64d3e9a9e0cc51957d243dd2b0adc5d74ff5e128|commit]], [[https://git.kernel.org/linus/4e99d4e9579d3b950bf4b38d0d64eb1b9be78761|commit]], [[https://git.kernel.org/linus/2264f5132fe45571139727ebdeb78696b35d1506|commit]], [[https://git.kernel.org/linus/9f14d4f1f1045f161fd4db8a8e194b7825c2874a|commit]], [[https://git.kernel.org/linus/3d5bd6e1a04ae779bc5e0de9ba2e92aa55c40fe8|commit]], [[https://git.kernel.org/linus/371c752dc66948714ee3b66c3306f3ff1ff71d2e|commit]], [[https://git.kernel.org/linus/f32f004cddf86d63a9c42994bbce9f4e2f07c9fa|commit]], [[https://git.kernel.org/linus/eb797a8ee0ab4cd03df556980ce7bf167cadaa50|commit]], [[https://git.kernel.org/linus/0d3f92966629e536b0c5c2355c1ada8e21c245f6|commit]], [[https://git.kernel.org/linus/74d609585d8bd6083bd9d75bc1fd2c0d3851bcc5|commit]], [[https://git.kernel.org/linus/5c024e6a4ebc1740db9f0f075aaa476210108a97|commit]], [[https://git.kernel.org/linus/4c7472c0df2f889df417a37571e622e02b5058fe|commit]], [[https://git.kernel.org/linus/f280bf092d48ff2db12b4a01127cd855c9e0ffb0|commit]], [[https://git.kernel.org/linus/fd1b3cee2a867868d39bb8cbcc4b00c36d07cc01|commit]], [[https://git.kernel.org/linus/3ece58a270cd1e5026282abe778bd50db7a11d08|commit]], [[https://git.kernel.org/linus/a6906972fe67fb6f73ba04088f7897227fd1cd8f|commit]], [[https://git.kernel.org/linus/c1901cd33cf407d77a181f8dd4ffff98041ef480|commit]], [[https://git.kernel.org/linus/070e807c690bf9a648d4a878f3c68ea9f5f5ce14|commit]], [[https://git.kernel.org/linus/a332125fc3223e1092f765db442b7afb9fd4ecde|commit]], [[https://git.kernel.org/linus/ef8e5717db01bfa4f425d2cda551a6fccc85529d|commit]], [[https://git.kernel.org/linus/22ecdb4f8b7dbfefa3deaf6b144093b5c4cd2aff|commit]], [[https://git.kernel.org/linus/8fa8e538e4be359e9042573737632dda35a8700d|commit]], [[https://git.kernel.org/linus/ff9c745b81ff1e482167fd73558450e66ad43a33|commit]], [[https://git.kernel.org/linus/a97e7904c0806309fd77103005bb7820c3f1c5e4|commit]], [[https://git.kernel.org/linus/69b6c1319b6588b65d853055d5336f662f6cb1a2|commit]], [[https://git.kernel.org/linus/8d93b41c09d1b74f376e3b9779eb3badeb550301|commit]], [[https://git.kernel.org/linus/4e17ec250fce0eba9b70a91c9622da2748a3ec50|commit]], [[https://git.kernel.org/linus/560d454bae08b5d5a132c5520177dede066334b7|commit]], [[https://git.kernel.org/linus/89eb946a7432be639b452fac295c0c2e5186c4a4|commit]], [[https://git.kernel.org/linus/aa5dc07f70c50a3c56bf3fa07bde0b22a95aa381|commit]], [[https://git.kernel.org/linus/77da9389b9d5f07d54fda092d1ab56002ec0019a|commit]], [[https://git.kernel.org/linus/85b392dbace77bf91050e6e07f3dd0f262e4babf|commit]], [[https://git.kernel.org/linus/67891ffff2f5cf10e89e348207f687a05c8bd2d6|commit]], [[https://git.kernel.org/linus/10bbd235859bf483f9a8a4ebe95463d700bae394|commit]], [[https://git.kernel.org/linus/62f945b6a7b8cda6d1f35941eb374276f7b8749a|commit]], [[https://git.kernel.org/linus/a12831bf4293d38518e41b80dd897af0122bb268|commit]], [[https://git.kernel.org/linus/e21a29552fa3f44ea41c53488875015ae70fd7f8|commit]], [[https://git.kernel.org/linus/552446a4166189a8c2515571dd6e25fd64a2dc78|commit]], [[https://git.kernel.org/linus/7b8d046fba91d62beb8a8f78244aaa3c23a60cdd|commit]], [[https://git.kernel.org/linus/c121d3bb717ee932caf031c6a7923547f7f83163|commit]], [[https://git.kernel.org/linus/7ae3424fb4b5587d9b2db12a4b1040c52073dd5c|commit]], [[https://git.kernel.org/linus/2313216f861f955c2091f1593ea95d5dc88493f4|commit]], [[https://git.kernel.org/linus/ef3038a573aa8bf2f3797b110f7244b55a0e519c|commit]], [[https://git.kernel.org/linus/7f4446eefe9fbbe68e9543946c9a20f67897ff9b|commit]], [[https://git.kernel.org/linus/0a943c65e7d7207dce2a63e9d14a925c0d9a7d96|commit]], [[https://git.kernel.org/linus/ec82e1c1c89ce02d7703b841e6ee7d429feed609|commit]], [[https://git.kernel.org/linus/04edf02cdd37a7e2e23ce8de77cb06d22ef2f503|commit]], [[https://git.kernel.org/linus/f611ff63751afa421edc1eddf4281de13e082c51|commit]], [[https://git.kernel.org/linus/5ec2d99de7427c84bb7250d23f5acf49a3670a63|commit]], [[https://git.kernel.org/linus/a77d19f46a37c0fed48676739e8e0277f43d74e6|commit]], [[https://git.kernel.org/linus/ec4907ff69fb16161d9d9370260303a73dd5acde|commit]], [[https://git.kernel.org/linus/cfc93c6c6c963d96ef7081c17fb95d2738a75f55|commit]], [[https://git.kernel.org/linus/084a899008cec6db91dbf06453b2e3a36ceed02d|commit]], [[https://git.kernel.org/linus/07f2d89cc270936ac314e7cc4ac57077d7f08aef|commit]], [[https://git.kernel.org/linus/9fc747f68d49f4b63029e3a1e87c49d23771a199|commit]], [[https://git.kernel.org/linus/9f32d221301c3e754b24c77ab11bf793b19f51b5|commit]], [[https://git.kernel.org/linus/b15cd800682fcaf27048b05e42f5c208e4c756c0|commit]], [[https://git.kernel.org/linus/a28334862993b5c6a8766f6963ee69048403817c|commit]], [[https://git.kernel.org/linus/1cf56f9d670b88b2e947a7ccdb8ba32e6477915d|commit]], [[https://git.kernel.org/linus/2956c6644bfd9aab9f6b21a12e1bd75876d9dd73|commit]], [[https://git.kernel.org/linus/8cf2f98411e3a0865026a1061af637161b16d32b|commit]], [[https://git.kernel.org/linus/adb9d9c4ccb1ff0bf1d376e65f36aa5573c75c1a|commit]], [[https://git.kernel.org/linus/372266ba0267803564824b1c09f1bb7f3f3fc761|commit]], [[https://git.kernel.org/linus/47e0fab2b15155e33fdff777c791bebfd5855bbc|commit]], [[https://git.kernel.org/linus/d6427f8179b5dd65eb468c61fc8cc24657c336c9|commit]], [[https://git.kernel.org/linus/93eb07f72c8d86f8fe5e90907df1cc037f6ffbb7|commit]], [[https://git.kernel.org/linus/4f06d6302da682157890f72c0573e12a73536814|commit]], [[https://git.kernel.org/linus/0e9446c35a80931044b6d8d2d74a9cabd248539f|commit]], [[https://git.kernel.org/linus/bcfa4b72111c9a4d483024cb1f877803b354aa11|commit]], [[https://git.kernel.org/linus/9076b33d7dad8e316c90918845417e85347f682c|commit]], [[https://git.kernel.org/linus/879a9ae7b5bc046f195a725d62bbc96258e5d0c8|commit]], [[https://git.kernel.org/linus/4bb53bdda0d1e061035774ed4868bdeb4d889044|commit]], [[https://git.kernel.org/linus/ccc89e30fac790e3a175dbfc863c67286fce96b0|commit]], [[https://git.kernel.org/linus/b66b5a48b8a0e43dc114573da11c1a9c586a2d4f|commit]], [[https://git.kernel.org/linus/542980aa9318edcfb68aa7bf6eacf2814dc137dd|commit]], [[https://git.kernel.org/linus/3a08cd52c37c793ffc199f6fc2ecfc368e284b2d|commit]] * Introduce kmalloc-reclaimable caches which can be reclaimed under memory pressure (typically through a shrinker), these are shown as "kmalloc-rcl-SIZE" in {{{/proc/slabinfo}}}. This makes the slab pages accounted as {{{NR_SLAB_RECLAIMABLE}}} in vmstat, which is reflected also the {{{MemAvailable}}} counter in {{{/proc/meminfo}}} and in overcommit decisions. A new {{{KReclaimable}}} counter is added to that file show the sum of all reclaimable kernel allocations, including slab. The {{{NR_INDIRECTLY_RECLAIMABLE_BYTES}}} counter is repurposed [[https://git.kernel.org/linus/cc252eae85e09552f9c1e7ac0c3227f835efdf2d|commit]], [[https://git.kernel.org/linus/1291523f2c1d631fea34102fd241fb54a4e8f7a0|commit]], [[https://git.kernel.org/linus/2e03b4bc4ae84fcc0eee00e5ba5d228901d38809|commit]], [[https://git.kernel.org/linus/b29940c1abd7a4c3abeb926df0a5ec84d6902d47|commit]], [[https://git.kernel.org/linus/61f94e18de94f79abaad3bb83549ff78923ac785|commit]], [[https://git.kernel.org/linus/f0d77874143df90f9831f30254eb149fc4d76b40|commit]] * zero-seek shrinkers: implement a "zero-seek" setting for shrinkers that results in a target ratio of 0:1 between their objects and IO-backed caches. This allows such virtual caches to grow when memory is available (they do cache/avoid CPU work after all), but effectively disables them as soon as IO-backed objects are under pressure [[https://git.kernel.org/linus/4b85afbdacd290c7a22c96df40a6433fdcacb509|commit]] * workingset: add vmstat counter for shadow nodes [[https://git.kernel.org/linus/68d48e6a2df575b935edd420396c3cb8b6aa6ad3|commit]] * kmemleak: add module param to print warnings to dmesg [[https://git.kernel.org/linus/154221c3e52083d9f54fa58b4e1090264969f6bc|commit]] * contiguous page allocator: Improve large page preservation handling [[https://git.kernel.org/linus/2a25dc7c79c92c6cba45c6218c49395173be80bf|commit]], [[https://git.kernel.org/linus/8679de0959e65ee7f78db6405a8d23e61665751d|commit]], [[https://git.kernel.org/linus/afd7969a99e072e6aa0d88511176d4d2f3009fd9|commit]], [[https://git.kernel.org/linus/91ee8f5c1f50a1f4096c178a93a8da46ce3f6cc8|commit]], [[https://git.kernel.org/linus/4046460b867f8b041c81c26c09d3bcad6d6e814e|commit]], [[https://git.kernel.org/linus/5c280cf6081ff99078e28b51172d78359f194fd9|commit]], [[https://git.kernel.org/linus/69c31e69df3d2efc4ad7f53d500fdd920d3865a4|commit]], [[https://git.kernel.org/linus/f61c5ba2885eabc7bc4b0b2f5232f475216ba446|commit]], [[https://git.kernel.org/linus/1c4b406ee89c2c4210f2e19b97d39215f445c316|commit]], [[https://git.kernel.org/linus/9cc9f17a5a0a8564b41b7c5c460e7f078c42d712|commit]], [[https://git.kernel.org/linus/585948f4f695b07204702cfee0f828424af32aa7|commit]] * brk and mremap: downgrade mmap_sem to read when shrinking [[https://git.kernel.org/linus/9bc8039e715da3b53dbac89525323a9f2f69b7b5|commit]], [[https://git.kernel.org/linus/85a06835f6f1ba79f0f00838ccd5ad840dd1eafb|commit]] * userfaultfd: allow {{{get_mempolicy(MPOL_F_NODE|MPOL_F_ADDR)}}} to trigger userfaults [[https://git.kernel.org/linus/3b9aadf7278d16d7bed4d5d808501065f70898d8|commit]] * zap pages with read mmap_sem in munmap for large mapping, to improve mmap_sem scalability [[https://git.kernel.org/linus/dd2283f2605e3b3e9c61bcae844b34f2afa4813f|commit]], [[https://git.kernel.org/linus/b4cefb36051244bcb5651026d862c332a6cac7df|commit]], [[https://git.kernel.org/linus/cb4922496ae40a775a1b17025eaa1060e8991253|commit]] * Address issues slowing persistent memory initialization [[https://git.kernel.org/linus/f682a97a00591def7cefbb5003dc04045028e405|commit]], [[https://git.kernel.org/linus/d483da5bc78b86fe4200d2947f193a745f711713|commit]], [[https://git.kernel.org/linus/966cf44f637e6aeea7e3d01ba004bf8b5beac78f|commit]] * Remove CONFIG_HAVE_MEMBLOCK [[https://git.kernel.org/linus/aca52c39838910605b1063a2243f553aa2a02d5c|commit]] and CONFIG_NO_BOOTMEM [[https://git.kernel.org/linus/b4a991ec584b3ce333342c431c3cc4fef8a690d7|commit]], [[https://git.kernel.org/linus/355c45affca7114ab510e296a5b7012943aeea17|commit]] * slub: Extend the slub_debug syntax to handle multiple slabs [[https://git.kernel.org/linus/c5fd3ca06b4699e251b4a1fb808c2d5124494101|commit]] * lz4: update LZ4 decompressor module [[https://git.kernel.org/linus/2209fda323e2fd2a2d0885595fd5097717f8d2aa|commit]] = Block layer = * Convert a bunch of drivers from the old legacy IO interface to blk-mq [[https://git.kernel.org/linus/4e6da0fe8058df9bfa937902fcd9cb2b7b89b2df|commit]], [[https://git.kernel.org/linus/891b7c5fbf619d2a314e424775b3c232eb227e90|commit]], [[https://git.kernel.org/linus/21b07f35544af5e2c11f079057e8fb4263d35dd3|commit]], [[https://git.kernel.org/linus/3582dd291788e9441c3ba9047e55089edb98da5c|commit]], [[https://git.kernel.org/linus/6ec3938cff95fe792a05fdf4ba14f92977e5e31d|commit]], [[https://git.kernel.org/linus/89c6b16509693332fe13d4bb6b812134de56c16f|commit]], [[https://git.kernel.org/linus/99fe8b02a82597a8fa8add6455d0a3037ca16e06|commit]], [[https://git.kernel.org/linus/77218ddf46d8d71161776a37739cd1723706ec95|commit]], [[https://git.kernel.org/linus/fab1adcf9503ccf191aec9ee42580f7dc1eb6237|commit]], [[https://git.kernel.org/linus/8ccb8cb1892b27655247ff42867665763793ffe8|commit]], [[https://git.kernel.org/linus/e3896d77b7025c39150eb5ada33ec2c88f4ad445|commit]], [[https://git.kernel.org/linus/0585b75437d335c6580066c1ab9ea3092139df32|commit]], [[https://git.kernel.org/linus/804186fa95c871aba621da280284d3bc46746d50|commit]], [[https://git.kernel.org/linus/8535fd6f702a4b3e225258a86dcbf5dd93b73d51|commit]], [[https://git.kernel.org/linus/6a23e05c2fe3c64ec012fd81e51e3ab51e4f2f9f|commit]], [[https://git.kernel.org/linus/a9f38e1dec107af70d81338332494bf0a1e76597|commit]], [[https://git.kernel.org/linus/ad5fc6bb72214615f300af1f4ed57f71bc3be510|commit]] * blk-mq: Enable support for runtime power management [[https://git.kernel.org/linus/986d413b7c156e69198dfc80fb74aa18d0ddef44|commit]] * Introduce {{{BLKGETNRZONES}}} ioctl: Get a zoned block device total number of zones [[https://git.kernel.org/linus/65e4e3eee83d7a4ad7e8c5175b2a0ddfd3b5685f|commit]] * Introduce {{{BLKGETZONESZ}}} ioctl: Get a zoned block device zone size [[https://git.kernel.org/linus/72cd87576d1d885fc2968416ed5aca8f54749653|commit]] * md: raid10: support add disk under grow mode [[https://git.kernel.org/linus/7564beda19b3646d781934d04fc382b738053e6f|commit]] * Expose through sysfs the nr_zones field of struct request_queue [[https://git.kernel.org/linus/965b652e901886ea54f93c60027b5be76328d958|commit]] * kyber: implement improved heuristics [[https://git.kernel.org/linus/6e25cb01ea206362616a2be469d4f3635f58ca63|commit]] * nvmem: add support for cell info [[https://git.kernel.org/linus/b985f4cba6dbb3b60ad119c6f7e5cbad6f0d7e45|commit]] and cell lookups [[https://git.kernel.org/linus/506157be06ba28137b18b7419a4dccfa244f4983|commit]] * Remove DAC960 driver [[https://git.kernel.org/linus/6956b956934f10c19eca2a1d44f50a3bee860531|commit]] = Tracing, perf and BPF = * perf trace: Introduce {{{perf trace --max-events}}} for stopping 'perf trace' when that many syscalls (enter+exit), tracepoints or other events such as page faults take place. Support that as well on a per-event basis, e.g.: {{{perf trace -e sched:*switch/nr=2/,block:*_plug/nr=4/,block:*_unplug/nr=1/,net:*dev_queue/nr=3,max-stack=16/}}} Will stop when 2 context switches, 4 block plugs, 1 block unplug and 3 net_dev_queue tracepoints take place [[https://git.kernel.org/linus/4ba8b3ebf4f8f583c2c01da20e4d110a5881ffdd|commit]], [[https://git.kernel.org/linus/5067a8cdd4ce3588fca2e0ee554f0f081650de8f|commit]], [[https://git.kernel.org/linus/2fda5ada07f36f6cde39a52e7f05d86ea8ffdc33|commit]], [[https://git.kernel.org/linus/a9c5e6c1e9bff42ca5f01ceb3092a27a010755fb|commit]] * uprobes: Support SDT markers having reference count (semaphore) [[https://git.kernel.org/linus/1cc33161a83d20b5462b1e93f95d3ce6388079ee|commit]], [[https://git.kernel.org/linus/22bad38286d9a652d7061a02f9743bb2ebb84e59|commit]], [[https://git.kernel.org/linus/ccea8727dc27d8f46df6557f9260ab32760ef409|commit]], [[https://git.kernel.org/linus/5a5e3d3ceae2121590d67258a4e658d938b4a46d|commit]] * uprobe: support reference counter in fd-based uprobe [[https://git.kernel.org/linus/a6ca88b241d5e929e6e60b12ad8cd288f0ffa256|commit]] * Make perf script easier to use for itrace. Implement a range of improvements to make it easier to look at itrace traces with perf script [[https://git.kernel.org/linus/b585ebdb5912cf1438d4822f79aaebe36a2d123a|commit]], [[https://git.kernel.org/linus/4eb068157121939f4bc16256a37bcd88f5554123|commit]], [[https://git.kernel.org/linus/d1b1552e15d41297abcaf3812378e3391d44fa6b|commit]], [[https://git.kernel.org/linus/99f753f048b3f02f31a56951781672021af6cd0d|commit]], [[https://git.kernel.org/linus/fe57120e18a1f9124ca758c89cc54f91333d1847|commit]] * perf script: Allow extended console debug output [[https://git.kernel.org/linus/c1c9b9695cc8868048f45c7e2559f65bc0be7382|commit]] * perf scripts python: exported-sql-viewer.py: Add All branches report [[https://git.kernel.org/linus/76099f98aea4606f7c96b8d2366b46840529d08f|commit]], add ability to display all the database tables [[https://git.kernel.org/linus/8392b74b575c38fa5d50d1fe07fa9a4bcea93862|commit]], add ability to find symbols in the call-graph [[https://git.kernel.org/linus/ebd70c7dc2f5f57315e19d959ddc9cb05e9d48e1|commit]], add ability to shrink / enlarge font [[https://git.kernel.org/linus/82f68e2898e634b8b0efc7ddd57e037ef75ea114|commit]], add support for multiple sub-windows [[https://git.kernel.org/linus/1beb5c7b07040b70975a2ae0e90b87d412fabf06|commit]] * kprobes: Allow kprobe-events to record module symbol [[https://git.kernel.org/linus/a6682814f37124ec1e708cca8f44968445fa9dd7|commit]] * probeevent: Improve fetcharg features [[https://git.kernel.org/linus/56de763052792669d61d79a087611da9a7f04d4e|commit]], [[https://git.kernel.org/linus/eeb07b0615004bce145015b704de85fd3ac6cce0|commit]], [[https://git.kernel.org/linus/7bfbc63eda08b8158c040d6882c807f62b0750bb|commit]], [[https://git.kernel.org/linus/533059281ee594f9fbb9e58042aaec77083ef251|commit]], [[https://git.kernel.org/linus/f451bc89d8357f010304564728ba7c5d38a1d4d5|commit]], [[https://git.kernel.org/linus/9178412ddf5a98feba0ad3986111c5ad10eb9e59|commit]], [[https://git.kernel.org/linus/0a46c8549f8c775ed6afac57a8b9fd7c4b4d156f|commit]], [[https://git.kernel.org/linus/9b960a38835fcaf977f20dcc34ce9e54ff9563bd|commit]], [[https://git.kernel.org/linus/60c2e0cebfd01bd1bc5e8843f063264148d6b2bb|commit]], [[https://git.kernel.org/linus/3c88ee194c288205733d248b51f0aca516ff4940|commit]], [[https://git.kernel.org/linus/a1303af5d79eb13a658633a9fb0ce3aed0f7decf|commit]], [[https://git.kernel.org/linus/40b53b771806b1770837169cd32d1bf167fbccaf|commit]] * BPF * Implement queue/stack maps. This patchset implements two new kind of eBPF maps: queue and stack. Those maps provide to eBPF programs the peek, push and pop operations, and for userspace applications a new bpf_map_lookup_and_delete_elem() is added [[https://git.kernel.org/linus/144991602e6a14d667b295f1b099e609ce857772|commit]], [[https://git.kernel.org/linus/c9d29f4658a5a6d2c2ba2afeb20ff763fc6286f9|commit]], [[https://git.kernel.org/linus/bd513cd08f10cbe28856f99ae951e86e86803861|commit]], [[https://git.kernel.org/linus/2ea864c58f19bf70a0e2415f9f1c53814e07f1b4|commit]], [[https://git.kernel.org/linus/f1a2e44a3aeccb3ff18d3ccc0b0203e70b95bd92|commit]], [[https://git.kernel.org/linus/43b987d23d6bd08db41a9c4a85aacfb3f0b2a94c|commit]] * Add socket lookup support [[https://git.kernel.org/linus/f3709f69b7c5cba6323cc03c29b64293b93be817|commit]], [[https://git.kernel.org/linus/aad2eeaf46973a0968a75640cd1f8f1c650322a0|commit]], [[https://git.kernel.org/linus/9d2be44a7f33d5ec4fbd3368317bcf5f404bb8f7|commit]], [[https://git.kernel.org/linus/840b9615d6e9d134178b4dd4f3c30aa30643a379|commit]], [[https://git.kernel.org/linus/c64b7983288e636356f7f5f652de4813e1cfedac|commit]], [[https://git.kernel.org/linus/84dbf3507349696b505b6a500722538b0683e4ac|commit]], [[https://git.kernel.org/linus/fd978bf7fd312581a7ca454a991f0ffb34c4204b|commit]], [[https://git.kernel.org/linus/6acc9b432e6714d72d7d77ec7c27f6f8358d0c71|commit]], [[https://git.kernel.org/linus/0c586079f852187d19fea60c9a4981ad29e22ba8|commit]], [[https://git.kernel.org/linus/b584ab8840fdc17f0d75ac62510396b8f657ed8f|commit]], [[https://git.kernel.org/linus/29cd77f41620dca22bdee092217c16b49ece8915|commit]], [[https://git.kernel.org/linus/de375f4e91e3074a09ad337ac4b32a2f21c24d96|commit]], [[https://git.kernel.org/linus/a610b665ec9ec9ba076e6dd8703750999c81eae4|commit]] * Adding supprot for two new bpf's tcp sockopts: {{{TCP_SAVE_SYN}}} (set) and {{{TCP_SAVED_SYN}}} (get) [[https://git.kernel.org/linus/1e215300f1384072c62459a1c194a08dbe05ff2c|commit]] * bpftool support for sockmap use cases [[https://git.kernel.org/linus/b7d3826c2ed6c3e626e7ae796c5df2c0d2551c6a|commit]], [[https://git.kernel.org/linus/c034a177d3c898f370f52877e7252da8c4f8235c|commit]] * per-cpu cgroup local storage. It implements per-cpu cgroup local storage and provides an example how per-cpu and shared cgroup local storage can be used for efficient accounting of network traffic [[https://git.kernel.org/linus/8bad74f9840f87661f20ced3dc80c84ab4fd55a1|commit]], [[https://git.kernel.org/linus/f294b37ec7b24a574884cd157497a3748081c0f0|commit]], [[https://git.kernel.org/linus/b741f1630346defcbc8cc60f1a2bdae8b3b0036f|commit]], [[https://git.kernel.org/linus/c6fdcd6e0cc4dc316e3eb261025fb0abd69540b9|commit]], [[https://git.kernel.org/linus/25025e0aab2f91a93a1557b299a79814559b4dc2|commit]], [[https://git.kernel.org/linus/e54870924f4c51a8228be9ad427274f1032e0683|commit]], [[https://git.kernel.org/linus/a3c6054f81e2c436d6b53b8060df996fec0cbfdb|commit]], [[https://git.kernel.org/linus/919646d2a3a90465cf8b30a7616c63005bef7570|commit]], [[https://git.kernel.org/linus/5fcbd29b372402c96b182e0e80b3d95463431490|commit]], [[https://git.kernel.org/linus/371e4fcc9d96ab1c8d72d59ca4ee3537402d1584|commit]] * bpftool: add support for {{{BPF_MAP_TYPE_REUSEPORT_SOCKARRAY}}} maps [[https://git.kernel.org/linus/7ea3c40605e9acf12f2dda26e28cd82c0dba6923|commit]] * bpftool: add net support. The functionality to dump network driver and tc related bpf programs are added [[https://git.kernel.org/linus/f7010770fbac47b1fc9fb723b1d2019eb23c04f2|commit]], [[https://git.kernel.org/linus/36f1678d9e0b5d2e0236046d9659e0348b4719a8|commit]], [[https://git.kernel.org/linus/f6f3bac08ff9855d803081a353a1fafaa8845739|commit]] * bpftool: add map create command [[https://git.kernel.org/linus/0b592b5a01bef5416472ec610d3191e019c144a5|commit]] = Virtualization = * vfio: add vgpu edid support [[https://git.kernel.org/linus/3cdf752506b29ace75b6e1318abac06073d600e4|commit]], [[https://git.kernel.org/linus/104c7405a64d937254b6a154938e6151f91c9e0d|commit]] * virtio-balloon: support free page reporting [[https://git.kernel.org/linus/86a559787e6f5cf662c081363f64a20cad654195|commit]], [[https://git.kernel.org/linus/d95f58f4a6ca002126c36c530fb096519c94baef|commit]], [[https://git.kernel.org/linus/2e991629bcf55a43681aec1ee096eeb03cf81709|commit]] * Add support for overriding the default driver for a VMBus device in the same way that it can be done for PCI devices [[https://git.kernel.org/linus/d765edbb301c0e196015a59b17420558088ea33f|commit]] = Cryptography = * Implement a generic crypto statistics [[https://git.kernel.org/linus/cac5818c25d0423bda73e2b6997404ed0a7ed9e3|commit]] and add cryptostat userspace [[https://git.kernel.org/linus/a6f37cee6e4f6fa9d61962efbcb06a032efed1ba|commit]] * KEYS * Support TPM-wrapped key and crypto ops. This adds 1) {{{keyctl()}}} functions that permit an asymmetric-type key to be used to encrypt, decrypt, sign and verify a small piece of data using the public and/or private key held in the kernel 2) an asymmetric-key parser for PKCS#8 to allow RSA private keys to be passed to the kernel 3) an asymmetric-key parser for TPM-wrapped key blobs [[https://git.kernel.org/linus/70025f84e5b79627a6739533c4fe7cef5b605886|commit]], [[https://git.kernel.org/linus/00d60fd3b93219ea854220f0fd264b86398cbc53|commit]], [[https://git.kernel.org/linus/5a30771832aab228e0863e414f9182f86797429e|commit]], [[https://git.kernel.org/linus/039884907787e55166e84e0b654a5342cc8a04ab|commit]], [[https://git.kernel.org/linus/82f94f24475c89c6d5cb673e1277b5b4394499c8|commit]], [[https://git.kernel.org/linus/f7c4e06e066c3df282e6e3d4e7d8c498be9e1e46|commit]], [[https://git.kernel.org/linus/c08fed73712620eb0a19244dbbbbdf00edbe5e47|commit]], [[https://git.kernel.org/linus/3c58b2362ba828ee2970c66c6a6fd7b04fde4413|commit]], [[https://git.kernel.org/linus/b3a8c8a5ebb5b4c3eb7b104364e63c453cc85f14|commit]], [[https://git.kernel.org/linus/903be6bb84c544551150a6f5aab9fda1ed9a6895|commit]], [[https://git.kernel.org/linus/f8c54e1ac4b82933dfcf88c37892da8ae35ccbe4|commit]], [[https://git.kernel.org/linus/d5e72745ca121459f68c598dac7b374a76322b94|commit]], [[https://git.kernel.org/linus/dff5a61a59614c110d06a5dc1466cdb762b6affd|commit]], [[https://git.kernel.org/linus/ad4b1eb5fb3350c979a4f86eacfe7aac0595f335|commit]], [[https://git.kernel.org/linus/e1ea9f86023e7668604cc6456a818e5e4d0361c9|commit]], [[https://git.kernel.org/linus/22447981fc050b5f1bdd0e7cbee89b4152a2b2d8|commit]], [[https://git.kernel.org/linus/0c36264aa1d5b77eb21f646f83223134e4528cfe|commit]], [[https://git.kernel.org/linus/f884fe5a158f750e232b029e1fac0283e388e062|commit]], [[https://git.kernel.org/linus/a335974ae0883e045151a2160093a22aa02c3626|commit]], [[https://git.kernel.org/linus/e08e6891231f5fae82a6ffb4affdfa2ced8c1a77|commit]], [[https://git.kernel.org/linus/e73d170f6c77e7006b48c5e9c325fe520f6012ca|commit]], [[https://git.kernel.org/linus/64ae16dfeefec670276607fa789ce096c7ebd7c4|commit]] * ofb: add output feedback mode [[https://git.kernel.org/linus/e497c51896b3babfb14a36e497fd36a15f56cfa4|commit]] * speck: remove Speck [[https://git.kernel.org/linus/578bdaabd015b9b164842c3e8ace9802f38e7ecc|commit]] * crc-t10dif: Allow current transform to be inspected in sysfs [[https://git.kernel.org/linus/11dcb1037f40a19f298845a9b2ec093f7b8b958b|commit]] = Security = * LSM: Provide init debugging infrastructure with {{{lsm.debug}}} kernel boot parameter [[https://git.kernel.org/linus/9b8c7c14059af801637a818882159145c370d6f1|commit]] * apparmor: Allow packet filtering based on secmark policy [[https://git.kernel.org/linus/9caafbe2b4cf4c635826a2832e93cf648605de8b|commit]], [[https://git.kernel.org/linus/ab9f2115081ab7ba63b77a759e0f3eb5d6463d7f|commit]] * tpm: add support for nonblocking operation [[https://git.kernel.org/linus/9e1b74a63f7760b525295161fc608b19b8ee19c4|commit]] = Networking = * (FEATURED) TCP: switch TCP and and fair-queue scheduler to Early Departure Time model. See: [[https://www.files.netdevconf.org/d/46def75c2ef345809bbe/files/?p=/Evolving%20from%20AFAP%20%E2%80%93%20Teaching%20NICs%20about%20time.pdf|Evolving from AFAP: Teaching NICs about time]] [[https://git.kernel.org/linus/72b0094f918294e6cb8cf5c3b4520d928fbb1a57|commit]], [[https://git.kernel.org/linus/2fd66ffba50716fc5ab481c48db643af3bda2276|commit]], [[https://git.kernel.org/linus/142537e419234c396890a22806b8644dce21b132|commit]], [[https://git.kernel.org/linus/9799ccb0e984a5c1311b22a212e7ff96e8b736de|commit]], [[https://git.kernel.org/linus/d3edd06ea8ea9e03de6567fda80b8be57e21a537|commit]], [[https://git.kernel.org/linus/fd2bca2aa7893586887b2370e90e85bd0abc805e|commit]], [[https://git.kernel.org/linus/ab408b6dc7449c0f791e9e5f8de72fa7428584f2|commit]], [[https://git.kernel.org/linus/c092dd5f4a7f4e4dbbcc8cf2e50b516bf07e432f|commit]], [[https://git.kernel.org/linus/90caf67b01fabdd51b6cdeeb23b29bf73901df90|commit]] * Implement kernel filtering of route dumps by protocol (e.g., which routing daemon installed the route), route type (e.g., unicast), table id and nexthop device. iproute2 has been doing this filtering in userspace for years; pushing the filters to the kernel side improves efficiency on large scale systems [[https://git.kernel.org/linus/22e6c58b8c2843337ec4e8464b1ce6e869ca5bf4|commit]], [[https://git.kernel.org/linus/4724676d551c0961659b1da3fb4b5928169fb184|commit]], [[https://git.kernel.org/linus/18a8021a7be3207686851208f91a2f105b2d4703|commit]], [[https://git.kernel.org/linus/13e38901d46ca60156c53c0d5e0b8bb58db66da5|commit]], [[https://git.kernel.org/linus/bae9a78b17b87a7cef56cf492916007a58f65172|commit]], [[https://git.kernel.org/linus/e1cedae1ba6b09ae8376c1486712bf91ea0dfc41|commit]], [[https://git.kernel.org/linus/cb167893f41e21e6bd283d78e53489289dc0592d|commit]], [[https://git.kernel.org/linus/effe6792662495ad9c175bf0d9c53459a51fdbbd|commit]], [[https://git.kernel.org/linus/196cfebf897266c3450519e916bab9daff74e52c|commit]], [[https://git.kernel.org/linus/08e814c9e8eb5a982cbd1e8f6bd255d97c51026f|commit]], [[https://git.kernel.org/linus/e4e92fb160d7bef689c6ad00108b4e52599ca05e|commit]] * TCP: Previously TCP initial receive buffer is ~87KB by default and the initial receive window is ~29KB (20 MSS). This patch changes the two numbers to 128KB and ~64KB (rounding down to the multiples of MSS) respectively [[https://git.kernel.org/linus/a337531b942bd8a03e7052444d7e36972aac2d92|commit]] * batman-adv: Enable LockLess TX for softif [[https://git.kernel.org/linus/a7ea49afcc888dd5aac76774767bfb90be937aad|commit]] * bridge: add support for per-port vlan stats [[https://git.kernel.org/linus/9163a0fc1f0c0980f117cc25f4fa6ba9b0750a36|commit]] * Wireless * Add support for 60GHz band channels 5 and 6 [[https://git.kernel.org/linus/9cf0a0b4b64ae103cf0e7dfaa72b44ecda24c0eb|commit]] * Allow userspace to enable FTM responder functionality with the addition of new Netlink flag attribute {{{NL80211_ATTR_FTM_RESPONDER}}} with configurable lci/civic ocation parameters [[https://git.kernel.org/linus/81e54d08d9d845053111f30045a93f3eb1c3ca96|commit]], [[https://git.kernel.org/linus/bc847970f43281cb07c9f7d0897ee08cd1e08cf3|commit]] * VHT extended NSS support [[https://git.kernel.org/linus/b0aa75f0b1b2e6bc77128fab36c8ed87e84917cc|commit]], [[https://git.kernel.org/linus/09b4a4faf9d037990ac4f8110dd944b27b42d5df|commit]], [[https://git.kernel.org/linus/7eb26df2972504ffe37da77612c0e5f714f0d6df|commit]], [[https://git.kernel.org/linus/e80d642552a3190aad97cae6c22742b079b5d30b|commit]] * Add per peer statistics to compute FCS error rate [[https://git.kernel.org/linus/0d4e14a32dcab9c4bd559d02874120fbb86b1322|commit]] * Add he_capa debugfs entry [[https://git.kernel.org/linus/80aaa9c1641590ab85c74824399cdb6b2e28e772|commit]] * packet scheduler * Add hardware specific counters to TC actions [[https://git.kernel.org/linus/5e111210a44301304f9054e995bf33f69b6de76f|commit]], [[https://git.kernel.org/linus/28169abadb08333eb607621faa3a1dd7109e0d45|commit]] * Add sockopt {{{PACKET_IGNORE_OUTGOING}}} to ignore outgoing packets. Note that the *BSDs already have something similar: {{{BIOCSSEESENT/BIOCSDIRECTION}}} and {{{BIOCSDIRFILT}}} [[https://git.kernel.org/linus/fa788d986a3aac5069378ed04697bd06f83d3488|commit]] * Add support for configuring the taprio scheduler [[https://git.kernel.org/linus/5a781ccbd19e4664babcbe4b4ead7aa2b9283d22|commit]] * DNS: Allow the dns resolver to retrieve a server set [[https://git.kernel.org/linus/bbb4c4323a4d9cb5ca04db904aa3050a7586839a|commit]] * Distributed Switch Architecture * Add Lantiq / Intel GSWIP tag support [[https://git.kernel.org/linus/7969119293f5aa3b51040ae81a80e87c7b979b2d|commit]] * Expose tagging protocol to user-space [[https://git.kernel.org/linus/98cdb480712320880d9d5d9db052990a9609427e|commit]] * Introduce eBPF flow dissector, a more secure flow dissector. Recommended LWN article: [[https://lwn.net/Articles/764200/|Writing network flow dissectors in BPF]]. [[https://git.kernel.org/linus/d58e468b1112dcd1d5193c0a89ff9f98b5a3e8b9|commit]], [[https://git.kernel.org/linus/c22fbae76c9fdef5b7406b27754db1758e041991|commit]], [[https://git.kernel.org/linus/9c98b13cc3bb5d90ee2ec047d591272b382468fd|commit]], [[https://git.kernel.org/linus/50b3ed57dee9cd0e06c59826cec8af14b51bab3e|commit]] * geneve: add ttl inherit support [[https://git.kernel.org/linus/52d0d404d39dd9eac71a181615d6ca15e23d8e38|commit]] * rtnetlink: add {{{IFA_TARGET_NETNSID}}} for {{{RTM_GETADDR}}}. The goal is to make it possible to perform {{{RTM_GETADDR}}} requests on different network namespaces [[https://git.kernel.org/linus/c383edc42403b0bca31cbaabafd44dd58afb202f|commit]], [[https://git.kernel.org/linus/9f3c057c146fce335c160e95ca893d5bc34e7d00|commit]], [[https://git.kernel.org/linus/d38071455ffb553ffa9f63d3c8e6af13c42da512|commit]], [[https://git.kernel.org/linus/6ecf4c37eb3e89b0832c9616089a5cdca3747da7|commit]], [[https://git.kernel.org/linus/87ccbb1f943625884b824c5560f635dcea8e4510|commit]], [[https://git.kernel.org/linus/19d8f1ad12fd746e60707a58d954980013c7a35a|commit]], [[https://git.kernel.org/linus/7e4a8d5a93f649a1c0a0181cab5d965b1f85cf71|commit]], [[https://git.kernel.org/linus/978a46fa6c34c311f44e6f832cbea765ac148ace|commit]], [[https://git.kernel.org/linus/203651b665f72ba765fc4721842a471f8e9e5739|commit]] * Add support for dumping addresses for a specific device [[https://git.kernel.org/linus/1c98eca412e1f183070e76d103a296d7afccfd64|commit]], [[https://git.kernel.org/linus/fe884c2be0b329042eaf0371ebdbb636ba3ccc39|commit]], [[https://git.kernel.org/linus/5fcd266a9f64bc75707f7ddc96427f2e8caaacd5|commit]], [[https://git.kernel.org/linus/6371a71f3a3b2bc47880dd76c2f176495802d0df|commit]] * IPv6 * Add a sysctl ({{{skip_notify_on_dev_down}}}) to skip {{{DELROUTE}}} message on device down, to mimic IPv4 behaviour [[https://git.kernel.org/linus/7c6bb7d2faaf1ed7d78bafd712476e4cf2cf0d7d|commit]] * Add sockopt {{{IPV6_MULTICAST_ALL}}} analogue to {{{IP_MULTICAST_ALL}}} [[https://git.kernel.org/linus/15033f0457dca569b284bef0c8d3ad55fb37eacb|commit]] * Allow the l3mdev to be a loopback [[https://git.kernel.org/linus/3ede0bbcdfc94ccdbe56bed4e66beb3f4f4f6b00|commit]] * ncsi * Add NCSI OEM command support [[https://git.kernel.org/linus/fb4ee67529ff3e4c5874768477887c2df5714c96|commit]] and Broadcom OEM command [[https://git.kernel.org/linus/cb10c7c0dfd9e6fd3d69ced98b05cbd198c48cf6|commit]] * Extend NC-SI Netlink interface to allow user space to send NC-SI command [[https://git.kernel.org/linus/9771b8ccdfa6dcb1ac5128ca7fe8649f3092d392|commit]] * neighbour * Allow setting of {{{NTF_ROUTER}}} by an external entity (eg BGP E-VPN control plane) [[https://git.kernel.org/linus/f7aa74e483e81c7a064ebc29e5deeb6b31cde412|commit]] * Send netlink notification if {{{NTF_ROUTER}}} changes [[https://git.kernel.org/linus/fc6e8073f304010605f834cb2eb8c07c46461c9d|commit]] * netfilter * nf_tables: add SECMARK support [[https://git.kernel.org/linus/fb961945457f5177072c968aa38fee910ab893b9|commit]] * nf_tables: add xfrm expression [[https://git.kernel.org/linus/6c47260250fc6114ce2012db13e1cd3938a27b73|commit]] * nft_osf: Add ttl option support [[https://git.kernel.org/linus/a218dc82f0b5c6c8ad3d58c9870ed69e26c08b3e|commit]] * xt_IDLETIMER: add sysfs filename checking routine [[https://git.kernel.org/linus/54451f60c8fa061af9051a53be9786393947367c|commit]] * netlink * Add new socket option to enable strict checking on dumps [[https://git.kernel.org/linus/89d35528d17d25819a755a2b52931e911baebc66|commit]] * Add {{{NLA_REJECT}}} policy type which does nothing but reject (with {{{EINVAL}}}) validation of any messages containing this attribute [[https://git.kernel.org/linus/568b742a9d9888aca876b6ad9fa45490f18bee0a|commit]] * Add ethernet address policy type which checks for exact size, and rejects the attribute if the length isn't {{{ETH_ALEN}}} [[https://git.kernel.org/linus/b60b87fc2996240e298529a46e122ef62ef9c27f|commit]] * netpoll: Enable netconsole IPv6 link local address [[https://git.kernel.org/linus/d016b4a3562b745fd9fa387a47d8de62ccd7e241|commit]] * rxrpc: Add {{{/proc/net/rxrpc/peers}}} to display peer list [[https://git.kernel.org/linus/bc0e7cf43370a8e229224623f516c9b0396e08b9|commit]] * vhost_net XDP TX batching: try to batch submitting packets to underlayer socket through msg_control during sendmsg() [[https://git.kernel.org/linus/e4a2a3048ed93f0c354ad837f1d45fc8d389d538|commit]], [[https://git.kernel.org/linus/4f23aff8713c1f98735f7290a2cde63845b7ec88|commit]], [[https://git.kernel.org/linus/291aeb2b1dba0d0296673d994200824a7185585e|commit]], [[https://git.kernel.org/linus/f7053b6ccb65a36fdfed6ad92b808464839f0eb6|commit]], [[https://git.kernel.org/linus/ac1f1f6c5ae8352a39afea7b0786c59bcd730712|commit]], [[https://git.kernel.org/linus/8ae1aff0b331ab154c39910f2e0ed239bf942d56|commit]], [[https://git.kernel.org/linus/1a097910adda6b3328fc235575bba0e9ee408492|commit]], [[https://git.kernel.org/linus/fe8dd45bb7556246c6b76277b1ba4296c91c2505|commit]], [[https://git.kernel.org/linus/043d222f93ab8c76b56a3b315cd8692e35affb6c|commit]], [[https://git.kernel.org/linus/0efac27791ee068075d80f07c55a229b1335ce12|commit]], [[https://git.kernel.org/linus/0a0be13b8fe2cac11da2063fb03f0f39359b3069|commit]] * vhost: improve performance when enable busyloop [[https://git.kernel.org/linus/a6a67a2f343c613752165101208bd096b0bba6e1|commit]], [[https://git.kernel.org/linus/dc151282bbdaed08e62f5c34c4842331d54b4628|commit]], [[https://git.kernel.org/linus/441abde4cd84824ad010bc7efd6fdd101a1b73e5|commit]] * tipc: support binding to specific ip address when activating UDP bearer [[https://git.kernel.org/linus/acad76a5f6165dc451c5f35edb35d77def1f2e15|commit]] * TLS * Add support for async encryption of records for performance [[https://git.kernel.org/linus/a42055e8d2c30d4decfc13ce943d09c7b9dad221|commit]] * sockmap integration for ktls. It allows for introspection or filtering of L7 data with the help of BPF programs operating on a common input context [[https://git.kernel.org/linus/8b9088f806e1ccd10c3d48b3b6d3d5d7855d92c5|commit]], [[https://git.kernel.org/linus/1243a51f6c05ecbb2c5c9e02fdcc1e7a06f76f26|commit]], [[https://git.kernel.org/linus/604326b41a6fb9b4a78b6179335decee0365cd8c|commit]], [[https://git.kernel.org/linus/d829e9c4112b52f4f00195900fd4c685f61365ab|commit]], [[https://git.kernel.org/linus/924ad65ed01ee0eec5d2a3280c01c394343d6df7|commit]], [[https://git.kernel.org/linus/d3b18ad31f93d0b6bae105c679018a1ba7daa9ca|commit]], [[https://git.kernel.org/linus/e9dd904708c463ff57d019f4482c48d057fa4d7e|commit]], [[https://git.kernel.org/linus/eea0d2adcf112dd9e5d9a13779c0ab262583444d|commit]] * veth * XDP stats improvement [[https://git.kernel.org/linus/2131479df66d320e327341ccf0be97924f108327|commit]], [[https://git.kernel.org/linus/4195e54aaf1c8d465666333f47662088c9e63672|commit]], [[https://git.kernel.org/linus/d397b9682c1c808344dd93b43de8750fa4d9f581|commit]] * Add software timestamping [[https://git.kernel.org/linus/aa4e689ed1a7b5c1a479a57f05da0a340b1f8d0c|commit]] * virtio_net: ethtool tx napi configuration [[https://git.kernel.org/linus/0c465be183c7c57a26446df6ea96d8676b865f92|commit]] = Architectures = * ARM * device tree sources * Two boards get added for TI OMAP: [[https://www.moxa.com/product/UC-2100.htm|Moxa UC-2101]] is an industrial computer [[https://git.kernel.org/linus/30fd611af55c476b1a1c96ce87cde25206146ba4|commit]], [[https://git.kernel.org/linus/7f4ddf50c92b6a1d8f25a2a610c3a75785f77a1e|commit]]; [[https://shop.goldelico.com/wiki.php?page=GTA04A5|GTA04A5]] is a minor variation of the motherboards of the GTA04 phone [[https://git.kernel.org/linus/d2eaf949d2c35aefa1c6e29a7d087efcb0eb07f2|commit]] * [[https://www.solid-run.com/marvell-armada-family/clearfog-gt-8k/|Clearfog]] is a nice little board for quad-core Marvell Armada 8040 network processor [[https://git.kernel.org/linus/a6120833272c03693c6e027f3a0313c7ca8100ae|commit]] * Two additional server boards come with the Aspeed baseboard management controllers: Stardragon4800 [[https://git.kernel.org/linus/c8551f6f3e8ce0a8183ccfe466d3ff6d7c915ab5|commit]] is an arm64 reference platform made by HXT (based on Qualcomm's server chips), and TiogaPass [[https://git.kernel.org/linus/a7eb26392b893bff92b1eb6483f4af3d2eb19510|commit]], [[https://git.kernel.org/linus/3368e06e2a91a65cff59e520acc51b9adf4900bf|commit]] is an Open Compute mainboard with x86 CPUs. Both use the ARM11 based AST2500 chips in the BMC * NXP i.MX usually sees a lot of new boards each release. This time there we only add one minor variant: ConnectCore 6UL SBC Pro [[https://git.kernel.org/linus/742fdc0f2270ec2988518f9d7d629c4415048178|commit]] uses the same SoM design as the ConnectCore 6UL SBC Express added later. However, there is a new chip, the i.MX6ULZ, which is an even smaller variant of the i.MX6ULL, with features removed. There is also support for the reference board design, the i.MX6ULZ 14x14 EVK [[https://git.kernel.org/linus/c90dec00cc84942614bc41f75dc24a87b6d5763b|commit]], [[https://git.kernel.org/linus/04007fe4c65f4cf3133dd256d9fd82169b7f2f22|commit]] * A new Raspberry Pi variant gets added, this one is the CM3 compute module based on bcm2837, it was launched in early 2017 but only now added to the kernel, both as 32-bit and as 64-bit files, as we tend to do for Raspberry Pi [[https://git.kernel.org/linus/a54fe8a6cf66828499b121c3c39c194b43b8ed94|commit]] * On the Allwinner side, everything is again about cheap development boards, usually of the "Fruit Pi" variety. The new ones this time are: [[http://www.orangepi.org/OrangePiZeroPlus2/|Orange Pi Zero Plus2]] [[https://git.kernel.org/linus/cd3f03df13d4eb1e727fab4a8a20d43eb392c34f|commit]], [[http://www.orangepi.org/OrangePiOneplus/|Orange Pi One Plus]] [[https://git.kernel.org/linus/0b1ea6f3573a5f68c9a79729c0e4d78c1d1bef36|commit]], [[https://www.pine64.org/?product=pine-a64-lts|Pine64 LTS]] [[https://git.kernel.org/linus/b3ee15a509ffd7473b77b21cb921b3128efdd005|commit]], [[http://www.banana-pi.org/m2plus.html|Banana Pi M2+ H5]] [[https://git.kernel.org/linus/80c21c8c8b8d0f80fe5e06e3d4c631f0ab42b693|commit]], [[https://git.kernel.org/linus/6eeb4180d4b9887b6bc8bbe0a22c1ce3634417f0|commit]]. The last one of these is now a 64-bit version of the earlier Banana Pi M2+ H3, with the same board layout. * For Rockchips, we get another variant of the 32-bit Asus Tinker board, the model 'S' based on rk3288 [[https://git.kernel.org/linus/186b45657b244ce865e01b65d73868a48252e1ff|commit]], and three now boards based on the popular RK3399 chip: [[https://libre.computer/products/boards/roc-rk3399-pc/|ROC-RK3399-PC]] [[https://git.kernel.org/linus/8bb878cf20ae10809c36db96993bfce7026d062b|commit]], [[https://www.96boards.org/product/rock960/|Rock960]] [[https://git.kernel.org/linus/75d038565794994a9e4a2581b9a54b3f777bdd86|commit]], [[https://www.pine64.org/?page_id=61454|RockPro64]] [[https://git.kernel.org/linus/e4f3fb4909677c33f97a871af56b9115f3e178b4|commit]]. These are all quite powerful boards with lots of RAM and I/O, and the RK3399 is the same chip used in several Chromebooks. Finally, we get support for the PX30 (aka rk3326) chip, which is based on the low-end 64-bit Cortex-A35 CPU core. So far, only the evaluation board is supported [[https://git.kernel.org/linus/7053e06b1422a60550c3e8a5e228f110c582ce26|commit]], [[https://git.kernel.org/linus/4afbce842a5c5eb413142e267c9ff56cc6ee6b91|commit]] * One more Banana Pi is added with a Mediatek chip: [[http://www.banana-pi.org/r64.html|Banana Pi R64]] is based on the MT7622 WiFi router platform, and the first product the arm maintainer has seen with a 64-bit Mediatek chip in that market [[https://git.kernel.org/linus/0b6286dd96c072d742a9d119e25a5cdae3f65e4d|commit]] * For HiSilicon, we gain support for the Hi3670 SoC [[https://git.kernel.org/linus/dd8c7b78c11bac66083ec2ff0d5d7285f001cbf6|commit]] and HiKey 370 development board [[https://git.kernel.org/linus/5510ee99c0deb0c0235acee6498a6745c8317df1|commit]], which are similar to the Hi3660 and Hikey 360 respectively, but add support for an NPU * Amlogic gets initial support for the Meson-G12A chip (S905D2) [[https://git.kernel.org/linus/9c8c52f7cb4f3b604bb9836947dadfbb255f465f|commit]], another quad-core Cortex-A53 SoC, and its evaluation platform. On the 32-bit side, we gain support for an actual end-user product, the [[https://endlessos.com/computers/|Endless Computers Endless Mini based on Meson8b (S805)]] [[https://git.kernel.org/linus/bbedc1f1d90e33803001ceb8d9585b2f04fc10d0|commit]] * Qualcomm adds support for their MSM8998 SoC and evaluation platform. This chip is commonly known as the Snapdragon 835, and is used in high-end phones as well as low-end laptops [[https://git.kernel.org/linus/4807c71cc6886f127abbfbfe912c8bf5015e3798|commit]] * For Renesas, a very bare support for the r8a774a1 (RZ/G2M) is added [[https://git.kernel.org/linus/7f0e99cc916933ecd7fd407e2eb42448198e0404|commit]], [[https://git.kernel.org/linus/f37d211c687588328c083f4523c4a26620dc5bb6|commit]], [[https://git.kernel.org/linus/90493b09df41a9c1dd0bf315e81d03b4212384f9|commit]], [[https://git.kernel.org/linus/5afa67792d0a25d5642cd6929ed0f92b5e7f5076|commit]] but no boards for this one. However, we do add boards for the previously added r8a77965 (R-Car M3-N): the M3NULCB Kingfisher [[https://git.kernel.org/linus/83ff28c74b525aa33f42b829538017d3e8658e69|commit]] and the M3NULCB Starter Kit Pro [[https://git.kernel.org/linus/c41fc11850782c2e4115af683793bbb111c2d0ff|commit]] * While we have lots of DT changes for NVIDIA to update the existing files, the only board that gets added is the Toradex Colibri T20 on Colibri Evaluation Board for the old Tegra2 [[https://git.kernel.org/linus/fee8cdc2df088fa2ee4b7f86a803918a3664a26b|commit]] * Synaptics add support for their AS370 SoC, which is part of the (formerly Marvell) Berlin line of set-top-box chips used e.g. in the various Google Chromecast. Only the .dtsi gets added at this point, no actual machines [[https://git.kernel.org/linus/087682f5a75bec349cdcb34c29384a051587aa99|commit]] * mvebu: Add device tree for db-88f6820-amc board [[https://git.kernel.org/linus/354c97a9042fd2588f47283910f2e487ab17593f|commit]] * shmobile: Add basic RZ/A2 SoC support [[https://git.kernel.org/linus/332df9828e94d4288825584638b7df6ad4c1ff38|commit]] * shmobile: r8a7744: Basic SoC support [[https://git.kernel.org/linus/bc8871536246e489407a7114a597c0a2a72de895|commit]] * u300: Delete dummy SPI chip [[https://git.kernel.org/linus/23b4f8b184f5546180851259dea2a8e8ddc71ac3|commit]] * imx6qdl: Add Engicam i.Core 1.5 MX6 [[https://git.kernel.org/linus/37c045d25e90038682b845de0a1db43c8301694d|commit]] * amlogic: add meson-canvas driver [[https://git.kernel.org/linus/d4983983d98710e4927fdb8de8e987c303b3fba3|commit]] * coresight: Add support for CLAIM tag protocol [[https://git.kernel.org/linus/2478a6ae4a6a4c8e3f7e9f6f849dffe92e5238e1|commit]] * coresight: etm-perf: Add support for ETR backend [[https://git.kernel.org/linus/22f429f19c4135d51e9dcaf360c0920e32aac7f9|commit]] * crypto: ghash-ce: implement support for 4-way aggregation [[https://git.kernel.org/linus/00227e3a1d0855e9777cf53c52b842503435e22b|commit]] * KVM: Enable 32 bits kvm vcpu events support [[https://git.kernel.org/linus/58bf437ff64eac8aca606e42d7e4623e40b61fa1|commit]] * ARM64 * (FEATURED) Support for Common Not Private (CnP) translations allowing threads of the same CPU to share the TLB entries [[https://git.kernel.org/linus/5ffdfaedfa0aba3f5db0fbb8ed4f3192be2b39b8|commit]], [[https://git.kernel.org/linus/ab510027dc4dbd1eeb611a34b0cda8b21fcde492|commit]] * Support for the new ARMv8.5 PSTATE.SSBS bit which can be used to mitigate Spectre-v4 dynamically without trapping to EL3 firmware [[https://git.kernel.org/linus/ca7f686ac9fe87a9175696a8744e095ab9749c49|commit]], [[https://git.kernel.org/linus/d71be2b6c0e19180b5f80a6d42039cc074a693a2|commit]], [[https://git.kernel.org/linus/2d1b2a91d56b19636b740ea70c8399d1df249f20|commit]], [[https://git.kernel.org/linus/0bf0f444b2c49241b2b39aa3cf210d7c95ef6c34|commit]], [[https://git.kernel.org/linus/8f04e8e6e29c93421a95b61cad62e3918425eac7|commit]], [[https://git.kernel.org/linus/7c36447ae5a090729e7b129f24705bb231a07e0b|commit]], [[https://git.kernel.org/linus/b8925ee2e12d1cb9a11d6f28b5814f2bfa59dce1|commit]] * Add accelerated crc32 routines [[https://git.kernel.org/linus/7481cddf29ede204b475facc40e6f65459939881|commit]] * crypto: aes-blk: add support for CTS-CBC mode [[https://git.kernel.org/linus/dd597fb33ff0d2a158d7dd098be6dc849b7c2bcc|commit]] * kvm: Allow tuning the physical address size for VM [[https://git.kernel.org/linus/233a7cb235318223df8133235383f4c595c654c1|commit]] * X86 * (FEATURED) Add x86 architecture support for a new processor: Hygon Dhyana Family 18h [[https://git.kernel.org/linus/c9661c1e80b609cd038db7c908e061f0535804ef|commit]] * (FEATURED) Make lazy TLB mode even lazier: On most workloads, the number of context switches far exceeds the number of TLB flushes sent. Optimizing the context switches, by always using lazy TLB mode, speeds up those workloads. This results in about a 1% reduction in CPU use on a two socket Broadwell system running a memcache like workload [[https://git.kernel.org/linus/5462bc3a9a3c38328bbbd276d51164c7cf21d6a8|commit]], [[https://git.kernel.org/linus/12c4d978fd170ccdd7260ec11f93b11e46904228|commit]], [[https://git.kernel.org/linus/c3f7f2c7eba1a53d2e5ffbc2dcc9a20c5f094890|commit]], [[https://git.kernel.org/linus/7d49b28a80b830c3ca876d33bedc58d62a78e16f|commit]], [[https://git.kernel.org/linus/016c4d92cd16f569c6485ae62b076c1a4b779536|commit]], [[https://git.kernel.org/linus/97807813fe7074ee865d6bc1df1d0f8fb878ee9d|commit]], [[https://git.kernel.org/linus/145f573b89a62bf53cfc0144fa9b1c56b0f70b45|commit]] * (FEATURED) Remedy the STIBP/IBPB overhead [[https://git.kernel.org/linus/8eb729b77faf83ac4c1f363a9ad68d042415f24c|commit]], [[https://git.kernel.org/linus/24848509aa55eac39d524b587b051f4e86df3c12|commit]], [[https://git.kernel.org/linus/b86bda0426853bfe8a3506c7d2a5b332760ae46b|commit]], [[https://git.kernel.org/linus/a8f76ae41cd633ac00be1b3019b1eb4741be3828|commit]], [[https://git.kernel.org/linus/34bce7c9690b1d897686aac89604ba7adc365556|commit]], [[https://git.kernel.org/linus/26c4d75b234040c11728a8acb796b3a85ba7507c|commit]], [[https://git.kernel.org/linus/01daf56875ee0cd50ed496a09b20eb369b45dfa5|commit]], [[https://git.kernel.org/linus/c5511d03ec090980732e929c318a7a6374b5550e|commit]], [[https://git.kernel.org/linus/dbe733642e01dd108f71436aaea7b328cb28fd87|commit]], [[https://git.kernel.org/linus/321a874a7ef85655e93b3206d0f36b4a6097f948|commit]], [[https://git.kernel.org/linus/a74cfffb03b73d41e08f84c2e5c87dec0ce3db9f|commit]], [[https://git.kernel.org/linus/130d6f946f6f2a972ee3ec8540b7243ab99abe97|commit]], [[https://git.kernel.org/linus/15d6b7aab0793b2de8a05d8a828777dd24db424e|commit]], [[https://git.kernel.org/linus/8770709f411763884535662744a3786a1806afd3|commit]], [[https://git.kernel.org/linus/30ba72a990f5096ae08f284de17986461efcc408|commit]], [[https://git.kernel.org/linus/495d470e9828500e0155027f230449ac5e29c025|commit]], [[https://git.kernel.org/linus/fa1202ef224391b6f5b26cdd44cc50495e8fab54|commit]], [[https://git.kernel.org/linus/5bfbe3ad5840d941b89bcac54b821ba14f50a0ba|commit]], [[https://git.kernel.org/linus/ff16701a29cba3aafa0bd1656d766813b2d0a811|commit]], [[https://git.kernel.org/linus/5635d99953f04b550738f6f4c1c532667c3fd872|commit]], [[https://git.kernel.org/linus/4c71a2b6fd7e42814aa68a6dec88abf3b42ea573|commit]], [[https://git.kernel.org/linus/46f7ecb1e7359f183f5bbd1e08b90e10e52164f9|commit]], [[https://git.kernel.org/linus/e6da8bb6f9abb2628381904b24163c770e630bac|commit]], [[https://git.kernel.org/linus/6d991ba509ebcfcc908e009d1db51972a4f7a064|commit]], [[https://git.kernel.org/linus/6893a959d7fdebbab5f5aa112c277d5a44435ba1|commit]], [[https://git.kernel.org/linus/9137bb27e60e554dab694eafa4cca241fa3a694f|commit]], [[https://git.kernel.org/linus/7cc765a67d8e04ef7d772425ca5a2a1e2b894c15|commit]], [[https://git.kernel.org/linus/6b3e64c237c072797a9ec918654a60e3a46488e2|commit]], [[https://git.kernel.org/linus/55a974021ec952ee460dc31ca08722158639de72|commit]] * qspinlock: Improve determinism for x86 [[https://git.kernel.org/linus/53bf57fab7321fb42b703056a4c80fc9d986d170|commit]], [[https://git.kernel.org/linus/756b1df4c2c82a1cdffeafa9d2aa76c92e7fb405|commit]], [[https://git.kernel.org/linus/288e4521f0f6717909933116563e66bb894ae2af|commit]], [[https://git.kernel.org/linus/7aa54be2976550f17c11a1c3e3630002dea39303|commit]] * (FEATURED) Harden spectrev2 userspace-userspace protection [[https://git.kernel.org/linus/dbfe2953f63c640463c630746cd5d9de8b2f63ae|commit]], [[https://git.kernel.org/linus/53c613fe6349994f023245519265999eed75957f|commit]], [[https://git.kernel.org/linus/bb4b3b7762735cdaba5a40fd94c9303d9ffa147a|commit]] * Remove minimal retpoline support [[https://git.kernel.org/linus/ef014aae8f1cd2793e4e014bbb102bed53f852b7|commit]] * EDAC * altera: Add Stratix10 peripheral support [[https://git.kernel.org/linus/064acbd4f4ab509dd3f31e1a2d1e04a43d5b1009|commit]] * amd64: Add Family 17h, models 10h-2fh support [[https://git.kernel.org/linus/8960de4a5ca7980ed1e19e7ca5a774d3b7a55c38|commit]] * amd64: Add Hygon Dhyana support [[https://git.kernel.org/linus/c4a3e94641449362ee970f521a2cdb0e8cd08690|commit]] * crypto: remove SHA multibuffer routines and mcryptd [[https://git.kernel.org/linus/ab8085c130edd65be0d95cc95c28b51c4c6faf9d|commit]] * perf * intel/uncore: Add more IMC PCI IDs for KabyLake and CoffeeLake CPUs [[https://git.kernel.org/linus/c10a8de0d32e95b0b8c7c17b6dc09baea5a5a899|commit]] * intel/uncore: Support CoffeeLake 8th CBOX [[https://git.kernel.org/linus/4d47d6407ac7b4b442a4e717488a3bb137398b6c|commit]] * intel: Add a separate Arch Perfmon v4 PMI handler [[https://git.kernel.org/linus/af3bdb991a5cb57c189d34aadbd3aa88995e0d9f|commit]] * platform * Add Intel AtomISP2 dummy / power-management driver [[https://git.kernel.org/linus/49ad712afa88c502831d37f7089d98eac441fb80|commit]] * Add LG Gram laptop special features driver [[https://git.kernel.org/linus/dbf0c5a6b1f8e7bec5e17baa60a1e04c28d90f9b|commit]] * stm class: Add support for MIPI SyS-T protocol [[https://git.kernel.org/linus/d69d5e83110fedd15ff463ed2d5320ab3dec75f1|commit]], [[https://git.kernel.org/linus/d279a38020d2483cb75f5f82f5e4ab5f73bc94f2|commit]], [[https://git.kernel.org/linus/25e3c0062a089544a861f72287a1fa3ce34b00b7|commit]], [[https://git.kernel.org/linus/e967b8bdd462def829b1722ea2f0babdc9806bc2|commit]], [[https://git.kernel.org/linus/4cb3653df0cd0214798dc79fc13db026fbc8aa39|commit]], [[https://git.kernel.org/linus/a02509f301c68c9a7f01d75d7d326f7a9b81a630|commit]], [[https://git.kernel.org/linus/c7fd62bc69d0224877a49383e606f0fe52cba741|commit]], [[https://git.kernel.org/linus/cb6102bd99efe35f016dc6d7282e681e6dbde154|commit]], [[https://git.kernel.org/linus/24c7bcb6a74914b529859a07fde27a1a55e13ade|commit]], [[https://git.kernel.org/linus/3ef230370e05a7a9606377cfcd983b0133bc1ac4|commit]], [[https://git.kernel.org/linus/39f10239df751e4ec5190ef851a3e71c052c2539|commit]], [[https://git.kernel.org/linus/95323943b791617c892738e8d2762c6661bd4382|commit]] * hyper-v * Allow PV qspinlock work on Hyper-V [[https://git.kernel.org/linus/f726c4620df39055f060537a8ed183c18a2c504b|commit]], [[https://git.kernel.org/linus/3a025de64bf89c84a79909069e3c24ad9e710d27|commit]] * PV IPI support for Windows guests [[https://git.kernel.org/linus/9170200ec0ebad70e5b9902bc93e2b1b11456a3b|commit]], [[https://git.kernel.org/linus/a812297c4fd9c2c9337b451ad8d66083c5b24ceb|commit]], [[https://git.kernel.org/linus/1779a39f786397760ae7a7cc03cf37697d8ae58d|commit]], [[https://git.kernel.org/linus/87ee613d076351950b74383215437f841ebbeb75|commit]], [[https://git.kernel.org/linus/0b0a31badb2d98967175c6812ac81db20f9a67fc|commit]], [[https://git.kernel.org/linus/2cefc5feb80cf4237890a6a4582a0d20e50d9ced|commit]], [[https://git.kernel.org/linus/214ff83d4473a7757fa18a64dc7efe3b0e158486|commit]] * KVM * nVMX: initial implementation of Enlightened VMCS for nested Hyper-V on KVM. Using it helps to spare 1500 cpu cycles for nested vmexit (tight cpuid loop in WS2016 with Hyper-V role on KVM: 15200 cycles -> 13700 cycles) [[https://git.kernel.org/linus/72bbf9358c3676bd89dc4bd8fb0b1f2a11c288fc|commit]], [[https://git.kernel.org/linus/5d7a6443368e48ca041fea086e345420c027a8cd|commit]], [[https://git.kernel.org/linus/57b119da3594f5145a64fdebe0ac9ee0cc65f371|commit]], [[https://git.kernel.org/linus/945679e301ea0de1148b64c7c3273d92059e7231|commit]], [[https://git.kernel.org/linus/b8bbab928fb187530d6bb0932b86661f99e3a01d|commit]], [[https://git.kernel.org/linus/c4ebd6295ab730bf922c96d3c4045c3a84fd1cf7|commit]], [[https://git.kernel.org/linus/12e0c6186ba44bb6194cf5d2eda8f46880126587|commit]], [[https://git.kernel.org/linus/a7c42bb6da6b1b54b2e7bd567636d72d87b10a79|commit]], [[https://git.kernel.org/linus/a1b0c1c64dfef0cff8555bb708bfc5d7c66c6ca4|commit]], [[https://git.kernel.org/linus/1e7ecd1b3d21a6302f3ee4a3720f682eb2467a3c|commit]], [[https://git.kernel.org/linus/8cab6507f64eff0ccfea01fccbc7e3e05e2aaf7e|commit]], [[https://git.kernel.org/linus/c939989d74e27f44229a51d8fe96b5c297965bfa|commit]], [[https://git.kernel.org/linus/18178ff862170ee4c9fd7450173c6fba9e3c4c3a|commit]] * Add coalesced pio support [[https://git.kernel.org/linus/0804c849f1df0992d39a37c4fc259f7f8b16f385|commit]] * Add a new per-VM capability ({{{KVM_CAP_EXCEPTION_PAYLOAD}}}) will be introduced. When this capability is enabled by userspace, the faulting linear address will be included with the information about a pending #PF in L2, and the "new DR6 bits" will be included with the information about a pending #DB in L2. This ancillary exception information is carried in a new "payload" field [[https://git.kernel.org/linus/bba9ce58d9cb7ba9e121627108eca986760ad0e8|commit]], [[https://git.kernel.org/linus/c851436a34cad09388f1303e11ccb6b9420e5692|commit]], [[https://git.kernel.org/linus/59073aaf6de0d2dacc2603cee6d1d6cd5592ac08|commit]], [[https://git.kernel.org/linus/91e86d225ef3da80d33a8fd7695316c31c0810c9|commit]], [[https://git.kernel.org/linus/da998b46d244767505e41d050dcac5e4d03ba96f|commit]], [[https://git.kernel.org/linus/f10c729ff965283d2086aa03d139dcf82da86a96|commit]], [[https://git.kernel.org/linus/c4f55198c7c2b87909b166ffc2f6b68d9af6766c|commit]] * VMX: enable nested virtualization by default [[https://git.kernel.org/linus/1e58e5e59148916fa43444a406335a990783fb78|commit]] * CSKY * (FEATURED) New architecture, C-SKY [[https://git.kernel.org/linus/da551281947cb2c0ab6e0045529a706af5d79584|commit]], [[https://git.kernel.org/linus/735ee005c371b2d8d1dbf0542590d17f1e0a0b2f|commit]], [[https://git.kernel.org/linus/991069865796f8ad31ee54aca8a0f1b7a522e94b|commit]], [[https://git.kernel.org/linus/2ce36bfa6a0904524baed699ad78706e50295f84|commit]], [[https://git.kernel.org/linus/c5af58b769113c4045209973052db3e3a543ee43|commit]], [[https://git.kernel.org/linus/a0ae62806ff495b60235cc4f2fee3f3ab6a265c9|commit]], [[https://git.kernel.org/linus/9d056df0924edbb0a30c85a1c1d3153c1229ec47|commit]], [[https://git.kernel.org/linus/dd3ef10ea295f8f4181e6044fb19444cad7c6aab|commit]], [[https://git.kernel.org/linus/e38a5272baaa81b31680389efdec0c9008e17446|commit]], [[https://git.kernel.org/linus/013de2d6671d89de3397904749c86a69ac0686f7|commit]], [[https://git.kernel.org/linus/e9564df753fd547fcbcd4fd10015c3b1213ef452|commit]], [[https://git.kernel.org/linus/081860b970adb69888734df0c8aa849b00ea7254|commit]], [[https://git.kernel.org/linus/00a9730e1007c6cc87a7c78af2f24a4105d616ee|commit]], [[https://git.kernel.org/linus/4859bfca11c7d63d55175bcd85a75d6cee4b7184|commit]], [[https://git.kernel.org/linus/9143a9359d051142081b26c3726c928f965c5eb7|commit]], [[https://git.kernel.org/linus/7c768f845104b7c96954ad536be29797eff6a434|commit]], [[https://git.kernel.org/linus/c32e64e852f3f5c0fd709f84bc94736840088375|commit]] * PARISC * Added alternative infrastructre [[https://git.kernel.org/linus/3847dab77421867fbc77faacb2f377d44e729e1b|commit]] * Include compressed vmlinux file in vmlinuz boot kernel [[https://git.kernel.org/linus/34c201ae49fe9e0bf3b389da5869d810f201c740|commit]] * Remove the dead ccio-rm-dma driver [[https://git.kernel.org/linus/7c4ba3d38a3b013b79c3c07a639504cdc68fefdf|commit]] * POWERPC * Maintain a cache of SLB entries for each process and preload them on context switch. Leading to a 27% speedup for our context switch benchmark on Power9 [[https://git.kernel.org/linus/5434ae74629af58ad0fc27143a9ea435f7734410|commit]], [[https://git.kernel.org/linus/89ca4e126a3f519ccbd42670b38d78700802c10b|commit]] * Add stack protector support for 32 and 64-bit, with a per-task canary [[https://git.kernel.org/linus/06ec27aea9fc84d9c6d879eb64b5bcf28a8a1eb7|commit]], [[https://git.kernel.org/linus/c3ff2a5193fa61b1b284cfb1d79628814ed0e95a|commit]] * Add support for physical memory up to 2PB in the linear mapping on 64-bit Book3S. We only support up to 512TB as regular system memory, otherwise the percpu allocator runs out of vmalloc space [[https://git.kernel.org/linus/4ffe713b7587b14695c9bec26a000fc88ef54895|commit]] * Enable THP migration on 64-bit Book3S machines (eg. Power7/8/9) [[https://git.kernel.org/linus/a0820ff33451aa1a12ec66812e229ac58beb3f24|commit]] * Add support for PTRACE_SYSEMU and PTRACE_SYSEMU_SINGLESTEP [[https://git.kernel.org/linus/5521eb4bca2db733952f068c37bdf3cd656ad23c|commit]] * Add support for function error injection [[https://git.kernel.org/linus/7cd01b08d35f1b7d55686ed8cd57c94d3406ec8f|commit]] * pseries: Add driver for PAPR SCM regions [[https://git.kernel.org/linus/b5beae5e224f1c72c4482b0ab36fc3d89481a6b2|commit]] * pseries: PAPR persistent memory support [[https://git.kernel.org/linus/4c5d87db497832c493ed296157bd1749dddc69f1|commit]] * KVM * Nested HV KVM support for radix guests on POWER9. The performance is much better than with PR KVM. Migration and arbitrary level of nesting is supported [[https://git.kernel.org/linus/aa069a996951f3e2e38437ef0316685a5893fc7e|commit]], [[https://git.kernel.org/linus/83a055104eaf89589582659737ff5bf6eed63ac4|commit]], [[https://git.kernel.org/linus/360cae313702cdd0b90f82c261a8302fecef030a|commit]] * Add a debugfs file to dump radix mappings [[https://git.kernel.org/linus/9a94d3ee2d159927c0f8e5078228eadbce8dda43|commit]] * RISC-V * Add futex support [[https://git.kernel.org/linus/b90edb33010bcfb9a0d74681be2cdd52300f1e69|commit]] * Allow to disable FPU support [[https://git.kernel.org/linus/9671f7061433e2c58b9894093eada1898595b85d|commit]] * Show CPU ID and Hart ID separately in /proc/cpuinfo [[https://git.kernel.org/linus/4b26d22fdff1e39647cc5952b01d329e83dedfe1|commit]] * Add FP register ptrace support for gdb [[https://git.kernel.org/linus/b8c8a9590e4fde82f8c3ee06a521763e6f21e9c8|commit]] * S390 * Extend the pkey API to provide random protected keys, this is useful for encrypted swap device with ephemeral protected keys [[https://git.kernel.org/linus/a45a5c7d36a53646094c2ba4970777a20ec0ec42|commit]], [[https://git.kernel.org/linus/cb26b9ff7187ea79698f5e872d713f30affcc0a3|commit]], [[https://git.kernel.org/linus/fb1136d6580c93af3ec33bf7a5621d980a711f24|commit]], [[https://git.kernel.org/linus/d632c0478d64427cfbca999955e02b26986ae09e|commit]], [[https://git.kernel.org/linus/af504452d10ece7c6d68bc9f90f478ebecd7ce76|commit]] * Add KASAN support [[https://git.kernel.org/linus/78333d1f908a25c9565d7518966cef717279fe32|commit]], [[https://git.kernel.org/linus/5dff03813f46f267bc1ecb334901e916346692ff|commit]], [[https://git.kernel.org/linus/9e8df6daed9e59153624e52aa4832ddaf39f1ae8|commit]] * Add support for virtually mapped kernel stacks [[https://git.kernel.org/linus/ce3dc447493ff4186b192b38d723ab5e8c1eb52f|commit]] * zcrypt: Improved access control for the zcrypt driver, multiple device nodes can now be created with different access control lists [[https://git.kernel.org/linus/00fab2350e6b91e57b3cdcd5d9f01056775a921d|commit]], [[https://git.kernel.org/linus/aa55bf5f022271903fe8a71e08be3e217e1b6363|commit]] * vfio-ap: Introduce a new AP device driver. This driver grants access to Adjunct Processor (AP) devices via the VFIO mediated device interface [[https://git.kernel.org/linus/1fde573413b549d52183382e639c1d6ce88f5959|commit]], [[https://git.kernel.org/linus/e06670c5fe3b3a55547e2caeaec34acfdb4885e3|commit]], [[https://git.kernel.org/linus/cd8a377e3b40002cd7983b53f384456393908b7e|commit]], [[https://git.kernel.org/linus/258287c994de8f2f52430b8d79b4fdf2c95f8c91|commit]], [[https://git.kernel.org/linus/65f06713d3fa0e4125f59ad5b9d6239109b1d7fc|commit]], [[https://git.kernel.org/linus/81b2b4b76a733ee479af359db59e1c91e3aad4cd|commit]], [[https://git.kernel.org/linus/96d152bdc987ad76da49be350dc9f8ab1647e801|commit]], [[https://git.kernel.org/linus/3b1eab7fb9da69c9af129058ed5aebb93d40d623|commit]], [[https://git.kernel.org/linus/3211da0c0b549f18d7b049abcffc73ca55ae51fd|commit]], [[https://git.kernel.org/linus/46a7263d4746a2659edafcb885e91e58bb6d3a2e|commit]] * qeth * Add TSO support for L2 devices [[https://git.kernel.org/linus/0aef8392d257288a7b6a905d19d126bc98f14474|commit]] * Add support for IPv6 TSO [[https://git.kernel.org/linus/82bf5c0867f66440a98341441fb593fe019ea361|commit]] * Report 25Gbit link speed [[https://git.kernel.org/linus/54e049c227d9968ff6a7d80aae5fec27b54d39da|commit]] * speed up TSO transmission [[https://git.kernel.org/linus/356156b60affae4372ed9d3dc8936ff22e8849b0|commit]] * KVM: s390: interface to clear CRYCB masks [[https://git.kernel.org/linus/42104598ef2e8c3ce532ebec891c9edec161e508|commit]] * MIPS * mscc: add DT for Ocelot PCB120 [[https://git.kernel.org/linus/116edf6e5239ee834ae4a8c122f319a298ef052b|commit]] * SPARC * Add support for perf annotate [[https://git.kernel.org/linus/0ab41886648bb75b951bd41d8b5cecaca8e0ad66|commit]] * Add support for perf jitdump [[https://git.kernel.org/linus/d87b9790b3deb7601872d34fd05af3da78147583|commit]] = Drivers = == Graphics == * (FEATURED) udmabuf device to turn memfd regions into dma-buf [[https://git.kernel.org/linus/fbb0de795078190a9834b3409e4b009cfb18a6d4|commit]] * Add per-plane pixel blend mode property [[https://git.kernel.org/linus/a5ec8332d4280500544e316f76c04a7adc02ce03|commit]] * amdgpu * Merge amdkfd and amdgpu into one module [[https://git.kernel.org/linus/04d5e2765802241b54ee93d1e655123c39fa7385|commit]] * Add DisplayPort CEC-Tunneling-over-AUX support [[https://git.kernel.org/linus/e86e894751f0420fbe05d834e02a6777c4b4ac3f|commit]] * (FEATURED) Picasso APU support + VCN dynamic powergating [[https://git.kernel.org/linus/367b013ce0064c782cec784233805eeb67417747|commit]], [[https://git.kernel.org/linus/1a84d967c180d421a9182a227fc1fee3701cc7d6|commit]] * (FEATURED) Raven2 APU support [[https://git.kernel.org/linus/0e3d73f1a440eaca270a028bff51649ae99df113|commit]] * (FEATURED) Vega20 enablement + kfd support [[https://git.kernel.org/linus/ec5b2020726bffc893d5bddca39502e116da1fbc|commit]], [[https://git.kernel.org/linus/989b68232c7906ab4fb49f6ed5fd451ee22fc41e|commit]], [[https://git.kernel.org/linus/a6637313c7bf013d30fc7d501a19a93fddab7b5f|commit]], [[https://git.kernel.org/linus/6dddaeef4f9e0445a75261f88e29de5a24e302c6|commit]], [[https://git.kernel.org/linus/9bd206f89fa758f130fde09bf6f876f955ed989a|commit]], [[https://git.kernel.org/linus/22a3a2941b93e5095ea63f6ab01d96cbfd4cd3f4|commit]], [[https://git.kernel.org/linus/d5bf26539494d16dfabbbea0854a47d202ea15c0|commit]] * ACP powergating improvements [[https://git.kernel.org/linus/982976d92f17aa8ff5d7a4d09fab4608795d12f3|commit]], [[https://git.kernel.org/linus/be2d6aa51e66625f93d3ba1eb817cd33d8136c60|commit]], [[https://git.kernel.org/linus/3a54d2c8951113171655425bd173f43bbcb531c5|commit]] * ABGR/XBGR display support [[https://git.kernel.org/linus/a69e40fd824ddae4f515ca8e754882bebf644ed4|commit]], [[https://git.kernel.org/linus/bcd47f60ab65c780eef44cc09c0e264453dd455e|commit]], [[https://git.kernel.org/linus/00ecc6e6d4eeba9681ec91f9601a9ed1a68a9e7f|commit]] * VCN jpeg support [[https://git.kernel.org/linus/f10d9102de2816050af650da2c8f8b62535bbb72|commit]] * xGMI support [[https://git.kernel.org/linus/fb30fc59a245512b94a065ee1557d7e1ae88484a|commit]], [[https://git.kernel.org/linus/ae9a25aea7f33573f56a422818bfead12aa8bfd6|commit]] * Ycbcr 4:2:0 support [[https://git.kernel.org/linus/182388fcc4c820b34038f474c1a47e9700cd3c09|commit]] * Stereo 3D support in VSC [[https://git.kernel.org/linus/99267ce71a1faabce9d8063d37e1ee7dd240b6eb|commit]] * Support reading hw state from debugfs file [[https://git.kernel.org/linus/46659a83e4662ed92000ec13445b8c0ca96fd2cc|commit]] * Implement AMDGPU_PP_SENSOR_MIN/MAX_FAN_RPM so user can query rpm range [[https://git.kernel.org/linus/d5f480372ca485806443afca50ef024623f8eb03|commit]] * Add DMCU firmware loading for Raven (used for ABM and PSR) [[https://git.kernel.org/linus/a94d5569b23209306220fabb2a8d42d0f966d318|commit]][[https://git.kernel.org/linus/6b7eab2ce60d2363b0e4bfea6667439b926bcf54|commit]], [[https://git.kernel.org/linus/01fcfc83fe07ae42af707c3217f533fb350d4c19|commit]] * Add support for LVDS [[https://git.kernel.org/linus/11c3ee48bd7c232c0a750b4dde8ee48f315dcdf3|commit]] * Add fan RPM setting via sysfs [[https://git.kernel.org/linus/c2870527f700e919fbb543baef36032be5d626e0|commit]] * add some additional vega10 pci ids [[https://git.kernel.org/linus/2244b5887c6865b9e9cf14ee12a312b776aeeb58|commit]] * Add DPG mode support for vcn 1.0 [[https://git.kernel.org/linus/63e9bb1d98eff3584190295acb231e631ba5e59e|commit]] * add GDS, GWS and OA debugfs files [[https://git.kernel.org/linus/0ee8685392a642ffb381d15d9fe4445d4ec03b56|commit]] * print smc feature mask in debugfs amdgpu_pm_info [[https://git.kernel.org/linus/505f8dbb6a58873559ae38f2320f9bea4f3ab825|commit]] * Add support for hw_state logging via debugfs [[https://git.kernel.org/linus/e498eb7136042aa9a352b1039c678537f4694158|commit]] * Add get_hive_id interface in kfd2kgd [[https://git.kernel.org/linus/6ef22c39edd4b5392e57403d01028c012f3e5e5e|commit]], [[https://git.kernel.org/linus/db8b62c04b2344f17570186f8f022fb96e71d8d8|commit]] * amdkfd * Add new iolink type defines [[https://git.kernel.org/linus/aa64ca38ed8253e293b5ce24b40f31f39426e232|commit]] * Add wavefront context save state retrieval ioctl [[https://git.kernel.org/linus/5df099e8bc83f4f3af8711ee0b9b8faef359ffff|commit]] * add new vega10 pci ids [[https://git.kernel.org/linus/756e16bf79f2815e7c83a04881b5545b55a99fd3|commit]] * kfd expose the hive_id of the device through its node properties [[https://git.kernel.org/linus/0c1690e38b5e688166d009145ba0a4806f774465|commit]] * exynos * out-bridge support for LVDS bridge driver [[https://git.kernel.org/linus/8a08f671f31c9bbcbe9d333632005e58162567ca|commit]] * Samsung 16x16 tiled format support [[https://git.kernel.org/linus/d25a40a7b34602e6a71ba5b03d54a765cf8c7b0d|commit]], [[https://git.kernel.org/linus/5fb652c282f2910db9a588be053280fa20ee390e|commit]], [[https://git.kernel.org/linus/b1c7a57448307898cb3a44f5c9b0cfdff43bb633|commit]] * Plane alpha and pixel blend mode support [[https://git.kernel.org/linus/482582c0217d352f0e344f0b25ea6ce12f964351|commit]], [[https://git.kernel.org/linus/6ac99a328ee16d3f8cc253f1df62623cee3e9ea5|commit]] * intel * Turn off resource streamer API [[https://git.kernel.org/linus/08e3e21a24d23db6a4adca90f7cb40d69e09d35c|commit]] * More Icelake enablement + DMC firmware * Full PPGTT for Ivybridge, Haswell and Valleyview [[https://git.kernel.org/linus/5f9c4f95bed24c8a8ad9258ee120a910876f6eed|commit]] * DDB distribution based on resolution [[https://git.kernel.org/linus/cf1f697acb04d2e06c117436cc55e52760f1ea7c|commit]] * Add a new CFL PCI ID [[https://git.kernel.org/linus/d0e062ebb3a44b56a7e672da568334c76f763552|commit]] * Add PSR mode/revision to debugfs [[https://git.kernel.org/linus/0577ab482f46653d6210aeb1d7dc57aa5e2dbfc3|commit]] * Add debugfs support to force a downgrade to PSR1 mode [[https://git.kernel.org/linus/2ac45bdd92e0289ee2d1310f1e07b719c037c6b7|commit]] * mali-dp * Implement plane alpha and pixel blend on malidp [[https://git.kernel.org/linus/187f7f21b2a268f6eb157bd8bb703de6b0064f17|commit]] * mediatek * HDMI output support on mt2701 and mt7623 [[https://git.kernel.org/linus/0fc721b2968e3cadec520c60d2fc63498d865055|commit]] * Add dpi driver for mt2701 and mt7623 [[https://git.kernel.org/linus/d08b5ab972449b0ab494600fa985979e91e090ca|commit]] * Add support for SPDIF audio in HDMI [[https://git.kernel.org/linus/d1ef028d95ffd0f114f2d42ef4f141664abbf1f6|commit]] * nouveau * Add DisplayPort CEC-Tunneling-over-AUX support [[https://git.kernel.org/linus/46094b2baeeb5e5fe113243e689a69d56f428ec8|commit]] * Initial HDMI 2.0 support [[https://git.kernel.org/linus/4126b99e744b7a29746e201e2be6644d2edf3c56|commit]] * rockchip * PX30 support [[https://git.kernel.org/linus/570913e0b1bebec0676ac7091544a00b278e8765|commit]] * rgb output interface support [[https://git.kernel.org/linus/1f0f015151727872be866b6a5b64e07f9e7a3071|commit]] * sun4i * R40 TCON support [[https://git.kernel.org/linus/0305189afb323c1bad2be7fe713d556a9b708003|commit]] * Add support for A64 mixers [[https://git.kernel.org/linus/06f27fe9ffb7efd9902c134f1e5ceb3861a1cefd|commit]] * R40 HDMI support [[https://git.kernel.org/linus/5c5b3b0ebe6d78cad645cc010d7e8fb81ccd099b|commit]] * Add dithering support for RGB565/RGB666 LCD panels [[https://git.kernel.org/linus/f11adcecbd5f2495be7b64bcd7537515c25c7dcd|commit]] * tegra * Add Tegra194 support [[https://git.kernel.org/linus/474431968507d437d340de35b709aa3b41f8c996|commit]] * bridge * Add support for sn65dsi86 bridge driver [[https://git.kernel.org/linus/a095f15c00e2788bd83f4e9aa64ef303cae8e649|commit]] * tc358764: Add DSI to LVDS bridge driver [[https://git.kernel.org/linus/f38b7cca6d0eafef278703ddadb369322a510ca6|commit]] * vkms * GEM support [[https://git.kernel.org/linus/bb112b14af8d1910909eb132c78ddf49be907e31|commit]] * Add cursor plane support [[https://git.kernel.org/linus/c27d931d402b517336fea2b25ae951bee0249f65|commit]], [[https://git.kernel.org/linus/b8789ea71dce5fbab7b9428294759f5fc2357259|commit]] * rcar-du * Add r8a77990 and r8a77995 device support [[https://git.kernel.org/linus/122702077e4492e02de8a6257e6cb2227c617cf0|commit]] * Interlaced modes on Gen3 [[https://git.kernel.org/linus/c6e3194a3b55a9365e40c3a25f8e31afa154c26c|commit]] * D3 and E3 SoC support [[https://git.kernel.org/linus/c25c0136119990c62c160d95592714833bc214a5|commit]] * virtio-gpu * vmap support for PRIME objects [[https://git.kernel.org/linus/a03fb71716ee60d1d763f1f27773cbbaec1359ed|commit]] * Add iommu support [[https://git.kernel.org/linus/a3b815f09bb846255c458c181b8a5b1cc66891b4|commit]] * backlight * Remove ld9040 driver [[https://git.kernel.org/linus/e1c9f2eaa0fbfda0ca0d958e98fe0c458ecfa96d|commit]] * Remove s6e63m0 driver [[https://git.kernel.org/linus/64c03ab0d509d8edf6f331105b19c400b72f0832|commit]] == Storage == * nvme: Add support for P2P memory [[https://git.kernel.org/linus/e0596ab2900dfa64c0538e4aef8eec3c6f0f38eb|commit]], [[https://git.kernel.org/linus/0f238ff5cc92554fe8ddc6c3776386f31a4d38fa|commit]], [[https://git.kernel.org/linus/c6925093d0b28329ad3a486f5b0345c2c192ae9a|commit]], [[https://git.kernel.org/linus/5b2322e48c978fd91d50873491b1c3b0a3b0266b|commit]] * nvmet_fc: support target port removal with nvmet layer [[https://git.kernel.org/linus/ea96d6496ff59b2b26dc9e13dc8f57d77731eb37|commit]] * cxgb4i: add DCB support for iSCSI connections [[https://git.kernel.org/linus/b5a5fe4ef7fdfd00ac3937756d5f2fbb4e4be3a1|commit]] * myrb: Add Mylex RAID controller [[https://git.kernel.org/linus/081ff398c56cc1052091e299aae6f7f7de680853|commit]], [[https://git.kernel.org/linus/77266186397c6c782a3f670d32808a9671806ec5|commit]] * qla2xxx: Add mode control for each physical port [[https://git.kernel.org/linus/0645cb8350cdb60bfbf91caa722984b81c215add|commit]] * ufs: Add API to execute raw upiu commands [[https://git.kernel.org/linus/5e0a86eed84607432436766e3e1bb37f8318f7b2|commit]] == Drivers in the Staging area == * media: platform: Add Cedrus VPU decoder driver [[https://git.kernel.org/linus/50e761516f2b8c0cdeb31a8c6ca1b4ef98cd13f1|commit]] * comedi: add interface to ni routing table information [[https://git.kernel.org/linus/4bb90c87abbe21ea469a242c8b350ea39a459c84|commit]] * comedi: add new device-global config interface [[https://git.kernel.org/linus/d7569ad766511fe708a8bd7476baa305d1510daf|commit]] * comedi: ni_660x: Add NI PCI-6608 to list of supported devices [[https://git.kernel.org/linus/51c4ba6407ef9f5735bc6bf566211bb839892e4b|commit]] * comedi: ni_mio_common: implement global pfi, rtsi routing [[https://git.kernel.org/linus/d4961bb3d99f895fe8cf368b9765405a3f829198|commit]] * comedi: ni_mio_common: implement new routing for TRIG_EXT [[https://git.kernel.org/linus/56d0b826d39f5b04dc5df7e270539361627684de|commit]] * comedi: ni_mio_common: implement output selection of GPFO_{0, 1} [[https://git.kernel.org/linus/02d1c6e827073ebb65d9f92c169c024ae2d20ddc|commit]] * comedi: ni_routing: Add NI signal routing info [[https://git.kernel.org/linus/ba932fcfee28b6a23bb8a903ce5a2210ac861721|commit]] * comedi: tio: implement global tio/ctr routing [[https://git.kernel.org/linus/347e244884c3be1f5bce1d93730f0c32efabba99|commit]] * dgnc: delete the driver [[https://git.kernel.org/linus/3268357865d6541f11c2e759525e090f79210793|commit]] * vboxvideo: Atomic phase 3: Switch last bits over to atomic [[https://git.kernel.org/linus/438340aa20975ffd37a685aa99c610b63f49a7ba|commit]] * iio:ad7606: Add support for the ad7605-4 [[https://git.kernel.org/linus/bb9fc6adac54c6811ccd0b7fe309be859effdc02|commit]] == Networking == * dpaa2-eth: Move DPAA2 Ethernet driver from staging to drivers/net [[https://git.kernel.org/linus/34ff68465a17d0c1f022ec9086504cb27dbb2fd7|commit]] * Bluetooth * btbcm: Add entry for BCM4335C0 UART bluetooth [[https://git.kernel.org/linus/a357ea098c9605f60d92a66a9073f56ce25726da|commit]] * btrtl: Add support for RTL8822C with USB interface [[https://git.kernel.org/linus/8ecfdc95b30a17b0c27ace6f13a1c4fb37e2bb96|commit]] * btusb: Add support for 0cf3:535b QCA_ROME device [[https://git.kernel.org/linus/1411a26053f492b7cef95f09898624544e4701d4|commit]] * FDDI: defza * Add support for DEC FDDIcontroller 700 TURBOchannel adapter [[https://git.kernel.org/linus/61414f5ec9834df8aa4f55c90de16b71a3d6ca8d|commit]] * Support capturing outgoing SMT traffic [[https://git.kernel.org/linus/9f9a742db40f95f4dc20fc7293de4ea6ddb24e47|commit]] * RDMA/hns: adds atomic and cm of vlan device function for hip08 as well as optimize some codes for post send verbs [[https://git.kernel.org/linus/944e64093a63bfab0a4f7ecebcd434630dff9107|commit]], [[https://git.kernel.org/linus/c7c28191408bf33c1d9c83de1d5b91f58f1ddaf1|commit]], [[https://git.kernel.org/linus/384f881851127dd834a2733f91999b859a5ffddb|commit]], Add enable judgement for UD vlan [[https://git.kernel.org/linus/8320deb88c03a842f8c2db92e2b4a86d2bb6df76|commit]] * aquantia: implement EEE support [[https://git.kernel.org/linus/92ab64079d6b750c2b6860d988b6c912a7eddfef|commit]], implement WOL support [[https://git.kernel.org/linus/a0da96c08cfacc97d16330e12be2135f502017dd|commit]] * ath10k * Add support for wifi QMI client handshake [[https://git.kernel.org/linus/bc17d4b90cdd3e557d195937c0003260dfce67d6|commit]], [[https://git.kernel.org/linus/22e8a46027387b4e8db75f73ede9bbf337115e9c|commit]], [[https://git.kernel.org/linus/cc53aabcc283c36274d3f3ce9adc4b40c21d4838|commit]], [[https://git.kernel.org/linus/35a6657667375d1564f9e9b75491c9e41b04c51f|commit]], [[https://git.kernel.org/linus/ba94c753ccb471bafe8bd824b744fda6fee0001e|commit]] * Add debugfs entry to enable extended tx stats [[https://git.kernel.org/linus/348cd95c8196818613980983b277faae8a3d1fd5|commit]], add debugfs support to dump per sta tx stats [[https://git.kernel.org/linus/85dd28eb9917fb22095aab0cf22eaa351bb3e24d|commit]], add debugfs support to get power save state change of STA [[https://git.kernel.org/linus/d70c0d463f9dd67037426bad243f647efec527d3|commit]] * Add extended per sta tx statistics support [[https://git.kernel.org/linus/a904417fc8761b78d46342d13a6fd08f4beb7075|commit]] * Add support for configuring management packet rate [[https://git.kernel.org/linus/f279294e9ee22a8f306fdc8e4181cf555e6f0f70|commit]] * Enable pktlog for WCN3990 target [[https://git.kernel.org/linus/713358c321f4f8553afe956c0d5e9a87b43d561e|commit]] * Add High Latency support [[https://git.kernel.org/linus/f88d493450403f5c5b7495232585e54cc4f89ccd|commit]], [[https://git.kernel.org/linus/a2097d6444c3c38e58b9570b5ef70345a58b7c4f|commit]], [[https://git.kernel.org/linus/4daacc950d4d005929a5c73ecbb8d97b930a8ed9|commit]] * Support NET_DETECT WoWLAN feature [[https://git.kernel.org/linus/ce834e280f2f8753ab0432fb5b1912547abc5330|commit]] * Support extended board data download for dual-band QCA9984 [[https://git.kernel.org/linus/31324d17976ed063839db5de3ce0b37a48dd0439|commit]] * ath9k * Add back support for using active monitor interfaces for tx99 [[https://git.kernel.org/linus/6df0580be8bc30803c4d8b2ed9c2230a2740c795|commit]] * Add counters for good and errorneous FFT/spectral frames [[https://git.kernel.org/linus/03224678c0134bd5811b81919a4d39a8fbe03244|commit]] * Add reset for airtime station debugfs [[https://git.kernel.org/linus/3fa8d2186550e5c8ad209087dc856a5f35fd4d26|commit]] * bnxt_en * Add 57500 new chip ID and basic structures [[https://git.kernel.org/linus/e38287b72ec5455eb1e16b1de0ba4ed54e2a748c|commit]] * Add PCI ID for BCM57508 device [[https://git.kernel.org/linus/1ab968d2f1d6d654052dbbf95f9461a6428a5487|commit]] * Add additional extended port statistics [[https://git.kernel.org/linus/36e53349b60bc6c629949e041567a376c9c42228|commit]] * Add maximum extended request length fw message support [[https://git.kernel.org/linus/1dfddc41ae4990b991059de8dfc8e802ab67244c|commit]] * brcmfmac: add CYW89342 mini-PCIe device [[https://git.kernel.org/linus/2fef681a4cf7994c882190fd2417b95f30510afb|commit]] * cxgb4 * Add thermal zone support [[https://git.kernel.org/linus/b187191577629b5358acf4e234809ee8d441ceb4|commit]] * Add per rx-queue counter for packet errors [[https://git.kernel.org/linus/992bea8e40b7f5d2ad5e59ce167556a84da388e2|commit]] * dpaa2-eth: Add ethtool support for flow classification [[https://git.kernel.org/linus/afb90dbb5f7813ead3324ddf056b8937f78c8bd2|commit]] * dsa: Add Lantiq / Intel DSA driver for vrx200 [[https://git.kernel.org/linus/14fceff4771e51b23b4485b575cf9e5b3414b89b|commit]] * dsa: b53: Add SerDes support [[https://git.kernel.org/linus/0e01491de646000567bc202cc70026dc4b7f7d7a|commit]] * ena: enable Low Latency Queues [[https://git.kernel.org/linus/9fd255928d7ffb56d8466fab3331d0b2f40aa8c7|commit]], [[https://git.kernel.org/linus/689b2bdaaa1480ad2c14bdc4c6eaf38284549022|commit]], [[https://git.kernel.org/linus/38005ca816a7ef5516dc8e59ae95716739aa75b0|commit]], [[https://git.kernel.org/linus/a7982b8ec947052df6d4467b3a81571f02f528e0|commit]] * fm10k: add missing device IDs to the upstream driver [[https://git.kernel.org/linus/9a1fe1e2bbc4194103bd6f5f8d78383d3bef41ae|commit]] * hinic: add checksum offload and TSO support [[https://git.kernel.org/linus/cc18a7543d2f63a2c93fc61cfa7fd8be5464f75e|commit]] * hns3 * Support of Flow Director for HiP08 Rev2 SoC [[https://git.kernel.org/linus/d695964d723d91c1b2bd404e787f6ff2c430b56c|commit]], [[https://git.kernel.org/linus/117328680288b55d5eb43f4c697d841fb4abf67a|commit]], [[https://git.kernel.org/linus/dd74f815dd41bdb6a979e36b4d35ba7d364281ae|commit]], [[https://git.kernel.org/linus/05c2314fe6a8f18de707e4353d148c01b581e1ef|commit]], [[https://git.kernel.org/linus/6871af29b3abe6d6ae3a0e28b8bdf44bd4cb8d30|commit]], [[https://git.kernel.org/linus/dc5e6064774e5629859ca9c9e97a1d3d5017a9e3|commit]], [[https://git.kernel.org/linus/c17852a8932f70d5ba3a487f52a7379e3b73cf30|commit]] * Adds support of RSS for Rev 2 [[https://git.kernel.org/linus/775501a1aabab99c5fd0864f42c7a48cdc521db7|commit]], [[https://git.kernel.org/linus/374ad291762a24b7ed3118129aca7fcfe4f1ba9d|commit]], [[https://git.kernel.org/linus/d97b307213014780976ede70dac88776b673b938|commit]], [[https://git.kernel.org/linus/232fc64b6e629010f5c08fbe005882eb692d557b|commit]] * Adds support of RAS Error Handling [[https://git.kernel.org/linus/5a9f0eac935b3edbcb3155301cc8aa1e22c04ccd|commit]], [[https://git.kernel.org/linus/6ae4e733cdd4e0e6e7069abe40197fc456e2eeea|commit]], [[https://git.kernel.org/linus/997141950380931073e13f7db8daf0c27b79af16|commit]], [[https://git.kernel.org/linus/6d67ee9a273bbb5d3f7d66eedb924aee21c2b2cd|commit]], [[https://git.kernel.org/linus/bf1faf9415ddbfaa6d6a56a4bc594c92ca0f7309|commit]], [[https://git.kernel.org/linus/da2d072a9ea75dd5babebcfd71144fb5b3aa9913|commit]], [[https://git.kernel.org/linus/01865a50d78f515423422b8c55e8b6f6bf4c2cd4|commit]] * Add default irq affinity [[https://git.kernel.org/linus/874bff0ba6cf884dde0220bfa8945f164e6da1d1|commit]] * Add egress/ingress vlan filter for revision 0x21 [[https://git.kernel.org/linus/64d114f0a7507ad479091d4ce469e85b49e76df6|commit]] * Add support for hns3_nic_netdev_ops.ndo_do_ioctl [[https://git.kernel.org/linus/26483246b5481af56facb55dac1dc05d7443c124|commit]] * Add support for sctp checksum offload [[https://git.kernel.org/linus/5b71ac3cc4a6a6346e2b9867c6c7553a7fcc4f8c|commit]] * hv_netvsc: Add support for LRO/RSC in the vSwitch [[https://git.kernel.org/linus/c8e4eff4675f22ad1110141ed9e62102d4d77e1c|commit]] * i40e: add AF_XDP zero-copy support [[https://git.kernel.org/linus/0a714186d3c0f7c563a03537f98716457c1f5ae0|commit]], [[https://git.kernel.org/linus/1328dcddbd53900481994f4c4d8b79e64477965e|commit]] * ibmvnic: Add ethtool private flag for driver-defined queue limits [[https://git.kernel.org/linus/723ad916134784b317b72f3f6cf0f7ba774e5dae|commit]] * ice * Add SR-IOV support and some feature updates [[https://git.kernel.org/linus/16fc087b9cb22c9a97307cc24a5413d0df68fe11|commit]], [[https://git.kernel.org/linus/75d2b253026b8b1cb625f6ccdb9d54cdecae7935|commit]], [[https://git.kernel.org/linus/ddf30f7ff840d4467ef45ec0b443575f9e95bec6|commit]], [[https://git.kernel.org/linus/8ede01785f32269ef4766cf17a535e70ee3c1541|commit]], [[https://git.kernel.org/linus/007676b4ac920d4ceb4e4aa8aa668ac32d4764ad|commit]], [[https://git.kernel.org/linus/7c710869d64e0119cc190514c7425c1a9aa2277d|commit]], [[https://git.kernel.org/linus/1071a8358a286df4ca7d3baa2ccea8b4cfe33c7a|commit]], [[https://git.kernel.org/linus/53b8decbb7c83bbfc810cc1b0794267ab98df38b|commit]] * Add support for Tx hang, Tx timeout and malicious driver detection [[https://git.kernel.org/linus/b3969fd727aa1f2ace4794f2a180f9769128027c|commit]] * Add support for dynamic interrupt moderation [[https://git.kernel.org/linus/9e4ab4c29a62d2ccbf4be42707669be2f42d391c|commit]] * Implement ethtool hook for RSS switch [[https://git.kernel.org/linus/492af0ab4f57136d19f0fa3a9c636f12ae70853c|commit]] * Implement handlers for ethtool PHY/link operations [[https://git.kernel.org/linus/48cb27f2fd18391056ea40cce5e33f1fd741679e|commit]] * igc: Add skeletal frame for Intel(R) 2.5G Ethernet Controller support [[https://git.kernel.org/linus/d89f88419f999f03af2282789f2d2eea6468c00a|commit]] * iwlwifi * Add d3 debug data support [[https://git.kernel.org/linus/2d8c261511abfebd705d2163500d6b3049f0dec6|commit]] * Add debugfs to send host command [[https://git.kernel.org/linus/755384b3778ddc33d168ef02547385e209775a7e|commit]] * mvm: implement extended HE-MU sniffer API [[https://git.kernel.org/linus/dabf9844385885e50c05a08ebc312d46017eb261|commit]] * mvm: support Coex Schema 2 [[https://git.kernel.org/linus/50f067b35684dbc5dfe81683c6e381e8eb7da3fb|commit]], [[https://git.kernel.org/linus/d5367de2d803658702dab1fc70e3428b26651189|commit]] * Support new WoWLAN status FW API [[https://git.kernel.org/linus/2afa6a7311f5727c5a3984419d11b863cae69712|commit]] * Support new reduce tx power FW API [[https://git.kernel.org/linus/0791c2fce3c8b719db14c57fe3fac689743cd399|commit]] * ixgbe * Add AF_XDP zero-copy support [[https://git.kernel.org/linus/d0bcacd0a130974f58a56318db7a5ca6a7ba1d5a|commit]], [[https://git.kernel.org/linus/8221c5eba8c13831d80860f6e0016d5c075695fb|commit]] * IPsec hardware offload for 10Gbe VF [[https://git.kernel.org/linus/99a7b0c14c3078c0eaa1e795fb9bd53330977fa7|commit]], [[https://git.kernel.org/linus/eda0333ac29304c5f5cd72d963d5d1e788ce49ab|commit]], [[https://git.kernel.org/linus/9e4e30cc0c41bb5c727851c7028f840d488365ee|commit]], [[https://git.kernel.org/linus/72698240463769f68020c61eb71d1aef96458200|commit]], [[https://git.kernel.org/linus/47b6f50077e68bcd544f657526dad4bfdce7e87d|commit]], [[https://git.kernel.org/linus/0062e7cc955e0827a88570ed36ea511a7dcb391e|commit]], [[https://git.kernel.org/linus/adef9a26d6c39cbfa1b396aa34df85051a143402|commit]], [[https://git.kernel.org/linus/7f68d43067018df9b6ce0e75a99c9d58ded989f5|commit]] * lantiq: Add Lantiq / Intel VRX200 Ethernet driver [[https://git.kernel.org/linus/fe1a56420cf2ec28c8eceef672b87de0bbe1a260|commit]] * liquidio: Add the features to show FEC settings and set FEC settings [[https://git.kernel.org/linus/75b2c206bb10961879912bd6a4199bf4dfa6eda2|commit]] * mlx5: Extended DEVX on IB [[https://git.kernel.org/linus/3df6e0234aebc55888069997239fe2847d4cf152|commit]], [[https://git.kernel.org/linus/7e1335a736969a8b5169629e6569779d42fcda2f|commit]], [[https://git.kernel.org/linus/7f72052cb48efb5637ed99d2f45cb33a0bf60719|commit]], [[https://git.kernel.org/linus/76dc5a8406bffabf3f466e331a3e9515ddf93954|commit]] * RDMA/mlx5 * Add the ability to attach recently added flow actions to flow steering rules: modify header and packet reformat * Flow actions to mutate packets [[https://git.kernel.org/linus/8ce78257965e6cd49720e653867e766ecd38883f|commit]], [[https://git.kernel.org/linus/90c1d1b8da67330b09893d749401a45328b51704|commit]], [[https://git.kernel.org/linus/c3c062f8066504bc38b28266f4b71ff90c3ab8be|commit]], [[https://git.kernel.org/linus/61444b458b01c95e55003d6f0b4d4c936fde51cb|commit]], [[https://git.kernel.org/linus/e0e7a3861b6c6b673dc93e291ef11cf5e746b0c2|commit]], [[https://git.kernel.org/linus/60786f0987c0d9354e5330ee11615b16cdb448fe|commit]], [[https://git.kernel.org/linus/bea4e1f6c6c5744d467ebf8b0699f5e391835130|commit]], [[https://git.kernel.org/linus/31ca3648f01bf19ae64618521ce539615cc0d5a0|commit]], [[https://git.kernel.org/linus/50acec06f3928fc29647aecf1270e54cae583afb|commit]], [[https://git.kernel.org/linus/78dd0c430f116a325eeda61416c0b36a8206fbfc|commit]], [[https://git.kernel.org/linus/0953fffec9ba022f63bfe01e86427530d8320d5c|commit]], [[https://git.kernel.org/linus/b4749bf25652689d8e33827460266b78bb2ec42c|commit]], [[https://git.kernel.org/linus/b1085be3f468a58d4a43f3ea878ecb6c10910552|commit]], [[https://git.kernel.org/linus/4adda1122c490e042d4bcb920900f796fc9423e4|commit]], [[https://git.kernel.org/linus/841eefc5cb57030ad05a0c4bc285f93ffa668ad9|commit]], [[https://git.kernel.org/linus/08aeb97cb82483192bd8ad8e60d1b73ce1b75923|commit]], [[https://git.kernel.org/linus/08aeb97cb82483192bd8ad8e60d1b73ce1b75923|commit]], [[https://git.kernel.org/linus/10a308964eaf4bf7dea859dcb9f630c91b3b07be|commit]], [[https://git.kernel.org/linus/a090d0d859ff88dd4c34614d01cee9b0603f4313|commit]], [[https://git.kernel.org/linus/5c2db53f62633689632aee7be9659418b2bf291f|commit]], [[https://git.kernel.org/linus/e806f9328ba424b371766899af3c3cf4616e5522|commit]], [[https://git.kernel.org/linus/70cd20aed00f719f3536154df02596106e431e45|commit]], [[https://git.kernel.org/linus/2ea262039015ba7e74dcaff91e70c547a45437c7|commit]], [[https://git.kernel.org/linus/b823dd6d86ce6576d229c865895d0ee5285d0363|commit]], [[https://git.kernel.org/linus/fa76d24ee0aa24fff3fa9ba71fc2179fb88fef6a|commit]], [[https://git.kernel.org/linus/b47fd4ffe2d6422a986f19d47563d72c79ebbc21|commit]], [[https://git.kernel.org/linus/a7ee18bdee837e4703f01588993504b72074ffc6|commit]], [[https://git.kernel.org/linus/ba4a41198324be2e6fbb06c270fdc8500c0e38de|commit]] * mlx5: Add Fast teardown support [[https://git.kernel.org/linus/fcd29ad17c6ff885dfae58f557e9323941e63ba2|commit]] * mlx5e * Add ethtool control of ring params to VF representors [[https://git.kernel.org/linus/f128f138cc4003c66053a5583378da90b4b3a25a|commit]] * Add new counter for aRFS rule insertion failures [[https://git.kernel.org/linus/94563847a8733c27b2f56ac82bad4c78e074e244|commit]] * Added 'raw_errors_laneX' fields to ethtool statistics [[https://git.kernel.org/linus/4cb4e98e5bba6dce058582d78cc993fef6f0755a|commit]] * Allow reporting of checksum unnecessary [[https://git.kernel.org/linus/b856df28f9230a47669efbdd57896084caadb2b3|commit]] * Enable multi-queue and RSS for VF representors [[https://git.kernel.org/linus/84a0973386c5b6739627372c3725f5826c71f70c|commit]] * Enable reporting checksum unnecessary also for L3 packets [[https://git.kernel.org/linus/b820e6fb0978f9c2ac438c199d2bb2f35950e9c9|commit]] * Enable stateless offloads for VF representor netdevs [[https://git.kernel.org/linus/dabeb3b0d5c3761eeec27e5af4eb53dda97b4445|commit]] * Ethtool driver callback for query/set FEC policy [[https://git.kernel.org/linus/6cfa94605091b65cb2895a826750a30fbed99770|commit]] * Ethtool steering, Support masks for l3/l4 filters [[https://git.kernel.org/linus/3a95e0ccaf07b14b82e861bcb7544bacedc07932|commit]] * Expose ethtool rss key size / indirection table functions [[https://git.kernel.org/linus/a5355de878f4d5cc3eaf6f447cc33c103fab74dd|commit]] * IPoIB, Add ndo stats support for IPoIB child devices [[https://git.kernel.org/linus/b75ba3822c617e40ab2ca0fc4ed40a29db9b7787|commit]] * IPoIB, Add ndo stats support for IPoIB netdevices [[https://git.kernel.org/linus/c57d2358ff0dfa09a05dea10d0ea1dd0895029b4|commit]] * Support offloading tc priorities and chains for eswitch flows [[https://git.kernel.org/linus/bf07aa730a04a375bc10d09df1e81357af1d4477|commit]] * mlxsw: Add VxLAN support [[https://git.kernel.org/linus/bf341eb895411f36582a905d4a646b387a0d1fc3|commit]], [[https://git.kernel.org/linus/ab74c3a1274c5ec0711de23b232c35c0f1ac8ba5|commit]], [[https://git.kernel.org/linus/5050f6ae253ad1307af3486c26fc4f94287078b7|commit]], [[https://git.kernel.org/linus/9c73b1d120aadf26a3bbf34841ddac73b29c0326|commit]], [[https://git.kernel.org/linus/12066d612b22001829fa378ca127956ee72e13c1|commit]], [[https://git.kernel.org/linus/90ea0bb551155dccb93158637edea4db5feffabd|commit]], [[https://git.kernel.org/linus/a682a3024fe1d21653876fe2f0b231d011f6a72d|commit]], [[https://git.kernel.org/linus/beda7f72c36ab4f156e14d785a4bc50ddc2df657|commit]], [[https://git.kernel.org/linus/710dd1a0ec3f1afac393c4f85d164ffe0e6132e2|commit]], [[https://git.kernel.org/linus/50e6eb2a634e6c03bed4128fe1ab5044f8561b1d|commit]], [[https://git.kernel.org/linus/c723d19fadb138710a17833bd725a053246242b5|commit]], [[https://git.kernel.org/linus/4a8d1860ed5d7ad6ecd8e5a4c0d6f076e8275521|commit]], [[https://git.kernel.org/linus/a77d5f0bde4e95eb9c95bf416fa03d996b16ed67|commit]], [[https://git.kernel.org/linus/fd6db27cacd29a9d11616f76456e574c8e3a6db3|commit]], [[https://git.kernel.org/linus/8efcf6bb48e52c7ee679e7f441d52dfc5dd3dc16|commit]], [[https://git.kernel.org/linus/0933781f11e71350e60ba4466fab5cae6fab4293|commit]], [[https://git.kernel.org/linus/27f68c0850aa4565b3f126441fdc0fb3f1f2f8db|commit]], [[https://git.kernel.org/linus/2bd414aef6a833bed610aa7f76d6f610178c13f4|commit]], [[https://git.kernel.org/linus/b02597d513a9df5a3e661a74f40ff26e4057ec9c|commit]], [[https://git.kernel.org/linus/d3d19d4b8ca2efbcf4fc543ef5d2367999a89862|commit]], [[https://git.kernel.org/linus/564c6d727aca31735662b944311efda0d9465820|commit]], [[https://git.kernel.org/linus/0c69e0fcd3b1a5c73a3faaae2df76a3e0e74f122|commit]], [[https://git.kernel.org/linus/88782f75f93f62928c26d7e7e5c1649f85dd1469|commit]], [[https://git.kernel.org/linus/cca45e054ce55c06046a37bf4d3fd7c17edd57da|commit]], [[https://git.kernel.org/linus/28e450333d4d1328710e258d38793c61658d4c95|commit]], [[https://git.kernel.org/linus/6e6030bd5412182e064139821ffb09c373e46829|commit]], [[https://git.kernel.org/linus/369529115475e3c3eb520a8ace83c983535aef54|commit]], [[https://git.kernel.org/linus/498790befb5f68213d418c2f064ca21168fdc8da|commit]], [[https://git.kernel.org/linus/4cf178d7b9dc3c821ccc16b7acf9937b95a2b837|commit]], [[https://git.kernel.org/linus/5ff4ff4fe8c4e7d0de1d837e489056f0c470667b|commit]], [[https://git.kernel.org/linus/9a99735317866e821c75f957fc85c63d049d330c|commit]], [[https://git.kernel.org/linus/1941f1d6453a527ae8df59891da0319646608444|commit]], [[https://git.kernel.org/linus/0efe11733356273d734cc2c5ab2dc6f5865cbeb6|commit]], [[https://git.kernel.org/linus/045a5a99141d96e6254664783e8afb4e298ae2c9|commit]], [[https://git.kernel.org/linus/e9ba0fbc7dd23a74e77960c98c988f59a1ff75aa|commit]], [[https://git.kernel.org/linus/1c30d1836aebdfa2b0a18952f0a906dcf49c66fc|commit]], [[https://git.kernel.org/linus/1231e04f5bba47f87d0b690a2d58c771a59f93aa|commit]] * mt76: report firmware version using ethtool [[https://git.kernel.org/linus/22509324c51404658a2a6fcd4af5ef263ae45801|commit]] * mt76x0 * Add mt7650 PCI ID [[https://git.kernel.org/linus/9b1140bdc6ba1a899415e9e0a2b125439da00c1f|commit]] * Report firmware version using ethtool [[https://git.kernel.org/linus/127aa72691ff567ea220c095843bf8d66f84e9af|commit]] * mt76x2u: Add support for Alfa AWUS036ACM [[https://git.kernel.org/linus/62a25dc56990a382afeb40891eead0dbf8b598b4|commit]] * mvneta * Add support for 2500Mbps SGMII [[https://git.kernel.org/linus/da58a931f248f423f917c3a0b3c94303aa30a738|commit]] * Enable NETIF_F_RXCSUM by default [[https://git.kernel.org/linus/7772988ad62332477bc2f427953fa122e24026b0|commit]] * mvpp2: support XPS by mapping TX queues to CPUs [[https://git.kernel.org/linus/0d283ab5b4fdbcd6bde4505863010b6008b6f048|commit]] * nfp * bpf: add support for BPF-to-BPF function calls [[https://git.kernel.org/linus/c941ce9c282cc606e6517356fcc186a9da2b4ab9|commit]], [[https://git.kernel.org/linus/1a7e62e6329c210ff67c5706fbe91187f2452baf|commit]], [[https://git.kernel.org/linus/c5da54d93eb43461a5b79e1fdad8409abad83a77|commit]], [[https://git.kernel.org/linus/bcfdfb7c962d84ef07aa2b400ef1c9d70e1120e5|commit]], [[https://git.kernel.org/linus/e3b49dc69b320ba93059509ff2b31bde9242a7fa|commit]], [[https://git.kernel.org/linus/389f263b60c9a3168d47eeb44b6a07bd2b8c66e2|commit]], [[https://git.kernel.org/linus/fb1981654129e9c71af4c0f2782c5ffde8cbf37f|commit]], [[https://git.kernel.org/linus/bdf4c66faf5fa6fd5ffb0b59c39c7629103d6479|commit]], [[https://git.kernel.org/linus/2178f3f0dc200557312e783aa683b87794084ae2|commit]], [[https://git.kernel.org/linus/7ff0ccde43664e3de9fe60edc19466f16cda6b7a|commit]], [[https://git.kernel.org/linus/445496231445aad46866a858a384b428cd073977|commit]], [[https://git.kernel.org/linus/e4052d06a5195b29271a7af262711d69f9ecfd04|commit]], * Add support for NFP5000 [[https://git.kernel.org/linus/0377505c540c4182ef50005188fe3940e17642d9|commit]] * nixge: Add support for 64-bit platforms [[https://git.kernel.org/linus/7e8d5755be0e6c92d3b86a85e54c6a550b1910c5|commit]] * Add a new driver for Marvell's OcteonTX2 SOC's Resource virtualization unit (RVU) admin function driver [[https://git.kernel.org/linus/54494aa5d1e68945dc79feb7c8461cd382e11d8a|commit]], [[https://git.kernel.org/linus/6ca3ee2f7d3a4b6063c14f5ebd1c6076035310ef|commit]], [[https://git.kernel.org/linus/1435f66a28b44ac6b82f8601ee217d2eb55df4f2|commit]], [[https://git.kernel.org/linus/66208910e57afda24ef37be64d413d354f9b523f|commit]], [[https://git.kernel.org/linus/96be2e0da85eb1c26e8d1d38ed4855a9c4eba167|commit]], [[https://git.kernel.org/linus/61071a871ea6eb2125ece91c1a0dbb124a318c8a|commit]], [[https://git.kernel.org/linus/23999b30ae67a1baef78ed5b2c3edb6928fcb225|commit]], [[https://git.kernel.org/linus/7a37245ef23f75223263930e086aa0a8678e161f|commit]], [[https://git.kernel.org/linus/3fa4c3232ac9da57f1ad10ddc971f521e62edc69|commit]], [[https://git.kernel.org/linus/4a3581cd5995d86721b3a38e1e2799b2137b4d77|commit]], [[https://git.kernel.org/linus/57856dde119590462315ddb5b4bf5fd2d981cb36|commit]], [[https://git.kernel.org/linus/aba53d5dbceabd36786a2a2f63ebbfe40cc343ad|commit]], [[https://git.kernel.org/linus/cb30711a6c7aa4956f3fea8bfe2d6adeac4f55c0|commit]], [[https://git.kernel.org/linus/59360e9809daecb59c3c42ee10918155bfded615|commit]], [[https://git.kernel.org/linus/709a4f0c254c06289283593b92b233451656bac3|commit]], [[https://git.kernel.org/linus/ffb0abd7e9cb22714d86ad8a60babd7b05ebdc06|commit]], [[https://git.kernel.org/linus/557dd485eaebdc8a447ce1d5c8916ada739f66b4|commit]], [[https://git.kernel.org/linus/a3e7121c704470e2c33a4b91bb218205947cd531|commit]], [[https://git.kernel.org/linus/b279bbb3314e114609983b02c4253aff6b4be976|commit]], [[https://git.kernel.org/linus/42349661780e893537205f9c4c27b1bae060d96a|commit]], [[https://git.kernel.org/linus/21e6699e5cd60f634002ecc6b60a690ab9c21947|commit]], [[https://git.kernel.org/linus/23923ea4b144ed43ad8f6e5110b06221d0ff1656|commit]], [[https://git.kernel.org/linus/94d942c5fb970ac2166216838b278613decfa9a0|commit]], [[https://git.kernel.org/linus/52d3d327a2595be7b69c956b45ad44de4ea6f692|commit]], [[https://git.kernel.org/linus/4b05528ebf0c3ffd61543cfcca78844f05d8eb9d|commit]], [[https://git.kernel.org/linus/d02913d91657941a86208691258837a0fe9a4cd7|commit]], [[https://git.kernel.org/linus/6b3321bacc5a1342e6f3f843234a902f65786b4b|commit]], [[https://git.kernel.org/linus/fefefd99ae8a8723ad6e324bd084968379f63607|commit]], [[https://git.kernel.org/linus/f5721f76a4376eacbbcc260d318872d2008fffbb|commit]], [[https://git.kernel.org/linus/759001406654f4ec8738a1149ed2729306bd335d|commit]], [[https://git.kernel.org/linus/41a7aa7b800dd0a12d3bedc1947451e503dfee74|commit]], [[https://git.kernel.org/linus/cc96b0e9b4c66e9dee02456e918541da91bdd4e3|commit]], [[https://git.kernel.org/linus/6f03cf10fcdf56fd72777c60e9dbd75bd4228dae|commit]], [[https://git.kernel.org/linus/d6f092ca928f4ed615c11b40f5856ebe1f3d4dd2|commit]] * phy * micrel: add Microchip KSZ9131 initial driver [[https://git.kernel.org/linus/bff5b4b3737219195ca0caef4ff7884303cb5dc1|commit]] * mscc: add ethtool statistics counters [[https://git.kernel.org/linus/f76178dc5218a135726fdad45074413381d1bfca|commit]] * mscc: add support for VSC8574 PHY [[https://git.kernel.org/linus/00d70d8e0e7811ed8acba24e04b9f193c3b84beb|commit]] * mscc: add support for VSC8584 PHY [[https://git.kernel.org/linus/a5afc1678044a3eea48f0295ae7bc2b13d59b128|commit]] * qed * Add driver support for 20G link speed [[https://git.kernel.org/linus/5bf0961cc6a180c077793f2615a8fd842c655876|commit]] * Add support for virtual link [[https://git.kernel.org/linus/e40a826a6cbc23e63a769e50dc71eb34ba6ddabf|commit]] * Add supported link and advertise link to display in ethtool [[https://git.kernel.org/linus/c56a8be7e7aa855ebcccf0e9d9eba2216514d399|commit]] * qede: Add driver support for 20G link speed [[https://git.kernel.org/linus/631b67072bb1c30101e67e6b5e6debd3c397a9fc|commit]] * qtnfmac * Add support for scan dwell time configuration [[https://git.kernel.org/linus/2525f188f7fd28fedc2c1093f02d74195f966f63|commit]] * Add support for scan flush [[https://git.kernel.org/linus/6d85930f265393cde7dba5637eeaa60c2c7c72c8|commit]] * Implement dump_station support for STA mode [[https://git.kernel.org/linus/e1c02eb16a9c742178874a7d1a08d300981715fb|commit]] * r8169: add support for Byte Queue Limits [[https://git.kernel.org/linus/d92060bc69233a8175a0c2bfa0d2bce123cace2d|commit]] * rtl8xxxu: Add rtl8188ctv support [[https://git.kernel.org/linus/514502c3a70bcadd9f7d915524acf09e5fc36f89|commit]] * systemport: Turn on offloads by default [[https://git.kernel.org/linus/b5061778f8228f81c1af855b403aaf528d32ce5b|commit]] * wil6210 * Add FT roam support for AP and station [[https://git.kernel.org/linus/b9010f105f21788b2dbe0e9599677a27247a9092|commit]] * Add support for channel 4 [[https://git.kernel.org/linus/22b9610ec68716d664aac99cee6e65464cc6c922|commit]] * Rremove reset file from debugfs [[https://git.kernel.org/linus/32dcfe8316cdbd885542967c0c85f5b9de78874b|commit]] * wlcore: Add support for optional wakeirq [[https://git.kernel.org/linus/3c83dd577c7f3f49420c661e693be7049bf0ca02|commit]] == Audio == * realtek: Add support for Acer Aspire C24-860 headset mic [[https://git.kernel.org/linus/705b65f107470499442240ff7afee5021a7002a6|commit]] * realtek: Support ALC300 [[https://git.kernel.org/linus/1078bef0cd9291355a20369b21cd823026ab8eaa|commit]] * Add support for AMD Stoney Ridge [[https://git.kernel.org/linus/3deef52ce10514ccdebba8e8ab85f9cebd0eb3f7|commit]] * usb-audio: Add vendor and product name for Dell WD19 Dock [[https://git.kernel.org/linus/8159a6a4a7d2a092d5375f695ecfca22b4562b5f|commit]] * ASoC * Add support to card rebind [[https://git.kernel.org/linus/e894efef9ac7c10b7727798dcc711cccf07569f9|commit]] * Add driver for PROTO Audio CODEC (with a WM8731) [[https://git.kernel.org/linus/a45f8853a5f95e3760dfbd7ba09d3d597d247040|commit]] * Intel: Boards: Add KBL Dialog Maxim I2S machine driver [[https://git.kernel.org/linus/bca0ac1d96739c07ee1a158e4b1202260ad7480e|commit]] * Intel: Boards: Machine driver for SKL+ w/ HDAudio codecs [[https://git.kernel.org/linus/7c33b5f16915a7bc3d3b81a9a041bdc562f71dfb|commit]] * codecs: tas5720: add TAS5722 TDM slot width setting support [[https://git.kernel.org/linus/db658f40cae33a9fddbd9ca5c35c6bbfbd593a82|commit]], add TAS5722 specific volume control [[https://git.kernel.org/linus/ec94c177bf3700ce44c53c375a3fb4c347f2b08f|commit]] * hdac_hda: add asoc extension for legacy HDA codec drivers [[https://git.kernel.org/linus/6bae5ea9498926440ffc883f3dbceb0adc65e492|commit]] * meson: add axg pdm input [[https://git.kernel.org/linus/2cfc123eea7477f26f59506fb45f25cb09ee1591|commit]] * nau8822: new codec driver [[https://git.kernel.org/linus/1e3cb6c321be2e5295dcaa94c2bf42a43a47a067|commit]] * pcm3060: Add codec driver [[https://git.kernel.org/linus/6ee47d4a8dacfa484d526c0475730568d979de24|commit]] * pcm3168a: add I2S/Left_J TDM support [[https://git.kernel.org/linus/471a7ba89158c6d52dae69636c94c4aa1a6b7b22|commit]] * rsnd: add support for 8 bit S8 format [[https://git.kernel.org/linus/ba5d553b7bd71e63d639863e2cb09e0c9543b8b7|commit]] * rsnd: add support for the DSP_A/DSP_B formats [[https://git.kernel.org/linus/3791b3ee4bb13c381868da89e9e6deb11de660ad|commit]] * sta32x: Add support for XTI clock [[https://git.kernel.org/linus/fce9ec954a8af7e04cbf5b9daa8bec9c1df5cfe6|commit]] * sunxi: Add new driver for Allwinner A64 codec's analog path controls [[https://git.kernel.org/linus/42371f327df0b8e9d479b929c5cd301846dd0f70|commit]] == Tablets, touch screens, keyboards, mouses == * HID * hid-bigbenff: driver for BigBen Interactive PS3OFMINIPAD gamepad [[https://git.kernel.org/linus/256a90ed9e46b270bbc4e15ef05216ff049c3721|commit]] * ite: Add USB id match for another ITE based keyboard rfkill key quirk [[https://git.kernel.org/linus/4050207485e47e00353e87f2fe2166083e282688|commit]] * microsoft: Add rumble support for Xbox One S controller [[https://git.kernel.org/linus/73c5b254c36529c84c9d19e07905f7103bb32e79|commit]] * multitouch: Add pointstick support for Cirque Touchpad [[https://git.kernel.org/linus/12d43aacf9a74d0eb66fd0ea54ebeb79ca28940f|commit]] * elan_i2c: add ACPI ID for Lenovo IdeaPad 330-15ARR [[https://git.kernel.org/linus/ad33429cd02565c28404bb16ae7a4c2bdfda6626|commit]] * elan_i2c: add ELAN0620 to the ACPI table [[https://git.kernel.org/linus/3ed64da3b790be7c63601e8ca6341b7dff74a660|commit]] * elan_i2c: add support for ELAN0621 touchpad [[https://git.kernel.org/linus/bf87ade0dd7f8cf19dac4d3161d5e86abe0c062b|commit]] * synaptics: add PNP ID for ThinkPad P50 to SMBus [[https://git.kernel.org/linus/9df39bedbf292680655c6a947c77d6562c693d4a|commit]] * synaptics: enable SMBus for HP 15-ay000 [[https://git.kernel.org/linus/5a6dab15f7a79817cab4af612ddd99eda793fce6|commit]] == TV tuners, webcams, video capturers == * Implement media requests [[https://git.kernel.org/linus/10905d70d78841a6fa191be5ec193e3c0d63555f|commit]], [[https://git.kernel.org/linus/cbb6a7f52b148dea0fed434b629aedddf7804d14|commit]] * Add imx319 camera sensor driver [[https://git.kernel.org/linus/8a89dc62f28c481f62e0a1329679304ec2145323|commit]] * Add imx355 camera sensor driver [[https://git.kernel.org/linus/df0b5c4a7ddd898839508e087230e82c76792e35|commit]] * dvb-frontends: add LNBH29 LNB supply driver [[https://git.kernel.org/linus/1b09dd9ff8a59b945fe8b5c4e4b8416a63252cac|commit]] * imx-pxp: add i.MX Pixel Pipeline driver [[https://git.kernel.org/linus/51abcf7fdb70b82b7f8a7c177271f29aed9866bd|commit]] * uapi/linux/media.h: add request API [[https://git.kernel.org/linus/66431c0bab0fb8bdd62930575869bea98eb2baf0|commit]] * Add definition for the Sunxi tiled NV12 format [[https://git.kernel.org/linus/36cf35b7864002c2601e4bda4d78d5622ad92544|commit]] * Add definitions for MPEG-2 slice format and metadata [[https://git.kernel.org/linus/c27bb30e7b6d385c5bff26406089377d678f1a1d|commit]] * vivid: Add 16-bit bayer to format list [[https://git.kernel.org/linus/2db3e15243dce41318f5de4595bbb80c390a2d04|commit]], support 480p for webcam capture [[https://git.kernel.org/linus/8caec72e8cbff65afa38928197bea5a393b67975|commit]] == Universal Serial Bus == * Add uevent for over-current [[https://git.kernel.org/linus/201af55da8a3986297d7c3493f839dfc96ffd7db|commit]] * typec: ucsi: add support for Cypress CCGx [[https://git.kernel.org/linus/247c554a14aa16ca08f4ed4d9eb39a2389f69d1d|commit]] * export firmware port location in sysfs [[https://git.kernel.org/linus/355c74e55e9992126ec5e568a3edb8e280fe040d|commit]] * EHCI: make ehci-mv a separate driver [[https://git.kernel.org/linus/0440fa3d1b4eb3a75b806b6538a3f9547dec4eef|commit]] * appledisplay: Add 27" Apple Cinema Display [[https://git.kernel.org/linus/d7859905301880ad3e16272399d26900af3ac496|commit]] * cdc-acm: add entry for Hiro (Conexant) modem [[https://git.kernel.org/linus/63529eaa6164ef7ab4b907b25ac3648177e5e78f|commit]] * dwc3: exynos: Add support for Exynos5433 variant with all clocks [[https://git.kernel.org/linus/4c19cc14064d99ef0a20fb5ba0d45c94dbedb13c|commit]] * gadget: udc: renesas_usb3: add support for r8a77990 [[https://git.kernel.org/linus/30025efa8b5e75f545e38a592158c34b3169423b|commit]] * gadget: uvc: configfs: Add bFormatIndex attributes [[https://git.kernel.org/linus/61ff10e0ea0cb39c737eab7e4fc5f0ae4d0fff33|commit]], add bFrameIndex attributes [[https://git.kernel.org/linus/b206548be6459ea5ffa82b9f1175915b225a89a1|commit]], add interface number attributes [[https://git.kernel.org/linus/bf71544883a1ccb20021eb5139475496dbd8abd9|commit]] * usbtmc: usbtmc: Changes needed for compatible IVI/VISA library [[https://git.kernel.org/linus/739240a9f6ac4d4c841081029874b3521744e490|commit]], [[https://git.kernel.org/linus/e013477bc20763e28d95d74e5ca97411194984ec|commit]], [[https://git.kernel.org/linus/ec34d08eff71b6cc69bacd70906cf9ff0d8c87a4|commit]], [[https://git.kernel.org/linus/46ecc9d54efc11bf99689901f867854d264cbc0b|commit]], [[https://git.kernel.org/linus/987b81998b41563113f714009e7e748e1211026d|commit]], [[https://git.kernel.org/linus/b14984518ee60ef7662aa6520b76ae6046e08857|commit]], [[https://git.kernel.org/linus/658f24f4523e41cda6a389c38b763f4c0cad6fbc|commit]], [[https://git.kernel.org/linus/bb99794a4792068cb4bfd40e99e0f9d8fe7872fa|commit]], [[https://git.kernel.org/linus/4ddc645f40e90fa3bc7af3a3f3bd7d29e671a775|commit]], [[https://git.kernel.org/linus/8409e96f012a777ad9ca2050d567d766e43ec343|commit]] * xhci-mtk: supports bandwidth scheduling with multi-TT [[https://git.kernel.org/linus/08e469de87a2534fda7a4605d33a2f287bd74684|commit]] * serial: option * add HP lt4132 [[https://git.kernel.org/linus/d57ec3c83b5153217a70b561d4fb6ed96f2f7a25|commit]] * add GosunCn ZTE WeLink ME3630 [[https://git.kernel.org/linus/70a7444c550a75584ffcfae95267058817eff6a7|commit]] * add Simcom SIM7500/SIM7600 (MBIM mode) [[https://git.kernel.org/linus/cc6730df08a291e51e145bc65e24ffb5e2f17ab6|commit]] * add Fibocom NL668 series [[https://git.kernel.org/linus/30360224441ce89a98ed627861e735beb4010775|commit]] * add Telit LN940 series [[https://git.kernel.org/linus/28a86092b1753b802ef7e3de8a4c4a69a9c1bb03|commit]] == Serial Peripheral Interface (SPI) == * spi: add support for Amazon's Alpine spi controller [[https://git.kernel.org/linus/f2d704794864a4bb486f2a0eaed40f25dd87303f|commit]] * Introduce new driver for Qualcomm QuadSPI controller [[https://git.kernel.org/linus/04000dc6f7e3ce24677f2895ea41746ed29a4498|commit]] * at91-usart: Add driver for at91-usart as SPI [[https://git.kernel.org/linus/e1892546ff662f5491f707ba8a8a3a3e01a84a80|commit]] * dw-mmio: add MSCC Jaguar2 support [[https://git.kernel.org/linus/be17ee0da35a5fe75813adb8e2c110c5541c8456|commit]] * mediatek: add spi slave for Mediatek MT2712 [[https://git.kernel.org/linus/805be7ddf3677be1de2b10feea8f1d7a8b736d3e|commit]] * omap2-mcspi: Add slave mode support [[https://git.kernel.org/linus/89e8b9cb846515e4435eb42df7009b824cf3405a|commit]] * spi-geni-qcom: Add SPI driver support for GENI based QUP [[https://git.kernel.org/linus/561de45f72bd5f9b3f166bdd6151d4d0fe9e6534|commit]] * spi-mem: add stm32 qspi controller [[https://git.kernel.org/linus/c530cd1d9d5e7741c641c5c366ddb4e23aa5caec|commit]] * sprd: Add SPI driver for Spreadtrum SC9860 [[https://git.kernel.org/linus/e7d973a31c24b3e82d54b6619f4b633038fce228|commit]] == Watchdog == * Add support for Armada 37xx CPU watchdog [[https://git.kernel.org/linus/54e3d9b518c8a2a7a3acb14a5912fafd8ef38f40|commit]] * w83627hf_wdt: Support NCT6796D, NCT6797D, NCT6798D [[https://git.kernel.org/linus/57cbf0e3a0fd48e5ad8f3884562e8dde4827c1c8|commit]] == Serial == * Add ISO7816 infrastructure [[https://git.kernel.org/linus/ad8c0eaa0a418ae8ef3f9217638bb86439399eac|commit]] * sh-sci: Add earlycon for R7S9210 [[https://git.kernel.org/linus/3d8b43ad9c0cf023dd12458f23250c1b86b21e4e|commit]] * 8250_uniphier: add auto-flow-control support [[https://git.kernel.org/linus/aad2d4952d24d8910d9fc64da9107df0fb780a09|commit]] * atmel: add ISO7816 support [[https://git.kernel.org/linus/377fedd1866ae3979e4fe36193475b8acbc82784|commit]] == ACPI, EFI, cpufreq, thermal, Power Management == * ACPI * LPSS: Add alternative ACPI HIDs for Cherry Trail DMA controllers [[https://git.kernel.org/linus/240714061c58e6b1abfb3322398a7634151c06cb|commit]] * ADXL: Add address translation interface using an ACPI DSM [[https://git.kernel.org/linus/4cf841e398503990df640f7a7c5b2ea56f11c08c|commit]] * TAD: Add low-level support for real time capability [[https://git.kernel.org/linus/3230b2b3c1ab5a0d3f99d5850bfdc4bf48d11cdd|commit]] * efi: add API to reserve memory persistently across kexec reboot [[https://git.kernel.org/linus/a23d3bb05ccbd815c79293d2207fedede0b3515d|commit]] * tools: sleepgraph and bootgraph: upgrade to v5.2 [[https://git.kernel.org/linus/5484f0334439701900121a107709c461215cadb6|commit]], [[https://git.kernel.org/linus/18d3f8fc0c2c5a55d40d1bedcf46865ecb87d84e|commit]] * cpufreq: intel_pstate: Add base_frequency attribute [[https://git.kernel.org/linus/86d333a8cc7f66c2314ab1e147834a1cd95ec2de|commit]], [[https://git.kernel.org/linus/4b73d334c50dcde25437be52a01e2f5cbf5f9e21|commit]] * thermal * hisi: Add multiple sensors support [[https://git.kernel.org/linus/7edc5e406f2637ba1f9c93b1e72e0e37f446304b|commit]] * hisi: Add the dual clusters sensors for hi3660 [[https://git.kernel.org/linus/8c6c36846f1174784bcf90627341ede7ce9a0b36|commit]] * Add stm32 thermal driver [[https://git.kernel.org/linus/1d693155607329adff57f5307d35a3a8320d4e7f|commit]] == Real Time Clock (RTC) == * ds1307: add frequency_test_enable attribute on m41txx [[https://git.kernel.org/linus/b41c23e152f2852ff7a299676af4f642bbe94abf|commit]] * ds1307: add offset sysfs for mt41txx chips [[https://git.kernel.org/linus/79230ff64167586b2a556470c7934083afea930e|commit]] * abx80x: add basic watchdog support [[https://git.kernel.org/linus/749e36d0a0d725a3fc2dc8d6261557b9e06d210d|commit]] * rv8803: add Epson RX8803 support [[https://git.kernel.org/linus/ac771ed746c800749ec5adbb4b7c22ce1d89943e|commit]] == Voltage, current regulators, power capping, power supply == * power: supply * Add Spreadtrum SC2731 charger support [[https://git.kernel.org/linus/1c3d7b0364f0730a8a64801dd07a589bbac06671|commit]] * bq25890_charger: Add the BQ25896 part [[https://git.kernel.org/linus/2e1a2ddee9cef07f5b1fab5625dcc56078139a4e|commit]] * bq27xxx: Add support for BQ27411 [[https://git.kernel.org/linus/457b42f0aa1c397745ada6083bf81b9479ab19fe|commit]] * reset: qcom-pon: Add pms405 pon support [[https://git.kernel.org/linus/a4ac1f5ced58b0782252d5a8b2dfe28a1d7a5e19|commit]] * regulator * Add consumer-requested load in regulator_summary [[https://git.kernel.org/linus/7d3827b5954840ff7765aef282257b7368b5ea67|commit]] * Add the opmode to regulator_summary [[https://git.kernel.org/linus/01de19d09ce6129740b318687a92c137451d2369|commit]] * mfd: Support ROHM BD71847 power management IC [[https://git.kernel.org/linus/494edd266b945f36908184433dd36eda1719cdb0|commit]] * lochnagar: Add support for the Cirrus Logic Lochnagar [[https://git.kernel.org/linus/bef9391cbec547351c6a13e52f3a26bb2d271ec7|commit]] * qcom: Add PMS405 regulators [[https://git.kernel.org/linus/f589d95b9751d1ae4cbe2cdd2e505c11a5438c9e|commit]] * stpmic1: add stpmic1 regulator driver [[https://git.kernel.org/linus/ca55b7185b74e73d2b39dc40efaf96100a2582cd|commit]] == Pin Controllers (pinctrl) == * bcm: add Northstar driver [[https://git.kernel.org/linus/c12fb1774deaa9c9408b19db8d43d3612f6e47a0|commit]] * ingenic: Add support for the JZ4725B [[https://git.kernel.org/linus/f2a967658a5d0f456d6f0530d3bc2b101260eeb5|commit]] * mediatek: add MT6765 pinctrl driver [[https://git.kernel.org/linus/477fecee7ca9c633a4a2e8ddf4c1ae1d30fc6b26|commit]] * mediatek: add MT7623 pinctrl driver based on generic pinctrl binding [[https://git.kernel.org/linus/e7507f57a93a194012e889aead13ea2bdc2e4889|commit]] * mediatek: add MT8183 pinctrl driver [[https://git.kernel.org/linus/750cd15d908151afa2df0f48d3917301e7af2369|commit]] * mediatek: add pinctrl-paris that implements the vendor dt-bindings [[https://git.kernel.org/linus/805250982bb5c5ce4a6e52e1d87204c5feea0dd1|commit]] * meson-g12a: add pinctrl driver support [[https://git.kernel.org/linus/29ae0952e85f3ef2ac87eb39f9cc867e2458a0ad|commit]] * nuvoton: add NPCM7xx pinctrl and GPIO driver [[https://git.kernel.org/linus/3b588e43ee5c7ad8ccccfbfc6fc379b816c178f0|commit]] * qcom: Add qcs404 pinctrl driver [[https://git.kernel.org/linus/22eb8301dbc1d0c916c9b826094e4d7562e1491e|commit]] * qcom: Add sdm660 pinctrl driver [[https://git.kernel.org/linus/9cf0c526bc5874d77208751ae42f7e4c62bfdd4d|commit]] * renesas: Renesas RZ/N1 pinctrl driver [[https://git.kernel.org/linus/4e53b5004745ef26a37bca4933b2d3ea71313f2a|commit]] * sh-pfc: r8a7791: Add r8a7744 support [[https://git.kernel.org/linus/d7097b97e91362ded242e5516f8d97b985f60941|commit]] * sh-pfc: r8a7796: Add R8A774A1 PFC support [[https://git.kernel.org/linus/91d627a779a16a247f7da30a6538bccd30804b2b|commit]] * sh-pfc: r8a77990: Add R8A774C0 PFC support [[https://git.kernel.org/linus/9f2b76a2db3c43872048cbca1269f3fc5fbcd75d|commit]] == Multi Media Card (MMC) == * mediatek: add MT8183 MMC driver support [[https://git.kernel.org/linus/a2e6d1f6b30dc8f51456ace6132a243f77cde686|commit]] * mmci: add stm32 sdmmc variant [[https://git.kernel.org/linus/46b723dd867d599420fb640c0eaf2a866ef721d4|commit]] * sdhci-iproc: Add ACPI support [[https://git.kernel.org/linus/7c7ba4334e5cfedb5b93ffee216b67dfa9f4135d|commit]] * sdhci-sprd: Add Spreadtrum's initial host controller [[https://git.kernel.org/linus/fb8bd90f83c4dd86bc7fdae406152d63c5852f92|commit]] * sdhci: Add Auto CMD Auto Select support [[https://git.kernel.org/linus/427b6514d0953bfc1d3fd8c404dcf839bdd8196a|commit]] * tegra: Enable UHS and HS200 modes for Tegra186 [[https://git.kernel.org/linus/2ad50051575c6556822c69a9053142462f2e8375|commit]] * tegra: Enable UHS and HS200 modes for Tegra210 [[https://git.kernel.org/linus/3559d4a6bb594b47a265c33e7f83cc56a52785b9|commit]] * uniphier-sd: add UniPhier SD/eMMC controller driver [[https://git.kernel.org/linus/3fd784f745dd1747863775a99ec749619ee6759c|commit]] == Memory Technology Devices (MTD) == * rawnand: toshiba: Add support for Toshiba Memory BENAND (Built-in ECC NAND) [[https://git.kernel.org/linus/f223713f15171855526232cd71b2dd96eafeb363|commit]] * rawnand: Remove docg4 [[https://git.kernel.org/linus/64ddd5d8578f4bd431c3978437cf746bae35756b|commit]] * spi-nor: add support to non-uniform SFDP SPI NOR flash memories [[https://git.kernel.org/linus/5390a8df769ec9ba9c995191bb0867430f602ebb|commit]] * spi-nor: intel-spi: Add support for Intel Ice Lake SPI serial flash [[https://git.kernel.org/linus/42460c31ae96cbad5ae226ee6c10bd8d70d764ae|commit]] == Industrial I/O (iio) == * adc: Add QCOM SPMI PMIC5 ADC driver [[https://git.kernel.org/linus/e13d757279bbc59776c8435fb94e54b5a58bdd0b|commit]] * adc: add support for mcp3911 [[https://git.kernel.org/linus/3a89b289df5df45e2343c2a8e837ad445f9776f6|commit]] * adc: sc27xx: Add raw data support [[https://git.kernel.org/linus/fd2f53ebf98173d667fe6b9c2300fef8b4f72f30|commit]] * adxl372: New driver for Analog Devices ADXL372 Accelerometer [[https://git.kernel.org/linus/4097da40f9264ab75f256ec7f097cfff2710cc0a|commit]] * dac: add support for ltc1660 [[https://git.kernel.org/linus/8316cebd1e59823872d10799ce91f67c7c06968e|commit]] * imu: st_lsm6dsx: add support to LSM6DSO [[https://git.kernel.org/linus/801a6e0af0c6cedca2e99155e343ad385a50f08e|commit]] * proximity: Add driver support for ST's VL53L0X ToF ranging sensor [[https://git.kernel.org/linus/6eb17c6c8aee233e27339bcefe4bf9bef6d94c6c|commit]] * tsl2772: add support for avago,apds9930 [[https://git.kernel.org/linus/75de3b570b1c80f185df5289cb781e453fd64502|commit]] * adxl372: Add filter bandwidth support [[https://git.kernel.org/linus/7ec040af6ce11285c8bd3ec59a1a570db742e9aa|commit]] * adxl372: Add sampling frequency support [[https://git.kernel.org/linus/5e605a4df6f18dc4e2e529f5f2e01f76441cece5|commit]] == Inter-Integrated Circuit (I2C) == * Add i2c bus driver for NVIDIA GPU [[https://git.kernel.org/linus/c71bcdcb42a7493348d3b45dee8139843bf45efc|commit]] == Hardware monitoring (hwmon) == * nct6775: Add support for NCT6798D [[https://git.kernel.org/linus/0599682b826ff7bbf9d5804fa37bcef36b0c9404|commit]] * nct6775: Add support for NCT6797D [[https://git.kernel.org/linus/e41da286a2fd9a5459d7a02203f776aef5e2bd8a|commit]] * lm75: Add MAX31725/6 support [[https://git.kernel.org/linus/a54ca77a98a311bf0488fd9004c5b691454ff917|commit]] * pmbus/ltc2978: Add support for LTM4686 uModule [[https://git.kernel.org/linus/4e15d05d9c439977e2f995b895e1701a8c47d800|commit]] == General Purpose I/O (gpio) == * add single-register GPIO via CREG driver [[https://git.kernel.org/linus/2505c7b0128f63289a59d77ee39cacd08aacf779|commit]] * ingenic: Remove driver [[https://git.kernel.org/linus/57e2143473fd7c5a4aefd90d6d9ed19c2d1981f8|commit]] == Leds == * Introduce LED pattern trigger [[https://git.kernel.org/linus/5fd752b6b3a2233972ce1726df8bdb40886113a9|commit]] * sc27xx: Add pattern_set/clear interfaces for LED controller [[https://git.kernel.org/linus/8dbac65f5c181e4723586ab738b703bb23bc3f2a|commit]] * add Panasonic AN30259A support [[https://git.kernel.org/linus/2d00f35c55e74fcb5626c9aa336c1ed697cd2ae9|commit]] == DMA engines == * dma-jz4780: Add support for the JZ4725B SoC [[https://git.kernel.org/linus/ae9156b63d94bb7e4f8be25e0d67326fbd07e0ef|commit]] * dma-jz4780: Add support for the JZ4740 SoC [[https://git.kernel.org/linus/ffaaa8cc4ee644504113c2a480709c59575e2854|commit]] * dma-jz4780: Add support for the JZ4770 SoC [[https://git.kernel.org/linus/29870eb759abf2d3a5fdf89c97906b49cd4521d2|commit]] * dw: Add alternative ACPI HIDs for Cherry Trail DMA controllers [[https://git.kernel.org/linus/5658f4f94ccab6fa93af82368a63256011f9592c|commit]] * fsl-edma: add ColdFire mcf5441x edma support [[https://git.kernel.org/linus/e7a3ff92eaf19eab14e8149758428e680c61706b|commit]] * owl: Add Slave and Cyclic mode support for Actions Semi Owl S900 SoC [[https://git.kernel.org/linus/d64e1b3f5cce41dd878a3ea008dd696a4d7d07d9|commit]] == Cryptography hardware acceleration == * caam/qi2: add DPAA2-CAAM driver [[https://git.kernel.org/linus/8d818c1055013d355d36188f21c7535687374f6c|commit]], [[https://git.kernel.org/linus/226853ac3ebee425300b9a692c9cd5f9e2e72571|commit]], [[https://git.kernel.org/linus/3f16f6c9d63222a7443d2e52f1f9369967d1a413|commit]] * cavium/nitrox: Added support for SR-IOV configuration [[https://git.kernel.org/linus/41a9aca6a2f359866552b06f19096d7fb77818dd|commit]] * cavium/nitrox: add support for per device request statistics [[https://git.kernel.org/linus/fec165c947935b2b65fac3ee8081b4a5aa960872|commit]] * cavium/nitrox: added support to identify the NITROX device partname [[https://git.kernel.org/linus/48e10548f82ea33e01ab8ed92dbcb9513463cb90|commit]] * cavium/nitrox: updated debugfs information [[https://git.kernel.org/linus/2a8780be9c26457b84d786f7ac9ed110625dde92|commit]] * ccp: add timeout support in the SEV command [[https://git.kernel.org/linus/e82867fddd28b236d488751899310397b4f871f3|commit]] * s5p-sss: Add aes-ctr support [[https://git.kernel.org/linus/cdf640a69f44d2a728da85a9c65b4e99c56047a9|commit]] == PCI == * P2PDMA: Support peer-to-peer memory. Recommended LWN article: [[https://lwn.net/Articles/767281/|Device-to-device memory-transfer offload with P2PDMA]]. [[https://git.kernel.org/linus/52916982af48d9f9fc01ad825259de1eb3a9b25e|commit]], [[https://git.kernel.org/linus/cbb8ca69fcbb2c82f70abcbb75b6ea8579236210|commit]] * imx: Add PME_Turn_Off support [[https://git.kernel.org/linus/f4e833ba2a955bc15c1ccaa5b0b3c2a0d7989bca|commit]] * imx: Initial imx7d pm support [[https://git.kernel.org/linus/0ee2c1f2429f74328c82ea559b127c96d5224ccd|commit]] == Non-Transparent Bridge (NTB) == * idt: Add basic hwmon sysfs interface [[https://git.kernel.org/linus/aed1b7b31154bdd6f2fccca0ab5cf8a6fe2f52eb|commit]] == Clock == * Add Ingenic jz4725b CGU driver [[https://git.kernel.org/linus/226dfa4726ebb102479d668e01160a1dc77485e8|commit]] * actions: Add Actions Semi Owl SoCs Reset Management Unit support [[https://git.kernel.org/linus/09dbde0154ab1edbcaef4fef5f9ab12b5449d7fa|commit]] * actions: Add Actions Semi S700 SoC Reset Management Unit support [[https://git.kernel.org/linus/c4dd4a2eb6b99f06cf395e22ac8326cf54bd4e07|commit]] * actions: Add Actions Semi S900 SoC Reset Management Unit support [[https://git.kernel.org/linus/5ddf0cdf9395b0f58ec863cefd497626c9ff0ad8|commit]] * at91: add at91sam9260 PMC driver [[https://git.kernel.org/linus/c8923236a2894cc4b27010639e98e1a3086c0987|commit]] * at91: add at91sam9rl PMC driver [[https://git.kernel.org/linus/ecd0bf3377c809c98d69c8bc989344f085980bed|commit]] * at91: add at91sam9x5 PMCs driver [[https://git.kernel.org/linus/1eabdc2f9dd8f1bca1b985fd2b1243be836b30ad|commit]] * at91: add sama5d2 PMC driver [[https://git.kernel.org/linus/a2038077de9a9e35f14a72612e2885193d4490d4|commit]] * at91: add sama5d4 pmc driver [[https://git.kernel.org/linus/084b696bb509d5943d94e282a4e349426ac85dc6|commit]] * qcom: Add Global Clock controller (GCC) driver for SDM660 [[https://git.kernel.org/linus/f2a76a2955c0eb7514cdb5885e3d60a973301ae0|commit]] * qcom: Add HFPLL driver [[https://git.kernel.org/linus/cb546b797a0da4dbb1a0c76a2a357921887b6189|commit]] * qcom: Add KPSS ACC/GCC driver [[https://git.kernel.org/linus/3ddc3564d3c9f097986bd4ccbe34152413811335|commit]] * qcom: Add Krait clock controller driver [[https://git.kernel.org/linus/bb5c4a85051e5e0be39c775b6df85521f2ae807d|commit]] * qcom: Add camera clock controller driver for SDM845 [[https://git.kernel.org/linus/78412c262004be21d1104ffad3232bb1c2e14a25|commit]] * qcom: Add support for Krait clocks [[https://git.kernel.org/linus/4d7dc77babfef1d6cb8fd825e2f17dc3384c3272|commit]] * qcom: Add support for RCG to register for DFS [[https://git.kernel.org/linus/cc4f6944d0e333ed57a2f300afd7c8cb6df228d5|commit]] * qcom: gcc: Add global clock controller driver for QCS404 [[https://git.kernel.org/linus/652f1813c113a3f5169cd1325201fdf9b2d22ded|commit]] * renesas: cpg-mssr: Add R7S9210 support [[https://git.kernel.org/linus/fde35c9c7db5732cc1fbd89fa5eba5a9e0b25f6e|commit]] * renesas: cpg-mssr: Add r8a774a1 support [[https://git.kernel.org/linus/331a53e05b67b40a107e7e2597d22b4f8a2ca0d2|commit]] * renesas: r8a7743: Add r8a7744 support [[https://git.kernel.org/linus/016f9663156fe7e1402ef5ebaaca55d67f639966|commit]] * c-sky: Add C-SKY SMP timer [[https://git.kernel.org/linus/a7ad38b0dd3c1ba8d6e5a55241e875e9db8331ab|commit]] * c-sky: Add gx6605s SOC system timer [[https://git.kernel.org/linus/33745c3cc588d9d5e18d6fd88709002158dddd5e|commit]] * Add ZynqMP clock driver [[https://git.kernel.org/linus/3fde0e16d016ecb273f0fa404b5d56b947fc0576|commit]] == Firmware == * dcdbas: Add support for WSMT ACPI table [[https://git.kernel.org/linus/12c956c4f32e08799de452abe1e1ec6021b1e41f|commit]] * imx: add SCU firmware driver support [[https://git.kernel.org/linus/edbee095fafb4b727b51032bdc41e345f95bbc20|commit]] * imx: add misc svc support [[https://git.kernel.org/linus/15e1f2bc8b3b2d238b9e06b128d4a09d28f11733|commit]] * meson_sm: Add serial number sysfs entry [[https://git.kernel.org/linus/0789724f86a59fa7078d67dfeb1ee4a15ae3c693|commit]] * xilinx: Add Zynqmp firmware driver [[https://git.kernel.org/linus/76582671eb5d006a78420776cc5f73195b867e81|commit]] * xilinx: Add debugfs for query data API [[https://git.kernel.org/linus/e60f02ddb4d2e29b0eb30dbe55475822c4bf3818|commit]] * xilinx: Add debugfs interface [[https://git.kernel.org/linus/b321725257c17335b6a8388530366caa2c581084|commit]] * xilinx: Add zynqmp IOCTL API for device control [[https://git.kernel.org/linus/3b0296b8c893adb17b422179b9e779e4c32aa347|commit]] == IOMMU == * arm-smmu-v3: Add support for non-strict mode [[https://git.kernel.org/linus/9662b99a19abccb0b7bfc91abb3fec1447c35bf0|commit]] * arm-smmu: Support non-strict mode [[https://git.kernel.org/linus/44f6876a00e83df5fd28681502b19b0f51e4a3c6|commit]] * dma: Add support for non-strict mode [[https://git.kernel.org/linus/2da274cdf998a1c12afa6b5975db2df1df01edf1|commit]] * io-pgtable-arm-v7s: Add support for non-strict mode [[https://git.kernel.org/linus/b2dfeba654cb08db327d0ed4547b66c2f8fce997|commit]] * io-pgtable-arm: Add support for non-strict mode [[https://git.kernel.org/linus/b6b65ca20bc93d14319f9b5cf98fd3c19a4244e3|commit]] * vt-d: Add debugfs support for Interrupt remapping [[https://git.kernel.org/linus/a6d268c619d6765322f2fbdd1d7d2769ebc04cb2|commit]] * vt-d: Add debugfs support to show context internals [[https://git.kernel.org/linus/18f99c9b9dec15bc088d9db239f68e5c80415304|commit]] * vt-d: Add debugfs support to show register contents [[https://git.kernel.org/linus/6825d3ea6cdea68694a99a7f23c72d937fabc011|commit]] * vt-d: Enable base Intel IOMMU debugfs support [[https://git.kernel.org/linus/ee2636b8670b1ab2a02a65923a9bef59e9199c37|commit]] * Add "iommu.strict" command line option [[https://git.kernel.org/linus/68a6efe86f6a16e25556a2aff40efad41097b486|commit]] == PHY == * Add driver for Cadence MHDP DisplayPort SD0801 PHY [[https://git.kernel.org/linus/c8b427edc7378fa540a03d44ed61eb49cb7f64bc|commit]] * add Rockchip Innosilicon hdmi phy [[https://git.kernel.org/linus/53706a1168631fa5bf2e6d47de4647ea7e69f270|commit]] * add driver for Microsemi Ocelot SerDes muxing [[https://git.kernel.org/linus/51f6b410fc220d8a5a4fae00ebfd8243b6c11d4e|commit]] * phy-pxa-usb: add a new driver [[https://git.kernel.org/linus/644930cbad32c0a850aaeed11eb2a49b492bf51a|commit]] * socionext: add PCIe PHY driver support [[https://git.kernel.org/linus/c6d9b132415951a8e8025a5b0e7f6b805737528c|commit]] * socionext: add USB2 PHY driver for UniPhier SoC [[https://git.kernel.org/linus/c339d3e0fb100465d644ccf84590e6f5e5ad80b9|commit]] * socionext: add USB3 PHY driver for UniPhier SoC [[https://git.kernel.org/linus/5ab43d0f86979d6741c1dda685af3e053982e03e|commit]] == IRQ chip == * irq-mvebu-icu: Add support for System Error Interrupts (SEI) [[https://git.kernel.org/linus/175c98aa265b7ba45e81524075d28ff2725d8e83|commit]] * irq-mvebu-sei: Add new driver for Marvell SEI [[https://git.kernel.org/linus/61ce8d8d8a8168a714de80fc31b3d6ac160fc5b0|commit]] * add C-SKY APB bus interrupt controller [[https://git.kernel.org/linus/edff1b4835b71e14538d3a48568fa513ee9f7931|commit]] * add C-SKY SMP interrupt controller [[https://git.kernel.org/linus/d8a5f5f79122b42b8afdce29f03683c1b8cdb60e|commit]] == Various == * edac: Add EDAC driver support for QCOM SoCs [[https://git.kernel.org/linus/27450653f1db0b9d5b5048a246c850c52ee4aa61|commit]] * eeprom: New ee1004 driver for DDR4 memory [[https://git.kernel.org/linus/3b7584a296c4fac45e59ab3a264880e1a2fedbfe|commit]] * gsmi: Add GSMI commands to log S0ix info [[https://git.kernel.org/linus/8942b2d5094b01e4509f0118a7940bb07350e128|commit]] * remoteproc: qcom: Introduce Non-PAS ADSP PIL driver [[https://git.kernel.org/linus/dc160e449122274e0acffa622cc937f90b76a5a4|commit]] * reset: qcom: PDC Global (Power Domain Controller) reset controller [[https://git.kernel.org/linus/eea2926b0a390969828e49ea96c45a2b1f007030|commit]] * slimbus: core: add support to uevent [[https://git.kernel.org/linus/9e663f4811c6fd58c03e918c3f0a2e08810e38c1|commit]] * soundwire: Add support for multi link bank switch [[https://git.kernel.org/linus/ce6e74d008ff5c8b43e3bafaa7343bf7eb69593e|commit]] = List of merges = * [[https://git.kernel.org/torvalds/c/528985117126f11beea339cf39120ee99da04cd2|Pull arm64 updates ]] * [[https://git.kernel.org/torvalds/c/6ab9e09238fdfd742fe23b81e2d385a1cab49d9b|Pull block layer updates ]] * [[https://git.kernel.org/torvalds/c/13775dacca5c158a257320f4b47e1220b82e3b21|Pull libata updates ]] * [[https://git.kernel.org/torvalds/c/cff229491af5df946781edfbeafd43e9cf66a3b4|Pull dma mapping updates ]] * [[https://git.kernel.org/torvalds/c/b8e445b6895cfe76c5959a7135a3216703fe32d4|Pull hwmon updates ]] * [[https://git.kernel.org/torvalds/c/a36cf6865120d7534fcb132d311f03e5159f2da7|Pull mtd updates ]] * [[https://git.kernel.org/torvalds/c/6214a9fe2aeca5e22184b20954774424e2efc1f6|Pull regmap updates ]] * [[https://git.kernel.org/torvalds/c/b537149a2fb45ef9936b7a55aa801fbab8ea2a8a|Pull spi updates ]] * [[https://git.kernel.org/torvalds/c/ca9eb48fe01fa7fa60ff9f2196b1bd0d84dc81af|Pull regulator updates ]] * [[https://git.kernel.org/torvalds/c/1650ac53066577a5e83fe3e9d992c9311597ff8c|Pull MMC updates ]] * [[https://git.kernel.org/torvalds/c/b0b6a28bc4b265aa56cbf4fa8fd27c0a4fa3a49c|Pull pin control updates ]] * [[https://git.kernel.org/torvalds/c/114b5f8f7efc036dd7dd16efb0f218a88e6c6c02|Pull GPIO updates ]] * [[https://git.kernel.org/torvalds/c/6fd577cd4b257ce5cb761adcdedeea55501d84d9|Pull LED updates ]] * [[https://git.kernel.org/torvalds/c/c403993a41d50db1e7d9bc2d43c3c8498162312f|Pull IPMI updates ]] * [[https://git.kernel.org/torvalds/c/12dd08fa954fb7c327382ead3bb9ac861f9b9b69|Pull power management updates ]] * [[https://git.kernel.org/torvalds/c/58a0228707870c8330917f919804986855443a19|Pull ACPI updates ]] * [[https://git.kernel.org/torvalds/c/70408a9987d1ffac006e21b965f0c30dd22b0af2|Pull ia64 updates ]] * [[https://git.kernel.org/torvalds/c/e2b623fbe6a34bce1332584212ae101ebc2508f5|Pull s390 updates ]] * [[https://git.kernel.org/torvalds/c/cee1352f792646ae87e65f8bfb0ae91ff3d2cb95|Pull RCU updates ]] * [[https://git.kernel.org/torvalds/c/de3fbb2aa802a267dee2213ae7d5a1e19eb4294a|Pull EFI updates ]] * [[https://git.kernel.org/torvalds/c/0200fbdd431519d730b5d399a12840ec832b27cc|Pull locking and misc x86 updates ]] * [[https://git.kernel.org/torvalds/c/c05f3642f4304dd081876e77a68555b6aba4483f|Pull perf updates ]] * [[https://git.kernel.org/torvalds/c/0d1b82cd8ac2e8856ae9045c97782ac1c359929c|Pull RAS updates ]] * [[https://git.kernel.org/torvalds/c/42f52e1c59bdb78cad945b2dd34fa1f892239a39|Pull scheduler updates ]] * [[https://git.kernel.org/torvalds/c/cbbfb0ae2ca979222297062647ced653682a6cc7|Pull x86 apic updates ]] * [[https://git.kernel.org/torvalds/c/e1d20beae70eb918cca7f07a77ce199fd148fdd2|Pull x86 asm updates ]] * [[https://git.kernel.org/torvalds/c/642116d4ac58745b8058d32a20ca733020feb290|Pull x86 boot updates ]] * [[https://git.kernel.org/torvalds/c/04ce7fae3d4ed1b045d20da071b96f7dcb93bda8|Pull x86 build update ]] * [[https://git.kernel.org/torvalds/c/fec98069fb72fb656304a3e52265e0c2fc9adf87|Pull x86 cpu updates ]] * [[https://git.kernel.org/torvalds/c/ac73e08eda885a6723593c45d634b59c63365986|Pull x86 grub2 updates ]] * [[https://git.kernel.org/torvalds/c/382d72a9aa525b56ab8453ce61751fa712414d3d|Pull x86 hyperv updates ]] * [[https://git.kernel.org/torvalds/c/99792e0cea1ed733cdc8d0758677981e0cbebfed|Pull x86 mm updates ]] * [[https://git.kernel.org/torvalds/c/f682a7920baf7b721d01dd317f3b532265357cbb|Pull x86 paravirt updates ]] * [[https://git.kernel.org/torvalds/c/d7197a5ad8528642cb70f1d27d4d5c7332a2b395|Pull x86 platform updates ]] * [[https://git.kernel.org/torvalds/c/d82924c3b8d0607094b94fab290a33c5ad7d586c|Pull x86 pti updates ]] * [[https://git.kernel.org/torvalds/c/034bda1cd5abbe7b170ce76b618768d164030bbd|Pull x86 vdso updates ]] * [[https://git.kernel.org/torvalds/c/07171da26424bcdb5d8c4571544c8c7b11137d34|Pull ARM updates ]] * [[https://git.kernel.org/torvalds/c/44786880df196a4200c178945c4d41675faf9fb7|Pull parisc updates ]] * [[https://git.kernel.org/torvalds/c/a97a2d4d56ea596871b739d63d41b084733bd9fb|Pull sparc updates ]] * [[https://git.kernel.org/torvalds/c/50b825d7e87f4cff7070df6eb26390152bb29537|Pull networking updates ]] * [[https://git.kernel.org/torvalds/c/ba9f6f8954afa5224e3ed60332f7b92242b7ed0f|Pull siginfo updates ]] * [[https://git.kernel.org/torvalds/c/d5e4d81da4d443d54b0b5c28ba6d26be297c509b|Pull SELinux updates ]] * [[https://git.kernel.org/torvalds/c/638820d8da8ededd6dc609beaef02d5396599c03|Pull security subsystem updates ]] * [[https://git.kernel.org/torvalds/c/08ffb584d9eb17940321317ef6c9c7383ad4f149|Pull pstore updates ]] * [[https://git.kernel.org/torvalds/c/44adbac8f7217040be97928cd19998259d9d4418|Pull tty ioctl updates ]] * [[https://git.kernel.org/torvalds/c/318b067a5dd649d198c2ba00cf7408d778fc00b4|Pull btrfs updates ]] * [[https://git.kernel.org/torvalds/c/deba28b12bcb5e11c6f6689f4edd96eea4929162|Pull jfs updates ]] * [[https://git.kernel.org/torvalds/c/e1cbbf4067820ea4df534dd96f51c8f67854dcad|Pull orangefs updates ]] * [[https://git.kernel.org/torvalds/c/bfd93a87eadb03499a5ff02dfebfaf515310d27c|Pull gfs2 updates ]] * [[https://git.kernel.org/torvalds/c/fe0142df648f5478f410c41e01771b90b9793215|Pull xfs updates ]] * [[https://git.kernel.org/torvalds/c/d6edff78fe9e34dbea1bec7dc26cfce92c6d96d5|Pull f2fs updates ]] * [[https://git.kernel.org/torvalds/c/5993692f09582accb4cb7af11d344598af43c3b8|Pull ext4 updates ]] * [[https://git.kernel.org/torvalds/c/01aa9d518eae8a4d75cd3049defc6ed0b6d0a658|Pull documentation updates ]] * [[https://git.kernel.org/torvalds/c/3ea172c84dc5a88f4fa7316311857f5878bcf777|Pull MFD updates ]] * [[https://git.kernel.org/torvalds/c/3f2dcb6411eb3fd4a8be5d3713be0e2c1c750d6d|Pull backlight updates ]] * [[https://git.kernel.org/torvalds/c/96f2f66a985699d201b3a84222b8dd42262a71fe|Pull HID updates ]] * [[https://git.kernel.org/torvalds/c/df132e4062afe06ddc9938802243d704906a884a|Pull power supply and reset updates ]] * [[https://git.kernel.org/torvalds/c/6078e07dcf5348075713124508d03786dc9ffa8b|Pull libnvdimm updates ]] * [[https://git.kernel.org/torvalds/c/36168d7123311d52e085c116f6c66e16f0b84615|Pull EDAC updates ]] * [[https://git.kernel.org/torvalds/c/a41efc2a0f68cea26665ab9e6d991c9bf33b3f59|Pull dmaengine updates ]] * [[https://git.kernel.org/torvalds/c/bd6bf7c10484f026505814b690104cdef27ed460|Pull PCI updates ]] * [[https://git.kernel.org/torvalds/c/d49f8a52b15bf35db778035340d8a673149f9f93|Pull SCSI updates ]] * [[https://git.kernel.org/torvalds/c/3acbd2de6bc3af215c6ed7732dfc097d1e238503|Pull sound updates ]] * [[https://git.kernel.org/torvalds/c/4dcb9239dad6cee17c538482619a5b659774ee51|Pull timekeeping updates ]] * [[https://git.kernel.org/torvalds/c/5947a64a7e0c70cc16d5d1e5af3cf3b44535047a|Pull irq updates ]] * [[https://git.kernel.org/torvalds/c/06999fd59277afef07638453c695a500eb2a93c0|Pull alpha syscall glue updates ]] * [[https://git.kernel.org/torvalds/c/4ba9628fe5bf90e0125dbec847a0cf4f5553de14|Pull more ->lookup() cleanups ]] * [[https://git.kernel.org/torvalds/c/57ce66d39f10fb01efabd72b14eb033deddb226b|Pull integrity updates ]] * [[https://git.kernel.org/torvalds/c/52ff0779d6cfcce24c0204c22b0b4899dc55449d|Pull TPM updates ]] * [[https://git.kernel.org/torvalds/c/e80bc229691a4f601a2476e07cbdf08a289a2ad6|Pull smack updates ]] * [[https://git.kernel.org/torvalds/c/24ed334f33666f2ae929ccc08f72e7e72e353c64|Pull LoadPin updates ]] * [[https://git.kernel.org/torvalds/c/62606c224d72a98c35d21a849f95cccf95b0a252|Pull crypto updates ]] * [[https://git.kernel.org/torvalds/c/a67eefad996f007afc7c38efe8f45257fb1e3994|Pull printk updates ]] * [[https://git.kernel.org/torvalds/c/83c4087ce468601501ecde4d0ec5b2abd5f57c31|Pull cgroup updates ]] * [[https://git.kernel.org/torvalds/c/0d1e8b8d2bcd3150d51754d8d0fdbf44dc88b0d3|Pull KVM updates ]] * [[https://git.kernel.org/torvalds/c/c300af28572d05ae6891c359a7c8c2c81f01dccf|Pull RISC-V updates ]] * [[https://git.kernel.org/torvalds/c/da19a102ce87bf3e0a7fe277a659d1fc35330d6d|Pull rdma updates ]] * [[https://git.kernel.org/torvalds/c/9703fc8caf36ac65dca1538b23dd137de0b53233|Pull USB/PHY updates ]] * [[https://git.kernel.org/torvalds/c/26873acacbdbb4e4b444f5dd28dcc4853f0e8ba2|Pull driver core updates ]] * [[https://git.kernel.org/torvalds/c/18d0eae30e6a4f8644d589243d7ac1d70d29203d|Pull char/misc driver updates ]] * [[https://git.kernel.org/torvalds/c/d1f2b1710d92a80d60351503bbf41cdac95ed7a8|Pull IOMMU updates ]] * [[https://git.kernel.org/torvalds/c/befa93633193e5327e4045d1e5fa29114580fa5d|Pull more dma-mapping updates ]] * [[https://git.kernel.org/torvalds/c/0ef7791e2bfb2e10aa95dc492eab72074cef9942|Pull thermal SoC updates ]] * [[https://git.kernel.org/torvalds/c/b27186abb37b7bd19e0ca434f4f425c807dbd708|Pull Devicetree updates ]] * [[https://git.kernel.org/torvalds/c/6080ad3a9941e4707bb929445b813fadca9a27ff|Pull more block layer updates ]] * [[https://git.kernel.org/torvalds/c/71f4d95b23654ec2b347bd15b1260d68ca9ea5ea|Pull device mapper updates ]] * [[https://git.kernel.org/torvalds/c/7abe849315c870c1d3f3cb4b302e827aaa28348e|Pull md updates ]] * [[https://git.kernel.org/torvalds/c/033078a9afe504ac9e615d10c4b35d634450b637|Pull cifs updates ]] * [[https://git.kernel.org/torvalds/c/c7a2c49ea6c9eebbe44ff2c08b663b2905ee2c13|Pull NFS client updates ]] * [[https://git.kernel.org/torvalds/c/685f7e4f161425b137056abe35ba8ef7b669d83d|Pull powerpc updates ]] * [[https://git.kernel.org/torvalds/c/cc10ad25bbca3d2925adc32d51cb7a10b837d32c|Pull MIPS updates ]] * [[https://git.kernel.org/torvalds/c/345671ea0f9258f410eb057b9ced9cefbbe5dc78|Merge memory management updates from akpm]] * [[https://git.kernel.org/torvalds/c/c7b7eefa57ae3c8802fdec7d07ac4df6c49d1e7a|Pull RTC updates ]] * [[https://git.kernel.org/torvalds/c/ed3f4e239834317934cc73a187e27e44b217056b|Pull input updates ]] * [[https://git.kernel.org/torvalds/c/5ecf3e110c32c5756351eed067cdf6a91c308e62|Pull watchdog updates ]] * [[https://git.kernel.org/torvalds/c/dad4f140edaa3f6bb452b6913d41af1ffd672e45|Pull XArray conversion ]] * [[https://git.kernel.org/torvalds/c/f8cab69be0a8a756a7409f6d2bd1e6e96ce46482|Pull kselftest updates ]] * [[https://git.kernel.org/torvalds/c/ac747c0715f29c2be3848b719a1b7e65b07f7b21|Pull Kbuild updates ]] * [[https://git.kernel.org/torvalds/c/746bb4ed6d626f3f9e431a7f9b20504538e62ded|Pull VLA removal ]] * [[https://git.kernel.org/torvalds/c/53b3b6bbfde6aae8d1ededc86ad4e0e1e00eb5f8|Pull drm updates ]] * [[https://git.kernel.org/torvalds/c/ac435075892e3e651c667b4a9f2267cf3ef1d5a2|Pull C-SKY architecture port ]] * [[https://git.kernel.org/torvalds/c/7da4221b530f0427cc09bdaa5c5c1bd86d30583d|Pull 9p updates ]] * [[https://git.kernel.org/torvalds/c/79257514f532bd6e500267a061ae2cae4e3d28d5|Pull fsnotify updates ]] * [[https://git.kernel.org/torvalds/c/e64433d587635140fda898365978e6b6fe73ba4e|Pull ext2 and udf updates ]] * [[https://git.kernel.org/torvalds/c/fe675d4d3c6b96710d481346821839b4a817c672|Pull mailbox updates ]] * [[https://git.kernel.org/torvalds/c/738b04fba18d35cd352b7b15afefb8a7b798648e|Pull staging/IIO driver updates ]] * [[https://git.kernel.org/torvalds/c/5bd4af34a09a381a0f8b1552684650698937e6b0|Pull tty/serial updates ]] * [[https://git.kernel.org/torvalds/c/134bf98c5596605af90f104716ef912e8f7eb56b|Pull media updates ]] * [[https://git.kernel.org/torvalds/c/57dbde63f2888af1be5111d369d124f4e659c0f8|Pull i2c updates ]] * [[https://git.kernel.org/torvalds/c/c38239b4be1ac7e4bcf5bbd971353bae51525b8f|Pull parisc updates ]] * [[https://git.kernel.org/torvalds/c/93335e5911dbffccd3b74c4d214268c0fd2bc1b0|Pull ARM SoC device tree updates ]] * [[https://git.kernel.org/torvalds/c/53b7a3b7ec00f207c18e71f58ef2bca48635c622|Pull ARM SoC defconfig updates ]] * [[https://git.kernel.org/torvalds/c/b22b6beae6116e3a9c46ced312c626f6737a3fa6|Pull ARM SoC driver updates ]] * [[https://git.kernel.org/torvalds/c/4b42745211af552f170f38a1b97f4a112b5da6b2|Pull ARM SoC platform updates ]] * [[https://git.kernel.org/torvalds/c/929e134c43c95822663367c47fb211ca272309f7|Pull remoteproc updates ]] * [[https://git.kernel.org/torvalds/c/11743c56785c751c087eecdb98713eef796609e0|Pull rpmsg updates ]] * [[https://git.kernel.org/torvalds/c/85b5d4bcab8b46664f8e1993bd5919cb0f24a3ca|Pull more btrfs updates ]] * [[https://git.kernel.org/torvalds/c/6ef746769ef5cfef84cdfdf61ecbab5a6aa4651a|Pull more power management updates ]] * [[https://git.kernel.org/torvalds/c/c2101d01826480755f2bd9f3dd5e36757be61e23|Pull more ACPI updates ]] * [[https://git.kernel.org/torvalds/c/343a9f35409b68b6de66ecd0db90a277aee90ec2|Pull tracing updates ]] * [[https://git.kernel.org/torvalds/c/310c7585e8300ddc46211df0757c11e4299ec482|Pull nfsd updates ]] * [[https://git.kernel.org/torvalds/c/59fc453b21f767f2fb0ff4dc0a947e9b9c9e6d14|Merge more memory management updates from akpm ]] * [[https://git.kernel.org/torvalds/c/b3491d8430dd25f0a4e00c33d60da22a9bd9d052|Pull new experimental media request API ]] * [[https://git.kernel.org/torvalds/c/0c86e761b95131943c2b8af2ffb3c0554f9a71f5|Pull VFIO updates ]] * [[https://git.kernel.org/torvalds/c/519f64bf15dccb4f64af34b74ed186c32363ab59|Pull clk updates ]] * [[https://git.kernel.org/torvalds/c/d547d44e5c5dd82b32c2399632b254395a099072|Pull thermal management updates ]] * [[https://git.kernel.org/torvalds/c/a9ac6cc47bbb0fdd042012044f737ba13da10cb4|Pull fbdev updates ]] * [[https://git.kernel.org/torvalds/c/31990f0f5366a8f66688edae8688723b22034108|Pull ceph updates ]] * [[https://git.kernel.org/torvalds/c/9b5cf826ef8b607d452ba7bf683ae5510a745232|Pull fuse updates ]] * [[https://git.kernel.org/torvalds/c/9bb9d4fdce9e6b351b7b905f150745a0fccccc06|Pull UML updates ]] * [[https://git.kernel.org/torvalds/c/3dca04d694f16cc74dc87de9a13547e2ffec81d7|Pull more RISC-V updates ]] * [[https://git.kernel.org/torvalds/c/5b7449810ae6d652629c550d3974c8453836d229|Pull chrome-platform updates ]] * [[https://git.kernel.org/torvalds/c/eb7046e9bf466cebfcfbcdf640e41d9e3a80086c|Pull x86 platform driver updates ]] * [[https://git.kernel.org/torvalds/c/2d6bb6adb714b133db92ccd4bfc9c20f75f71f3f|Pull stackleak gcc plugin ]] * [[https://git.kernel.org/torvalds/c/b5b1de3537e2cd8f52971224a1be24bb3ce34a65|Pull virtio/vhost updates ]] * [[https://git.kernel.org/torvalds/c/7260935d71b6d582376543844185add72848dde8|Pull overlayfs updates ]] * [[https://git.kernel.org/torvalds/c/baa888d25ea64d0c59344d474284ca99cfdd449a|Pull keys updates ]] * [[https://git.kernel.org/torvalds/c/e468f5c06b5ebef3f6f3c187e51aa6daab667e57|Pull compiler attribute updates ]] * [[https://git.kernel.org/torvalds/c/9931a07d518e86eb58a75e508ed9626f86359303|Pull AFS updates ]] * [[https://git.kernel.org/torvalds/c/8adcc59974b8a65b7eac7d503364837c297139bc|Pull misc vfs updates ]] * [[https://git.kernel.org/torvalds/c/63c6e188f639b5828bf744e675270bb5e2adc139|Pull RISC-V defconfig update ]] * [[https://git.kernel.org/torvalds/c/d81f50bd34646d8373b989e55180c0fc9af94e0b|Pull apparmor updates ]] * [[https://git.kernel.org/torvalds/c/0b21f21ae0d746b385a827aceb84cb26c551eb94|Pull more EDAC updates ]] * [[https://git.kernel.org/torvalds/c/fcc37f76a995cc08546b88b83f9bb5da11307a0b|Pull pwm updates ]] * [[https://git.kernel.org/torvalds/c/cddfa11aef3c4914f406a059138ccc354f034d1c|Merge more memory management updates from akpm]] * [[https://git.kernel.org/torvalds/c/af102b333a21cc77c1834cf7a604d0359db9d54b|Pull more SCSI updates ]] * [[https://git.kernel.org/torvalds/c/169447287bfb0a8e494f33c04dda50bb078cf2f0|Pull cifs updates ]] * [[https://git.kernel.org/torvalds/c/9a12efc5e01ac1dbad089f22e5d0e6f817970c3c|Pull Kbuild updates ]] * [[https://git.kernel.org/torvalds/c/01897f3e05ede4d66c0f9df465fde1d67a1d733f|Pull perf updates and fixes ]] * [[https://git.kernel.org/torvalds/c/04578e8441c5420259a71eff9fede535858bfc6a|Pull NTB updates ]] * [[https://git.kernel.org/torvalds/c/35e7452442687d7bd70f042ddfa92f89311b039c|Pull more timer updates ]] * [[https://git.kernel.org/torvalds/c/42bd06e93d108a3ee5b8b4eaa350ec81853cb217|Pull UBIFS updates ]] = Other news sites = * LWN's merge window [[https://lwn.net/Articles/769477/|part 1]], [[https://lwn.net/Articles/770079/|part 2]], [[https://lwn.net/Articles/775440/|Development statistics]] * Phoronix [[https://www.phoronix.com/scan.php?page=article&item=linux-420-features&num=1|The Many New Features of The Linux 4.20 Kernel]] * heise.de (German): [[https://www.heise.de/ct/artikel/Linux-4-20-freigegeben-Performance-Optimierungen-und-neue-Treiber-4223066.html|Linux 4.20 freigegeben: Performance-Optimierungen und neue Treiber]]