<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>5a8cd539ac19f7a68e68e1d25ef9ca2ff55b8500 - Merge tag &apos;bpf-next-7.3&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#5a8cd539ac19f7a68e68e1d25ef9ca2ff55b8500</link>
        <description>Merge tag &apos;bpf-next-7.3&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextPull bpf updates from Daniel Borkmann: &quot;Major changes:   - Redesign the verifier error reporting: failures now carry source     and instruction annotations along with the causal event history     that led to them, making program rejections far easier to debug and     repair (Kumar Kartikeya Dwivedi)   - Add arena argument support to kfuncs and struct_ops through the new     __arena and __arena__nullable suffixes (Tejun Heo, Puranjay Mohan,     Kumar Kartikeya Dwivedi, Ihor Solodrai)   - Signed BPF program loader rework to accommodate both BPF and     security community needs where the kernel runs the signature     verification at BPF_PROG_LOAD time before the LSM admission hook     (Daniel Borkmann)   - Add a set of ksock kfuncs which let BPF LSM and syscall programs     create, connect and send on UDP sockets in order to emit telemetry     data (Mahe Tardy)   - Unify helper and kfunc call argument verification and classify     kfunc arguments purely from BTF into a generated bpf_func_proto     which is computed once at add-call time (Amery Hung)  Other features and fixes:   - Enable EXECMEM_ROX_CACHE for BPF allocations on x86 (Mike Rapoport)   - Add bidirectional VLAN support to bpf_fib_lookup() through the new     BPF_FIB_LOOKUP_VLAN and BPF_FIB_LOOKUP_VLAN_INPUT flags (Avinash     Duduskar)   - Infer zext_dst from static register liveness analysis to fix 32-bit     zero-extension semantics, and remove the artificial limitations on     pointer types eligible for spilling (Eduard Zingerman)   - Inline the numeric open-coded iterator kfuncs so that bpf_for()     loops no longer pay a kfunc call on every iteration (Puranjay     Mohan)   - Add an arena-based bitmap data structure to libarena along with     serial and parallel selftests (Emil Tsalapatis)   - Teach resolve_btfids to discover kfuncs from the kernel&apos;s BTF ID     sets and to emit kfunc BTF decl tags, reducing the kernel build&apos;s     dependency on pahole features (Ihor Solodrai)   - Add BPF_F_ADJ_ROOM_DECAP_* flags to bpf_skb_adjust_room() so that     tunnel decapsulation can update the GSO and encapsulation state of     the skb (Nick Hudson)   - Fix the ring buffer pending_pos walk and the available-data     accounting on 32-bit position wrap (Israel T&#233;llez Garc&#237;a)   - Add memory usage accounting for arena maps and fix an mmap_lock     deadlock on arena lock failure (Jiayuan Chen)   - Add tracing_multi link info support to the kernel UAPI and bpftool,     and refactor the stack map code to run with preemption disabled     (Jiri Olsa)   - Support BPF_F_EGRESS in bpf_redirect_peer() to emit the skb in the     egress direction of the target&apos;s peer device (Jordan Rife)   - Add a KF_SPINLOCK_SAFE kfunc flag so that providers, in particular     modules, can declare kfuncs safe to call under bpf_spin_lock     instead of relying on the verifier&apos;s hard-coded allowlist (Kaitao     Cheng)   - Introduce global percpu data for BPF programs with libbpf probing     and bpftool skeleton support, and stop exposing uninitialized     kernel heap memory when copying per-CPU map values (Leon Hwang)   - Add s390 JIT support for load-acquire and store-release     instructions (Maxim Khmelevskii)   - Fix a CFI mismatch in the task work callback and an arm64 KASAN     false positive after bpf_throw() (Mykyta Yatsenko)   - Reject writes through untrusted BTF pointers and bound the     rdonly/rdwr_buf_size kfunc arguments (Nicholas Dudar)   - Invalidate RCU pointers only after the final spin unlock and     account for preempt and IRQ disabled regions as overlapping RCU     protection (Ning Ding)   - Support mixing bpf2bpf calls and tail calls on RV64, add signed     operations and 32-bit atomics to the RV32 JIT, and add timed     may_goto support (Pu Lehui, Kuan-Wei Chiu, Feng Jiang)   - Fix a use-after-free on mm_struct in bpf_find_vma() for foreign     tasks and an mmap_lock leak in the irq_work path (Sanghyun Park)   - Populate mmap-able BPF array map memory lazily which makes mmap()     O(1) instead of proportional to the map size (Song Liu)   - Introduce a jit_required flag and reject programs with inlined     helpers when no JIT is available, where the interpreter would     otherwise jump into an invalid address (Tiezhu Yang)   - Fix the x86 JIT per-CPU address resolution into an extended     register where the REX prefix dropped the high destination register     bit (Vineet Gupta)   - Reject MEM_ALLOC BTF accesses past object bounds, arena frees below     the arena base, and mixed arena and ordinary atomic paths (Yiyang     Chen)   - Fix the trampoline handling of 128-bit arguments and of return     values larger than 8 bytes (Yonghong Song)   - Ensure that any fault prone load is rewritten with exception table     handling, and fix the arena load-acquire and atomic fetch handling     in the x86, arm64, riscv and s390 JITs (Daniel Borkmann)   - Many more fixes and cleanups across the verifier, arena,     trampolines, sockmap, cgroup, ring buffer, x86/arm64/riscv/s390     JITs, libbpf, bpftool, resolve_btfids and selftests&quot;* tag &apos;bpf-next-7.3&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next: (373 commits)  selftests/bpf: Add tests for a store on a fault prone qdisc pointer  selftests/bpf: Add tests for fault prone loads out of RCU pointers  selftests/bpf: Add tests for pointer type merge at a shared load  selftests/bpf: Remove duplicate copies of the arena spinlock qnodes  selftests/bpf: Retry stat generation in cgroup_iter_memcg  selftests/bpf: Test pseudo-function policy diagnostics  bpf: Distinguish function references in policy diagnostics  bpf: Preserve source attribution without source text  selftests/bpf: Test kfunc argument diagnostics  bpf: Correct kfunc argument diagnostics  bpf: Use canonical stack argument names in diagnostics  bpf: Preserve R0 lineage across helper calls  selftests/bpf: Exercise negative optlen in cgroup getsockopt hook  bpf: Reject negative optlen in cgroup getsockopt hook  selftests/bpf: tc_tunnel - validate decap GSO and encapsulation state  bpf: Clear decap state on skb_adjust_room shrink path  bpf: Allow new DECAP flags and add guard rails  bpf: Add BPF_F_ADJ_ROOM_DECAP_* flags for tunnel decapsulation  bpf: Refactor masks for ADJ_ROOM flags and encap validation  bpf: Name the enum for BPF_FUNC_skb_adjust_room flags  ...

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Thu, 20 Aug 2026 16:36:20 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>fab183d632628381b466a41479489541ac0e29a0 - sched_ext: Merge branch &apos;for-7.3-arena-args&apos; into for-7.3</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#fab183d632628381b466a41479489541ac0e29a0</link>
        <description>sched_ext: Merge branch &apos;for-7.3-arena-args&apos; into for-7.3Pull to receive the __arena argument conversion: 67f1f4a48c24 (&quot;sched_ext: Pass kernel arena pointers to ops_cid callbacks&quot;) a8dc810968af (&quot;sched_ext: Convert sub-cap kfuncs to __arena cmask arguments&quot;) a05c5b5cb5cf (&quot;sched_ext: Convert scx_bpf_cid_override() to __arena array arguments&quot;)along with the bpf-next branch carrying the __arena argument support theydepend on.Conflict in kernel/sched/ext/ext.c between: c384ab8a0b13 (&quot;sched_ext: Move the config-off sub-cap kfunc stubs into sub.c&quot;)and: a8dc810968af (&quot;sched_ext: Convert sub-cap kfuncs to __arena cmask arguments&quot;)which updated the stubs in their old ext.c location. Resolved by keepingext.c without the stubs and applying the prototype conversion to therelocated stubs in sub.c.Signed-off-by: Tejun Heo &lt;tj@kernel.org&gt;

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Mon, 17 Aug 2026 23:20:34 +0200</pubDate>
        <dc:creator>Tejun Heo &lt;tj@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>872a8f6b08069d1b4bfb9bf968dc629ab6998908 - Merge branch &apos;master&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next into for-7.3-arena-args</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#872a8f6b08069d1b4bfb9bf968dc629ab6998908</link>
        <description>Merge branch &apos;master&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next into for-7.3-arena-argsPull bpf-next d114bb989367 (&quot;Merge branch&apos;add-arena-argument-support-to-kfuncs-and-struct_ops&apos;&quot;) to make the __arenaand __arena__nullable kfunc and struct_ops argument suffixes available. Thesuffixed arguments will be used to convert sched_ext kfuncs and struct_opscallbacks that currently pass arena pointers as scalars and rebase them byhand.

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Tue, 11 Aug 2026 00:38:03 +0200</pubDate>
        <dc:creator>Tejun Heo &lt;tj@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>159d4fbb6ca5a527ffd0d37e9c8dae882038ae80 - Merge branch &apos;bpf-riscv-add-timed-may_goto-support&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#159d4fbb6ca5a527ffd0d37e9c8dae882038ae80</link>
        <description>Merge branch &apos;bpf-riscv-add-timed-may_goto-support&apos;Feng Jiang says:====================bpf, riscv: add timed may_goto supportThis series adds RISC-V JIT support for the timed may_goto loop bound.Patch 1 implements arch_bpf_timed_may_goto() and enablesbpf_jit_supports_timed_may_goto() so the verifier uses the timedexpansion path.Patch 2 adds a test that checks R0-R5 are preserved acrossarch_bpf_timed_may_goto() calls.Patch 3 enables the verifier_may_goto_1, stream_cond_break, andmay_goto_interaction fastcall tests on riscv64.Tested on riscv64 QEMU (rva23s64): may_goto programs load and JITcorrectly, and the 250ms timeout path works as expected.Signed-off-by: Feng Jiang &lt;jiangfeng@kylinos.cn&gt;Tested-by: Pu Lehui &lt;pulehui@huawei.com&gt;Reviewed-by: Bj&#246;rn T&#246;pel &lt;bjorn@kernel.org&gt;Acked-by: Bj&#246;rn T&#246;pel &lt;bjorn@kernel.org&gt;---Changes in v5:- Use REG_S/REG_L/SZREG in arch_bpf_timed_may_goto assembly. (Pu Lehui)- Add __arch_s390x to the timed_may_goto_preserves_regs test. (Pu Lehui)- Switch the preserves-regs test to SEC(&quot;syscall&quot;) to fix  bpf_prog_test_run() EINVAL.- Link to v4: https://lore.kernel.org/r/20260722-riscv-bpf-timed-may-goto-v4-0-e117e6337bc7@kylinos.cnChanges in v4:- Add &apos;bpf-next&apos; prefix to match the BPF kernel tree workflow.- Add a test checking that R0-R5 are preserved across  arch_bpf_timed_may_goto() calls. Use bpf_get_prandom_u32() to  prevent the verifier from removing the checks via DCE.- Rename may_goto_interaction_arm64() to may_goto_interaction().- Wrap the arch_bpf_timed_may_goto address check to a single line.- Link to v3: https://lore.kernel.org/r/20260715-riscv-bpf-timed-may-goto-v3-0-cf2a9c3d843f@kylinos.cnChanges in v3:- Set up the frame pointer in arch_bpf_timed_may_goto() so the function  does not break stack unwinding under CONFIG_FRAME_POINTER.Changes in v2:- Fix BPF_REG_0 being clobbered after arch_bpf_timed_may_goto() calls.- Enable the may_goto_interaction fastcall test on riscv64.---====================Link: https://patch.msgid.link/20260723-riscv-bpf-timed-may-goto-v5-0-86acb54e5642@kylinos.cnSigned-off-by: Kumar Kartikeya Dwivedi &lt;memxor@gmail.com&gt;

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Fri, 24 Jul 2026 22:20:10 +0200</pubDate>
        <dc:creator>Kumar Kartikeya Dwivedi &lt;memxor@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6ef8ff20c30b21b523fe1065713e8fabd0debca4 - bpf, riscv: Add support for timed may_goto</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#6ef8ff20c30b21b523fe1065713e8fabd0debca4</link>
        <description>bpf, riscv: Add support for timed may_gotoImplement arch_bpf_timed_may_goto() for the RV64 JIT. The argument andreturn value are carried in BPF_REG_AX, and BPF R0-R5 are preservedacross the call to the generic bpf_check_timed_may_goto().Enable bpf_jit_supports_timed_may_goto() so the verifier uses the timedexpansion path.Signed-off-by: Feng Jiang &lt;jiangfeng@kylinos.cn&gt;Reviewed-by: Pu Lehui &lt;pulehui@huawei.com&gt;Reviewed-by: Bj&#246;rn T&#246;pel &lt;bjorn@kernel.org&gt;Acked-by: Bj&#246;rn T&#246;pel &lt;bjorn@kernel.org&gt;Link: https://lore.kernel.org/bpf/20260723-riscv-bpf-timed-may-goto-v5-1-86acb54e5642@kylinos.cnSigned-off-by: Kumar Kartikeya Dwivedi &lt;memxor@gmail.com&gt;

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Thu, 23 Jul 2026 07:41:32 +0200</pubDate>
        <dc:creator>Feng Jiang &lt;jiangfeng@kylinos.cn&gt;</dc:creator>
    </item>
<item>
        <title>ead5d1f4d877e92c051e1a1ade623d0d30e71619 - Merge branch &apos;master&apos; into for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#ead5d1f4d877e92c051e1a1ade623d0d30e71619</link>
        <description>Merge branch &apos;master&apos; into for-nextSync with Linus&apos; branch in order to be able to apply fixupsof more recent patches.

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Tue, 01 Sep 2020 14:19:48 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>9e8238020c5beba64e7ffafbb7ea0fb02fe68270 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#9e8238020c5beba64e7ffafbb7ea0fb02fe68270</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 5.9 merge window.

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Sat, 08 Aug 2020 01:41:01 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>9b031c86506cef9acae45e61339fcf9deaabb793 - Merge branch &apos;elan-i2c&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#9b031c86506cef9acae45e61339fcf9deaabb793</link>
        <description>Merge branch &apos;elan-i2c&apos; into nextBring in update to Elan touchpad driver to support newer touchpads withhigher resolution.

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Wed, 22 Jul 2020 04:02:33 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>d053cf0d771f6547cb0537759a9af63cf402908d - Merge branch &apos;for-5.8&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#d053cf0d771f6547cb0537759a9af63cf402908d</link>
        <description>Merge branch &apos;for-5.8&apos; into for-linus

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Mon, 01 Jun 2020 10:15:16 +0200</pubDate>
        <dc:creator>Petr Mladek &lt;pmladek@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>1f422417945d08731e2915e0addb976f11b3a85a - Merge branch &apos;timers/drivers/timer-ti&apos; into timers/drivers/next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#1f422417945d08731e2915e0addb976f11b3a85a</link>
        <description>Merge branch &apos;timers/drivers/timer-ti&apos; into timers/drivers/next

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Sat, 23 May 2020 00:01:13 +0200</pubDate>
        <dc:creator>Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>68f0f2690e183306b52671a9ad09fb31808b0500 - Merge branch &apos;for-mingo&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu into core/rcu</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#68f0f2690e183306b52671a9ad09fb31808b0500</link>
        <description>Merge branch &apos;for-mingo&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu into core/rcuPull RCU updates from Paul McKenney:  1. Miscellaneous fixes.  2. kfree_rcu() updates.  3. Remove scheduler locking restriction  4. RCU-tasks update, including addition of RCU Tasks Trace for     BPF use and RCU Tasks Rude.  (This branch is on top of #3 due     to overlap of changed code.)  5. RCU CPU stall warning updates.  6. Torture-test updates.

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Mon, 11 May 2020 22:54:30 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>4353dd3b70783ebbc83fcf12d9c0af3fbab0223b - Merge tag &apos;efi-next&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi into efi/core</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#4353dd3b70783ebbc83fcf12d9c0af3fbab0223b</link>
        <description>Merge tag &apos;efi-next&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi into efi/corePull EFI changes for v5.8 from Ard Biesheuvel:&quot;- preliminary changes for RISC-V - add support for setting the resolution on the EFI framebuffer - simplify kernel image loading for arm64 - Move .bss into .data via the linker script instead of relying on symbol   annotations. - Get rid of __pure getters to access global variables - Clean up the config table matching arrays&quot;Signed-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Sat, 25 Apr 2020 10:25:02 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>36dbae9945322e660795e73ffc8ed8ae4f25d13d - Merge branch &apos;topic/nhlt&apos; into for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#36dbae9945322e660795e73ffc8ed8ae4f25d13d</link>
        <description>Merge branch &apos;topic/nhlt&apos; into for-nextMerge NHLT init cleanup.Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Fri, 24 Apr 2020 08:22:16 +0200</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>41d91ec3de8a90167159275bde7ed65768723556 - Merge tag &apos;tegra-for-5.7-asoc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux into asoc-5.7</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#41d91ec3de8a90167159275bde7ed65768723556</link>
        <description>Merge tag &apos;tegra-for-5.7-asoc&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux into asoc-5.7ASoC: tegra: Fixes for v5.7-rc3This contains a couple of fixes that are needed to properly reconfigurethe audio clocks on older Tegra devices.

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Wed, 22 Apr 2020 09:51:44 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>175ae3ad59ab3459652bd2ae3bbc1785aeba1bf3 - Merge branch &apos;fixes-v5.7&apos; into fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#175ae3ad59ab3459652bd2ae3bbc1785aeba1bf3</link>
        <description>Merge branch &apos;fixes-v5.7&apos; into fixes

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Tue, 21 Apr 2020 18:36:03 +0200</pubDate>
        <dc:creator>Tony Lindgren &lt;tony@atomide.com&gt;</dc:creator>
    </item>
<item>
        <title>08d99b2c23dfa84ca5b5e5c194062a0550888b71 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#08d99b2c23dfa84ca5b5e5c194062a0550888b71</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging required to pull topic/phy-compliance.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Fri, 17 Apr 2020 08:12:22 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>2b703bbda2713fd2a7d98029ea6c44f9c3159f34 - Merge drm/drm-next into drm-intel-next-queued</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#2b703bbda2713fd2a7d98029ea6c44f9c3159f34</link>
        <description>Merge drm/drm-next into drm-intel-next-queuedBackmerging in order to pull &quot;topic/phy-compliance&quot;.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Thu, 16 Apr 2020 13:35:16 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>a4721ced760684d1776bf31f7925aa41bb3f4846 - Merge v5.7-rc1 into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#a4721ced760684d1776bf31f7925aa41bb3f4846</link>
        <description>Merge v5.7-rc1 into drm-misc-fixesStart the new drm-misc-fixes cycle.Signed-off-by: Maxime Ripard &lt;maxime@cerno.tech&gt;

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Tue, 14 Apr 2020 09:19:50 +0200</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime@cerno.tech&gt;</dc:creator>
    </item>
<item>
        <title>3b02a051d25d9600e9d403ad3043aed7de00160e - Merge tag &apos;v5.7-rc1&apos; into locking/kcsan, to resolve conflicts and refresh</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#3b02a051d25d9600e9d403ad3043aed7de00160e</link>
        <description>Merge tag &apos;v5.7-rc1&apos; into locking/kcsan, to resolve conflicts and refreshResolve these conflicts:	arch/x86/Kconfig	arch/x86/kernel/MakefileDo a minor &quot;evil merge&quot; to move the KCSAN entry up a bit by a few linesin the Kconfig to reduce the probability of future conflicts.Signed-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Mon, 13 Apr 2020 09:44:39 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>29d9f30d4ce6c7a38745a54a8cddface10013490 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/arch/riscv/net/Makefile#29d9f30d4ce6c7a38745a54a8cddface10013490</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-nextPull networking updates from David Miller: &quot;Highlights:   1) Fix the iwlwifi regression, from Johannes Berg.   2) Support BSS coloring and 802.11 encapsulation offloading in      hardware, from John Crispin.   3) Fix some potential Spectre issues in qtnfmac, from Sergey      Matyukevich.   4) Add TTL decrement action to openvswitch, from Matteo Croce.   5) Allow paralleization through flow_action setup by not taking the      RTNL mutex, from Vlad Buslov.   6) A lot of zero-length array to flexible-array conversions, from      Gustavo A. R. Silva.   7) Align XDP statistics names across several drivers for consistency,      from Lorenzo Bianconi.   8) Add various pieces of infrastructure for offloading conntrack, and      make use of it in mlx5 driver, from Paul Blakey.   9) Allow using listening sockets in BPF sockmap, from Jakub Sitnicki.  10) Lots of parallelization improvements during configuration changes      in mlxsw driver, from Ido Schimmel.  11) Add support to devlink for generic packet traps, which report      packets dropped during ACL processing. And use them in mlxsw      driver. From Jiri Pirko.  12) Support bcmgenet on ACPI, from Jeremy Linton.  13) Make BPF compatible with RT, from Thomas Gleixnet, Alexei      Starovoitov, and your&apos;s truly.  14) Support XDP meta-data in virtio_net, from Yuya Kusakabe.  15) Fix sysfs permissions when network devices change namespaces, from      Christian Brauner.  16) Add a flags element to ethtool_ops so that drivers can more simply      indicate which coalescing parameters they actually support, and      therefore the generic layer can validate the user&apos;s ethtool      request. Use this in all drivers, from Jakub Kicinski.  17) Offload FIFO qdisc in mlxsw, from Petr Machata.  18) Support UDP sockets in sockmap, from Lorenz Bauer.  19) Fix stretch ACK bugs in several TCP congestion control modules,      from Pengcheng Yang.  20) Support virtual functiosn in octeontx2 driver, from Tomasz      Duszynski.  21) Add region operations for devlink and use it in ice driver to dump      NVM contents, from Jacob Keller.  22) Add support for hw offload of MACSEC, from Antoine Tenart.  23) Add support for BPF programs that can be attached to LSM hooks,      from KP Singh.  24) Support for multiple paths, path managers, and counters in MPTCP.      From Peter Krystad, Paolo Abeni, Florian Westphal, Davide Caratti,      and others.  25) More progress on adding the netlink interface to ethtool, from      Michal Kubecek&quot;* git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (2121 commits)  net: ipv6: rpl_iptunnel: Fix potential memory leak in rpl_do_srh_inline  cxgb4/chcr: nic-tls stats in ethtool  net: dsa: fix oops while probing Marvell DSA switches  net/bpfilter: remove superfluous testing message  net: macb: Fix handling of fixed-link node  net: dsa: ksz: Select KSZ protocol tag  netdevsim: dev: Fix memory leak in nsim_dev_take_snapshot_write  net: stmmac: add EHL 2.5Gbps PCI info and PCI ID  net: stmmac: add EHL PSE0 &amp; PSE1 1Gbps PCI info and PCI ID  net: stmmac: create dwmac-intel.c to contain all Intel platform  net: dsa: bcm_sf2: Support specifying VLAN tag egress rule  net: dsa: bcm_sf2: Add support for matching VLAN TCI  net: dsa: bcm_sf2: Move writing of CFP_DATA(5) into slicing functions  net: dsa: bcm_sf2: Check earlier for FLOW_EXT and FLOW_MAC_EXT  net: dsa: bcm_sf2: Disable learning for ASP port  net: dsa: b53: Deny enslaving port 7 for 7278 into a bridge  net: dsa: b53: Prevent tagged VLAN on port 7 for 7278  net: dsa: b53: Restore VLAN entries upon (re)configuration  net: dsa: bcm_sf2: Fix overflow checks  hv_netvsc: Remove unnecessary round_up for recv_completion_cnt  ...

            List of files:
            /linux/arch/riscv/net/Makefile</description>
        <pubDate>Wed, 01 Apr 2020 02:29:33 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
</channel>
</rss>
