{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":161632588,"defaultBranch":"em-6.6.x","name":"linux-em","ownerLogin":"tq-systems","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2018-12-13T11:57:47.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/1539996?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1715602474.0","currentOid":""},"activityList":{"items":[{"before":"a5131c3fdf2608f1c15f3809e201cf540eb28489","after":"1b294a1f35616977caddaddf3e9d28e576a1adbc","ref":"refs/heads/master","pushedAt":"2024-05-15T07:53:59.000Z","pushType":"push","commitsCount":3383,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'net-next-6.10' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next\n\nPull networking updates from Jakub Kicinski:\n \"Core & protocols:\n\n - Complete rework of garbage collection of AF_UNIX sockets.\n\n AF_UNIX is prone to forming reference count cycles due to fd\n passing functionality. New method based on Tarjan's Strongly\n Connected Components algorithm should be both faster and remove a\n lot of workarounds we accumulated over the years.\n\n - Add TCP fraglist GRO support, allowing chaining multiple TCP\n packets and forwarding them together. Useful for small switches /\n routers which lack basic checksum offload in some scenarios (e.g.\n PPPoE).\n\n - Support using SMP threads for handling packet backlog i.e. packet\n processing from software interfaces and old drivers which don't use\n NAPI. This helps move the processing out of the softirq jumble.\n\n - Continue work of converting from rtnl lock to RCU protection.\n\n Don't require rtnl lock when reading: IPv6 routing FIB, IPv6\n address labels, netdev threaded NAPI sysfs files, bonding driver's\n sysfs files, MPLS devconf, IPv4 FIB rules, netns IDs, tcp metrics,\n TC Qdiscs, neighbor entries, ARP entries via ioctl(SIOCGARP), a lot\n of the link information available via rtnetlink.\n\n - Small optimizations from Eric to UDP wake up handling, memory\n accounting, RPS/RFS implementation, TCP packet sizing etc.\n\n - Allow direct page recycling in the bulk API used by XDP, for +2%\n PPS.\n\n - Support peek with an offset on TCP sockets.\n\n - Add MPTCP APIs for querying last time packets were received/sent/acked\n and whether MPTCP \"upgrade\" succeeded on a TCP socket.\n\n - Add intra-node communication shortcut to improve SMC performance.\n\n - Add IPv6 (and IPv{4,6}-over-IPv{4,6}) support to the GTP protocol\n driver.\n\n - Add HSR-SAN (RedBOX) mode of operation to the HSR protocol driver.\n\n - Add reset reasons for tracing what caused a TCP reset to be sent.\n\n - Introduce direction attribute for xfrm (IPSec) states. State can be\n used either for input or output packet processing.\n\n Things we sprinkled into general kernel code:\n\n - Add bitmap_{read,write}(), bitmap_size(), expose BYTES_TO_BITS().\n\n This required touch-ups and renaming of a few existing users.\n\n - Add Endian-dependent __counted_by_{le,be} annotations.\n\n - Make building selftests \"quieter\" by printing summaries like\n \"CC object.o\" rather than full commands with all the arguments.\n\n Netfilter:\n\n - Use GFP_KERNEL to clone elements, to deal better with OOM\n situations and avoid failures in the .commit step.\n\n BPF:\n\n - Add eBPF JIT for ARCv2 CPUs.\n\n - Support attaching kprobe BPF programs through kprobe_multi link in\n a session mode, meaning, a BPF program is attached to both function\n entry and return, the entry program can decide if the return\n program gets executed and the entry program can share u64 cookie\n value with return program. \"Session mode\" is a common use-case for\n tetragon and bpftrace.\n\n - Add the ability to specify and retrieve BPF cookie for raw\n tracepoint programs in order to ease migration from classic to raw\n tracepoints.\n\n - Add an internal-only BPF per-CPU instruction for resolving per-CPU\n memory addresses and implement support in x86, ARM64 and RISC-V\n JITs. This allows inlining functions which need to access per-CPU\n state.\n\n - Optimize x86 BPF JIT's emit_mov_imm64, and add support for various\n atomics in bpf_arena which can be JITed as a single x86\n instruction. Support BPF arena on ARM64.\n\n - Add a new bpf_wq API for deferring events and refactor\n process-context bpf_timer code to keep common code where possible.\n\n - Harden the BPF verifier's and/or/xor value tracking.\n\n - Introduce crypto kfuncs to let BPF programs call kernel crypto\n APIs.\n\n - Support bpf_tail_call_static() helper for BPF programs with GCC 13.\n\n - Add bpf_preempt_{disable,enable}() kfuncs in order to allow a BPF\n program to have code sections where preemption is disabled.\n\n Driver API:\n\n - Skip software TC processing completely if all installed rules are\n marked as HW-only, instead of checking the HW-only flag rule by\n rule.\n\n - Add support for configuring PoE (Power over Ethernet), similar to\n the already existing support for PoDL (Power over Data Line)\n config.\n\n - Initial bits of a queue control API, for now allowing a single\n queue to be reset without disturbing packet flow to other queues.\n\n - Common (ethtool) statistics for hardware timestamping.\n\n Tests and tooling:\n\n - Remove the need to create a config file to run the net forwarding\n tests so that a naive \"make run_tests\" can exercise them.\n\n - Define a method of writing tests which require an external endpoint\n to communicate with (to send/receive data towards the test\n machine). Add a few such tests.\n\n - Create a shared code library for writing Python tests. Expose the\n YAML Netlink library from tools/ to the tests for easy Netlink\n access.\n\n - Move netfilter tests under net/, extend them, separate performance\n tests from correctness tests, and iron out issues found by running\n them \"on every commit\".\n\n - Refactor BPF selftests to use common network helpers.\n\n - Further work filling in YAML definitions of Netlink messages for:\n nftables, team driver, bonding interfaces, vlan interfaces, VF\n info, TC u32 mark, TC police action.\n\n - Teach Python YAML Netlink to decode attribute policies.\n\n - Extend the definition of the \"indexed array\" construct in the specs\n to cover arrays of scalars rather than just nests.\n\n - Add hyperlinks between definitions in generated Netlink docs.\n\n Drivers:\n\n - Make sure unsupported flower control flags are rejected by drivers,\n and make more drivers report errors directly to the application\n rather than dmesg (large number of driver changes from Asbjørn\n Sloth Tønnesen).\n\n - Ethernet high-speed NICs:\n - Broadcom (bnxt):\n - support multiple RSS contexts and steering traffic to them\n - support XDP metadata\n - make page pool allocations more NUMA aware\n - Intel (100G, ice, idpf):\n - extract datapath code common among Intel drivers into a library\n - use fewer resources in switchdev by sharing queues with the PF\n - add PFCP filter support\n - add Ethernet filter support\n - use a spinlock instead of HW lock in PTP clock ops\n - support 5 layer Tx scheduler topology\n - nVidia/Mellanox:\n - 800G link modes and 100G SerDes speeds\n - per-queue IRQ coalescing configuration\n - Marvell Octeon:\n - support offloading TC packet mark action\n\n - Ethernet NICs consumer, embedded and virtual:\n - stop lying about skb->truesize in USB Ethernet drivers, it\n messes up TCP memory calculations\n - Google cloud vNIC:\n - support changing ring size via ethtool\n - support ring reset using the queue control API\n - VirtIO net:\n - expose flow hash from RSS to XDP\n - per-queue statistics\n - add selftests\n - Synopsys (stmmac):\n - support controllers which require an RX clock signal from the\n MII bus to perform their hardware initialization\n - TI:\n - icssg_prueth: support ICSSG-based Ethernet on AM65x SR1.0 devices\n - icssg_prueth: add SW TX / RX Coalescing based on hrtimers\n - cpsw: minimal XDP support\n - Renesas (ravb):\n - support describing the MDIO bus\n - Realtek (r8169):\n - add support for RTL8168M\n - Microchip Sparx5:\n - matchall and flower actions mirred and redirect\n\n - Ethernet switches:\n - nVidia/Mellanox:\n - improve events processing performance\n - Marvell:\n - add support for MV88E6250 family internal PHYs\n - Microchip:\n - add DCB and DSCP mapping support for KSZ switches\n - vsc73xx: convert to PHYLINK\n - Realtek:\n - rtl8226b/rtl8221b: add C45 instances and SerDes switching\n\n - Many driver changes related to PHYLIB and PHYLINK deprecated API\n cleanup\n\n - Ethernet PHYs:\n - Add a new driver for Airoha EN8811H 2.5 Gigabit PHY.\n - micrel: lan8814: add support for PPS out and external timestamp trigger\n\n - WiFi:\n - Disable Wireless Extensions (WEXT) in all Wi-Fi 7 devices\n drivers. Modern devices can only be configured using nl80211.\n - mac80211/cfg80211\n - handle color change per link for WiFi 7 Multi-Link Operation\n - Intel (iwlwifi):\n - don't support puncturing in 5 GHz\n - support monitor mode on passive channels\n - BZ-W device support\n - P2P with HE/EHT support\n - re-add support for firmware API 90\n - provide channel survey information for Automatic Channel Selection\n - MediaTek (mt76):\n - mt7921 LED control\n - mt7925 EHT radiotap support\n - mt7920e PCI support\n - Qualcomm (ath11k):\n - P2P support for QCA6390, WCN6855 and QCA2066\n - support hibernation\n - ieee80211-freq-limit Device Tree property support\n - Qualcomm (ath12k):\n - refactoring in preparation of multi-link support\n - suspend and hibernation support\n - ACPI support\n - debugfs support, including dfs_simulate_radar support\n - RealTek:\n - rtw88: RTL8723CS SDIO device support\n - rtw89: RTL8922AE Wi-Fi 7 PCI device support\n - rtw89: complete features of new WiFi 7 chip 8922AE including\n BT-coexistence and Wake-on-WLAN\n - rtw89: use BIOS ACPI settings to set TX power and channels\n - rtl8xxxu: enable Management Frame Protection (MFP) support\n\n - Bluetooth:\n - support for Intel BlazarI and Filmore Peak2 (BE201)\n - support for MediaTek MT7921S SDIO\n - initial support for Intel PCIe BT driver\n - remove HCI_AMP support\"\n\n* tag 'net-next-6.10' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (1827 commits)\n selftests: netfilter: fix packetdrill conntrack testcase\n net: gro: fix napi_gro_cb zeroed alignment\n Bluetooth: btintel_pcie: Refactor and code cleanup\n Bluetooth: btintel_pcie: Fix warning reported by sparse\n Bluetooth: hci_core: Fix not handling hdev->le_num_of_adv_sets=1\n Bluetooth: btintel: Fix compiler warning for multi_v7_defconfig config\n Bluetooth: btintel_pcie: Fix compiler warnings\n Bluetooth: btintel_pcie: Add *setup* function to download firmware\n Bluetooth: btintel_pcie: Add support for PCIe transport\n Bluetooth: btintel: Export few static functions\n Bluetooth: HCI: Remove HCI_AMP support\n Bluetooth: L2CAP: Fix div-by-zero in l2cap_le_flowctl_init()\n Bluetooth: qca: Fix error code in qca_read_fw_build_info()\n Bluetooth: hci_conn: Use __counted_by() and avoid -Wfamnae warning\n Bluetooth: btintel: Add support for Filmore Peak2 (BE201)\n Bluetooth: btintel: Add support for BlazarI\n LE Create Connection command timeout increased to 20 secs\n dt-bindings: net: bluetooth: Add MediaTek MT7921S SDIO Bluetooth\n Bluetooth: compute LE flow credits based on recvbuf space\n Bluetooth: hci_sync: Use cmd->num_cis instead of magic number\n ...","shortMessageHtmlLink":"Merge tag 'net-next-6.10' of git://git.kernel.org/pub/scm/linux/kerne…"}},{"before":"a38297e3fb012ddfa7ce0321a7e5a8daeb1872b6","after":"a5131c3fdf2608f1c15f3809e201cf540eb28489","ref":"refs/heads/master","pushedAt":"2024-05-14T14:47:55.000Z","pushType":"push","commitsCount":1768,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'x86-shstk-2024-05-13' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip\n\nPull x86 shadow stacks from Ingo Molnar:\n \"Enable shadow stacks for x32.\n\n While we normally don't do such feature-enabling for 32-bit anymore,\n this change is small, straightforward & tested on upstream glibc\"\n\n* tag 'x86-shstk-2024-05-13' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:\n x86/shstk: Enable shadow stacks for x32","shortMessageHtmlLink":"Merge tag 'x86-shstk-2024-05-13' of git://git.kernel.org/pub/scm/linu…"}},{"before":"e67572cd2204894179d89bd7b984072f19313b03","after":"a38297e3fb012ddfa7ce0321a7e5a8daeb1872b6","ref":"refs/heads/master","pushedAt":"2024-05-13T12:14:34.000Z","pushType":"push","commitsCount":509,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Linux 6.9","shortMessageHtmlLink":"Linux 6.9"}},{"before":"b610bf55cb29b8f4eac184c010fcf885a1faea8e","after":"e552d976774149f65ad58428dad5ec5188ec12bb","ref":"refs/heads/em-6.6.x","pushedAt":"2024-05-02T08:45:23.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"krutztq","name":null,"path":"/krutztq","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45815208?s=80&v=4"},"commit":{"message":"Merge branch 'em-6.6.x' into 'em-6.6.x'\n\narm64: dts: imx8mn-em4xx: clean-up pad configs\n\nSee merge request tq-em/base/linux!35","shortMessageHtmlLink":"Merge branch 'em-6.6.x' into 'em-6.6.x'"}},{"before":"9430f5105f76bd43bf0c2e33835f5b8ea720d72c","after":"b610bf55cb29b8f4eac184c010fcf885a1faea8e","ref":"refs/heads/em-6.6.x","pushedAt":"2024-04-30T14:45:41.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"krutztq","name":null,"path":"/krutztq","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45815208?s=80&v=4"},"commit":{"message":"Merge branch 'em-6.6.x-phy-ids' into 'em-6.6.x'\n\narm64: dts: ti: k3-am625-em-cb30: specify Ethernet PHY ID\n\nSee merge request tq-em/base/linux!36","shortMessageHtmlLink":"Merge branch 'em-6.6.x-phy-ids' into 'em-6.6.x'"}},{"before":"e88c4cfcb7b888ac374916806f86c17d8ecaeb67","after":"e67572cd2204894179d89bd7b984072f19313b03","ref":"refs/heads/master","pushedAt":"2024-04-29T09:57:02.000Z","pushType":"push","commitsCount":329,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Linux 6.9-rc6","shortMessageHtmlLink":"Linux 6.9-rc6"}},{"before":"9d1ddab261f3e2af7c384dc02238784ce0cf9f98","after":"e88c4cfcb7b888ac374916806f86c17d8ecaeb67","ref":"refs/heads/master","pushedAt":"2024-04-25T14:38:58.000Z","pushType":"push","commitsCount":6,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'for-6.9-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux\n\nPull btrfs fixes from David Sterba:\n\n - fix information leak by the buffer returned from LOGICAL_INO ioctl\n\n - fix flipped condition in scrub when tracking sectors in zoned mode\n\n - fix calculation when dropping extent range\n\n - reinstate fallback to write uncompressed data in case of fragmented\n space that could not store the entire compressed chunk\n\n - minor fix to message formatting style to make it conforming to the\n commonly used style\n\n* tag 'for-6.9-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux:\n btrfs: fix wrong block_start calculation for btrfs_drop_extent_map_range()\n btrfs: fix information leak in btrfs_ioctl_logical_to_ino()\n btrfs: fallback if compressed IO fails for ENOSPC\n btrfs: scrub: run relocation repair when/only needed\n btrfs: remove colon from messages with state","shortMessageHtmlLink":"Merge tag 'for-6.9-rc5-tag' of git://git.kernel.org/pub/scm/linux/ker…"}},{"before":"dbf6c87ffe827cb12ee3fa3a5247f07dd110af60","after":"9430f5105f76bd43bf0c2e33835f5b8ea720d72c","ref":"refs/heads/em-6.6.x","pushedAt":"2024-04-25T08:03:37.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"krutztq","name":null,"path":"/krutztq","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45815208?s=80&v=4"},"commit":{"message":"Merge branch 'em-6.6.x-em-cb30' into 'em-6.6.x'\n\narm64: dts: ti: k3-am625-em-cb30: fix pinctrl for V_5_RS485_FAULT#\n\nSee merge request tq-em/base/linux!34","shortMessageHtmlLink":"Merge branch 'em-6.6.x-em-cb30' into 'em-6.6.x'"}},{"before":"26156227fc759b1c92b96691299fe29a43a4c63d","after":"dbf6c87ffe827cb12ee3fa3a5247f07dd110af60","ref":"refs/heads/em-6.6.x","pushedAt":"2024-04-24T13:23:36.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"krutztq","name":null,"path":"/krutztq","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45815208?s=80&v=4"},"commit":{"message":"Merge branch 'em-6.6.x-imx' into 'em-6.6.x'\n\nFix PORT IO pinctrl conflict and CS polarity on EGW\n\nSee merge request tq-em/base/linux!33","shortMessageHtmlLink":"Merge branch 'em-6.6.x-imx' into 'em-6.6.x'"}},{"before":null,"after":"f393ce11aff5b1ea1eabfdfabe16dfe5042245aa","ref":"refs/heads/em-6.1.x","pushedAt":"2024-04-24T13:23:36.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"krutztq","name":null,"path":"/krutztq","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45815208?s=80&v=4"},"commit":{"message":"Merge branch 'em-6.1.x' into 'em-6.1.x'\n\nLinux-EM Vereinheitlichung und Update auf stable v6.1.x\n\nSee merge request tq-em/base/linux!26","shortMessageHtmlLink":"Merge branch 'em-6.1.x' into 'em-6.1.x'"}},{"before":"71b1543c83d65af8215d7558d70fc2ecbee77dcf","after":"9d1ddab261f3e2af7c384dc02238784ce0cf9f98","ref":"refs/heads/master","pushedAt":"2024-04-24T11:28:43.000Z","pushType":"push","commitsCount":5,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag '6.9-rc5-smb-client-fixes' of git://git.samba.org/sfrench/cifs-2.6\n\nPull smb client fixes from Steve French:\n\n - fscache fix\n\n - fix for case where we could use uninitialized lease\n\n - add tracepoint for debugging refcounting of tcon\n\n - fix mount option regression (e.g. forceuid vs. noforceuid when uid=\n specified) caused by conversion to the new mount API\n\n* tag '6.9-rc5-smb-client-fixes' of git://git.samba.org/sfrench/cifs-2.6:\n cifs: reinstate original behavior again for forceuid/forcegid\n smb: client: fix rename(2) regression against samba\n cifs: Add tracing for the cifs_tcon struct refcounting\n cifs: Fix reacquisition of volume cookie on still-live connection","shortMessageHtmlLink":"Merge tag '6.9-rc5-smb-client-fixes' of git://git.samba.org/sfrench/c…"}},{"before":"4d2008430ce87061c9cefd4f83daf2d5bb323a96","after":"71b1543c83d65af8215d7558d70fc2ecbee77dcf","ref":"refs/heads/master","pushedAt":"2024-04-23T08:07:20.000Z","pushType":"push","commitsCount":24,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag '6.9-rc5-ksmbd-fixes' of git://git.samba.org/ksmbd\n\nPull smb server fixes from Steve French:\n \"Five ksmbd server fixes, most also for stable:\n\n - rename fix\n\n - two fixes for potential out of bounds\n\n - fix for connections from MacOS (padding in close response)\n\n - fix for when to enable persistent handles\"\n\n* tag '6.9-rc5-ksmbd-fixes' of git://git.samba.org/ksmbd:\n ksmbd: add continuous availability share parameter\n ksmbd: common: use struct_group_attr instead of struct_group for network_open_info\n ksmbd: clear RENAME_NOREPLACE before calling vfs_rename\n ksmbd: validate request buffer size in smb2_allocate_rsp_buf()\n ksmbd: fix slab-out-of-bounds in smb2_allocate_rsp_buf","shortMessageHtmlLink":"Merge tag '6.9-rc5-ksmbd-fixes' of git://git.samba.org/ksmbd"}},{"before":"f45333c30df0daeafccf46689014c0245f0b369b","after":"26156227fc759b1c92b96691299fe29a43a4c63d","ref":"refs/heads/em-6.6.x","pushedAt":"2024-04-23T07:57:27.000Z","pushType":"push","commitsCount":1547,"pusher":{"login":"krutztq","name":null,"path":"/krutztq","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45815208?s=80&v=4"},"commit":{"message":"Merge branch 'em-6.6.x-imx' into 'em-6.6.x'\n\nUpdate to 6.6.28, add EM4xx-CB, EGW and EM310 support from 6.1 branch\n\nSee merge request tq-em/base/linux!32","shortMessageHtmlLink":"Merge branch 'em-6.6.x-imx' into 'em-6.6.x'"}},{"before":"3cdb455946193bb7ad13df15333c7fe0054db6c3","after":"4d2008430ce87061c9cefd4f83daf2d5bb323a96","ref":"refs/heads/master","pushedAt":"2024-04-22T19:29:24.000Z","pushType":"push","commitsCount":164,"pusher":{"login":"krutztq","name":null,"path":"/krutztq","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45815208?s=80&v=4"},"commit":{"message":"Merge tag 'docs-6.9-fixes2' of git://git.lwn.net/linux\n\nPull documentation fixes from Jonathan Corbet:\n \"A set of updates from Thorsten to his (new) guide to verifying bugs\n and tracking down regressions\"\n\n* tag 'docs-6.9-fixes2' of git://git.lwn.net/linux:\n docs: verify/bisect: stable regressions: first stable, then mainline\n docs: verify/bisect: describe how to use a build host\n docs: verify/bisect: explain testing reverts, patches and newer code\n docs: verify/bisect: proper headlines and more spacing\n docs: verify/bisect: add and fetch stable branches ahead of time\n docs: verify/bisect: use git switch, tag kernel, and various fixes","shortMessageHtmlLink":"Merge tag 'docs-6.9-fixes2' of git://git.lwn.net/linux"}},{"before":null,"after":"7c5fe81ab0bbeed0a7e8339d31cf722299478d15","ref":"refs/heads/4.9.x+fslc","pushedAt":"2024-04-22T08:58:16.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"krutztq","name":null,"path":"/krutztq","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45815208?s=80&v=4"},"commit":{"message":"Merge tag 'v4.9.75' into 4.9.x+fslc\n\nThis is the 4.9.75 stable release\n\n* tag 'v4.9.75': (1351 commits)\n Linux 4.9.75\n kaiser: Set _PAGE_NX only if supported\n KPTI: Report when enabled\n KPTI: Rename to PAGE_TABLE_ISOLATION\n x86/kaiser: Move feature detection up\n kaiser: disabled on Xen PV\n x86/kaiser: Reenable PARAVIRT\n x86/paravirt: Dont patch flush_tlb_single\n kaiser: kaiser_flush_tlb_on_return_to_user() check PCID\n kaiser: asm/tlbflush.h handle noPGE at lower level\n kaiser: drop is_atomic arg to kaiser_pagetable_walk()\n kaiser: use ALTERNATIVE instead of x86_cr3_pcid_noflush\n x86/kaiser: Check boottime cmdline params\n x86/kaiser: Rename and simplify X86_FEATURE_KAISER handling\n kaiser: add \"nokaiser\" boot option, using ALTERNATIVE\n kaiser: fix unlikely error in alloc_ldt_struct()\n kaiser: kaiser_remove_mapping() move along the pgd\n kaiser: paranoid_entry pass cr3 need to paranoid_exit\n kaiser: x86_cr3_pcid_noflush and x86_cr3_pcid_user\n kaiser: PCID 0 for kernel and 128 for user\n ...","shortMessageHtmlLink":"Merge tag 'v4.9.75' into 4.9.x+fslc"}},{"before":"2668e3ae2ef36d5e7c52f818ad7d90822c037de4","after":"3cdb455946193bb7ad13df15333c7fe0054db6c3","ref":"refs/heads/master","pushedAt":"2024-04-19T19:02:32.000Z","pushType":"push","commitsCount":60,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 's390-6.9-4' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux\n\nPull s390 updates from Alexander Gordeev:\n\n - Fix NULL pointer dereference in program check handler\n\n - Fake IRBs are important events relevant for problem analysis. Add\n traces when queueing and delivering\n\n - Fix a race condition in ccw_device_set_online() that can cause the\n online process to fail\n\n - Deferred condition code 1 response indicates that I/O was not started\n and should be retried. The current QDIO implementation handles a cc1\n response as an error, resulting in a failed QDIO setup. Fix that by\n retrying the setup when a cc1 response is received\n\n* tag 's390-6.9-4' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux:\n s390/mm: Fix NULL pointer dereference\n s390/cio: log fake IRB events\n s390/cio: fix race condition during online processing\n s390/qdio: handle deferred cc1","shortMessageHtmlLink":"Merge tag 's390-6.9-4' of git://git.kernel.org/pub/scm/linux/kernel/g…"}},{"before":"360a348fd7fe72ec42a80d025e6fc81cda19f48e","after":"2668e3ae2ef36d5e7c52f818ad7d90822c037de4","ref":"refs/heads/master","pushedAt":"2024-04-19T07:17:48.000Z","pushType":"push","commitsCount":59,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi\n\nPull SCSI fixes from James Bottomley:\n \"Two minor fixes: one in the core to improve the handling of warnings\n and unconditionally clear the command flags when ending a request and\n the other to add missing table values needed for bandwidth scaling in\n qualcomm ufs\"\n\n* tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:\n scsi: core: Fix handling of SCMD_FAIL_IF_RECOVERING\n scsi: ufs: qcom: Add missing interconnect bandwidth values for Gear 5","shortMessageHtmlLink":"Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/g…"}},{"before":"8cd26fd90c1ad7acdcfb9f69ca99d13aa7b24561","after":"360a348fd7fe72ec42a80d025e6fc81cda19f48e","ref":"refs/heads/master","pushedAt":"2024-04-18T17:59:58.000Z","pushType":"push","commitsCount":16,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'gpio-fixes-for-v6.9-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux\n\nPull gpio fixes from Bartosz Golaszewski:\n\n - use -ENOTSUPP consistently in Intel GPIO drivers\n\n - don't include dt-bindings headers in gpio-swnode code\n\n - add missing of device table to gpio-lpc32xx and fix autoloading\n\n* tag 'gpio-fixes-for-v6.9-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:\n gpiolib: swnode: Remove wrong header inclusion\n gpio: lpc32xx: fix module autoloading\n gpio: crystalcove: Use -ENOTSUPP consistently\n gpio: wcove: Use -ENOTSUPP consistently","shortMessageHtmlLink":"Merge tag 'gpio-fixes-for-v6.9-rc5' of git://git.kernel.org/pub/scm/l…"}},{"before":"4b6b513221181108b8406b22b33408f688583b32","after":"8cd26fd90c1ad7acdcfb9f69ca99d13aa7b24561","ref":"refs/heads/master","pushedAt":"2024-04-18T12:50:19.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'for-6.9-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux\n\nPull btrfs fixes from David Sterba:\n\n - fixup in zoned mode for out-of-order writes of metadata that are no\n longer necessary, this used to be tracked in a separate list but now\n the old locaion needs to be zeroed out, also add assertions\n\n - fix bulk page allocation retry, this may stall after first failure\n for compression read/write\n\n* tag 'for-6.9-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux:\n btrfs: do not wait for short bulk allocation\n btrfs: zoned: add ASSERT and WARN for EXTENT_BUFFER_ZONED_ZEROOUT handling\n btrfs: zoned: do not flag ZEROOUT on non-dirty extent buffer","shortMessageHtmlLink":"Merge tag 'for-6.9-rc4-tag' of git://git.kernel.org/pub/scm/linux/ker…"}},{"before":"96fca68c4fbf77a8185eb10f7557e23352732ea2","after":"4b6b513221181108b8406b22b33408f688583b32","ref":"refs/heads/master","pushedAt":"2024-04-17T19:02:29.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'pwm/for-6.9-rc5-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux\n\nPull pwm fixes from Uwe Kleine-König:\n \"The first patch fixes a regression in the suspend/resume path for the\n dwc pwm driver that was introduced in v6.9-rc1 when support for 16\n channel devices was added.\n\n The second patch fixes a bunch of device tree binding check warnings\"\n\n* tag 'pwm/for-6.9-rc5-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/ukleinek/linux:\n dt-bindings: pwm: mediatek,pwm-disp: Document power-domains property\n pwm: dwc: allow suspend/resume for 16 channels","shortMessageHtmlLink":"Merge tag 'pwm/for-6.9-rc5-fixes' of git://git.kernel.org/pub/scm/lin…"}},{"before":"0bbac3facb5d6cc0171c45c9873a2dc96bea9680","after":"96fca68c4fbf77a8185eb10f7557e23352732ea2","ref":"refs/heads/master","pushedAt":"2024-04-16T19:02:28.000Z","pushType":"push","commitsCount":31,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'nfsd-6.9-3' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux\n\nPull nfsd fixes from Chuck Lever:\n\n - Fix a potential tracepoint crash\n\n - Fix NFSv4 GETATTR on big-endian platforms\n\n* tag 'nfsd-6.9-3' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux:\n NFSD: fix endianness issue in nfsd4_encode_fattr4\n SUNRPC: Fix rpcgss_context trace event acceptor field","shortMessageHtmlLink":"Merge tag 'nfsd-6.9-3' of git://git.kernel.org/pub/scm/linux/kernel/g…"}},{"before":"d7ad0581567927c433918bb5f06f3d29f89807d3","after":"0bbac3facb5d6cc0171c45c9873a2dc96bea9680","ref":"refs/heads/master","pushedAt":"2024-04-15T19:02:30.000Z","pushType":"push","commitsCount":98,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Linux 6.9-rc4","shortMessageHtmlLink":"Linux 6.9-rc4"}},{"before":"e8c39d0f57f358950356a8e44ee5159f57f86ec5","after":"d7ad0581567927c433918bb5f06f3d29f89807d3","ref":"refs/heads/master","pushedAt":"2024-04-12T19:02:45.000Z","pushType":"push","commitsCount":229,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'block-6.9-20240412' of git://git.kernel.dk/linux\n\nPull block fixes from Jens Axboe:\n\n - MD pull request via Song:\n - UAF fix (Yu)\n\n - Avoid out-of-bounds shift in blk-iocost (Rik)\n\n - Fix for q->blkg_list corruption (Ming)\n\n - Relax virt boundary mask/size segment checking (Ming)\n\n* tag 'block-6.9-20240412' of git://git.kernel.dk/linux:\n block: fix that blk_time_get_ns() doesn't update time after schedule\n block: allow device to have both virt_boundary_mask and max segment size\n block: fix q->blkg_list corruption during disk rebind\n blk-iocost: avoid out of bounds shift\n raid1: fix use-after-free for original bio in raid1_write_request()","shortMessageHtmlLink":"Merge tag 'block-6.9-20240412' of git://git.kernel.dk/linux"}},{"before":"95d1e566004ff5c1e5ad0503dd05c5d8d538d146","after":"f45333c30df0daeafccf46689014c0245f0b369b","ref":"refs/heads/em-6.6.x","pushedAt":"2024-04-11T19:02:18.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge branch 'em-6.6.x' into 'em-6.6.x'\n\narm64: dts: ti: k3-am625-em-cb30: Set baudrate and framing options for stdout-path\n\nSee merge request tq-em/base/linux!31","shortMessageHtmlLink":"Merge branch 'em-6.6.x' into 'em-6.6.x'"}},{"before":null,"after":"95d1e566004ff5c1e5ad0503dd05c5d8d538d146","ref":"refs/heads/em-6.6.x","pushedAt":"2024-04-11T08:02:29.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge branch 'em-6.6.x' into 'em-6.6.x'\n\nEM-CB30: Fixes for error messages in kernel log (cosmetic)\n\nSee merge request tq-em/base/linux!30","shortMessageHtmlLink":"Merge branch 'em-6.6.x' into 'em-6.6.x'"}},{"before":"2c71fdf02a95b3dd425b42f28fd47fb2b1d22702","after":"e8c39d0f57f358950356a8e44ee5159f57f86ec5","ref":"refs/heads/master","pushedAt":"2024-04-11T08:02:29.000Z","pushType":"push","commitsCount":50,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'probes-fixes-v6.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace\n\nPull probes fixes from Masami Hiramatsu:\n \"Fix possible use-after-free issue on kprobe registration.\n\n check_kprobe_address_safe() uses `is_module_text_address()` and\n `__module_text_address()` separately.\n\n As a result, if the probed address is in a module that is being\n unloaded, the first `is_module_text_address()` might return true but\n then the `__module_text_address()` call might return NULL if the\n module has been unloaded between the two.\n\n The result is that kprobe believes the probe is on the kernel text,\n and skips getting a module reference. In this case, when it arms a\n breakpoint on the probe address, it may cause a use-after-free.\n\n To fix this issue, only use `__module_text_address()` once and get a\n reference to the module then. If it fails, reject the probe\"\n\n* tag 'probes-fixes-v6.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace:\n kprobes: Fix possible use-after-free issue on kprobe registration","shortMessageHtmlLink":"Merge tag 'probes-fixes-v6.9-rc3' of git://git.kernel.org/pub/scm/lin…"}},{"before":"fec50db7033ea478773b159e0e2efb135270e3b7","after":"2c71fdf02a95b3dd425b42f28fd47fb2b1d22702","ref":"refs/heads/master","pushedAt":"2024-04-09T19:02:34.000Z","pushType":"push","commitsCount":23,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'drm-fixes-2024-04-09' of https://gitlab.freedesktop.org/drm/kernel\n\nPull drm nouveau fix from Dave Airlie:\n \"A previous fix to nouveau devinit on the GSP paths fixed the Turing\n but broke Ampere, I did some more digging and found the proper fix.\n Sending it early as I want to make sure it makes the next 6.8 stable\n kernels to fix the regression.\n\n Regular fixes will be at end of week as usual.\n\n nouveau:\n\n - regression fix for GSP display enable\"\n\n* tag 'drm-fixes-2024-04-09' of https://gitlab.freedesktop.org/drm/kernel:\n nouveau: fix devinit paths to only handle display on GSP.","shortMessageHtmlLink":"Merge tag 'drm-fixes-2024-04-09' of https://gitlab.freedesktop.org/dr…"}},{"before":"e8b0ccb2a787fb43f8091a1eaef9c28a79b00002","after":"fec50db7033ea478773b159e0e2efb135270e3b7","ref":"refs/heads/master","pushedAt":"2024-04-08T19:02:37.000Z","pushType":"push","commitsCount":229,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Linux 6.9-rc3","shortMessageHtmlLink":"Linux 6.9-rc3"}},{"before":"c85af715cac0a951eea97393378e84bb49384734","after":"e8b0ccb2a787fb43f8091a1eaef9c28a79b00002","ref":"refs/heads/master","pushedAt":"2024-04-05T19:02:35.000Z","pushType":"push","commitsCount":127,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag '9p-for-6.9-rc3' of https://github.com/martinetd/linux\n\nPull minor 9p cleanups from Dominique Martinet:\n\n - kernel doc fix & removal of unused flag\n\n - fix some bogus debug statement for read/write\n\n* tag '9p-for-6.9-rc3' of https://github.com/martinetd/linux:\n 9p: remove SLAB_MEM_SPREAD flag usage\n 9p: Fix read/write debug statements to report server reply\n 9p/trans_fd: remove Excess kernel-doc comment","shortMessageHtmlLink":"Merge tag '9p-for-6.9-rc3' of https://github.com/martinetd/linux"}},{"before":"026e680b0a08a62b1d948e5a8ca78700bfac0e6e","after":"c85af715cac0a951eea97393378e84bb49384734","ref":"refs/heads/master","pushedAt":"2024-04-03T19:02:28.000Z","pushType":"push","commitsCount":78,"pusher":{"login":"tq-schneiderj","name":"Jeremias Schneider","path":"/tq-schneiderj","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7780085?s=80&v=4"},"commit":{"message":"Merge tag 'vboxsf-v6.9-1' of git://git.kernel.org/pub/scm/linux/kernel/git/hansg/linux\n\nPull vboxsf fixes from Hans de Goede:\n\n - Compiler warning fixes\n\n - Explicitly deny setlease attempts\n\n* tag 'vboxsf-v6.9-1' of git://git.kernel.org/pub/scm/linux/kernel/git/hansg/linux:\n vboxsf: explicitly deny setlease attempts\n vboxsf: Remove usage of the deprecated ida_simple_xx() API\n vboxsf: Avoid an spurious warning if load_nls_xxx() fails\n vboxsf: remove redundant variable out_len","shortMessageHtmlLink":"Merge tag 'vboxsf-v6.9-1' of git://git.kernel.org/pub/scm/linux/kerne…"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAESkMpBgA","startCursor":null,"endCursor":null}},"title":"Activity · tq-systems/linux-em"}