{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":332748930,"defaultBranch":"master","name":"linux","ownerLogin":"SergeiShtepa","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2021-01-25T13:02:37.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/70029228?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1715787910.0","currentOid":""},"activityList":{"items":[{"before":"61606c7a9918f29d88e59969e40e8c834255cd30","after":"007aa69b4da1294025031062fe6fbdcfe2d8a156","ref":"refs/heads/blksnap-lk6.9","pushedAt":"2024-06-17T16:01:59.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"fix ctl_cbtdirty()\n\nFixed a mistake getting data from an array dirty_sectors.","shortMessageHtmlLink":"fix ctl_cbtdirty()"}},{"before":"9d85cdbbb7cc174c0f68c343cd65423abb456daa","after":"61606c7a9918f29d88e59969e40e8c834255cd30","ref":"refs/heads/blksnap-lk6.9","pushedAt":"2024-06-07T09:40:15.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"add O_LARGEFILE and O_NOATIME flags for opening diff storage files","shortMessageHtmlLink":"add O_LARGEFILE and O_NOATIME flags for opening diff storage files"}},{"before":"a38297e3fb012ddfa7ce0321a7e5a8daeb1872b6","after":"1b294a1f35616977caddaddf3e9d28e576a1adbc","ref":"refs/heads/master","pushedAt":"2024-05-15T15:46:50.000Z","pushType":"push","commitsCount":5151,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?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":null,"after":"9d85cdbbb7cc174c0f68c343cd65423abb456daa","ref":"refs/heads/blksnap-lk6.9","pushedAt":"2024-05-15T15:45:10.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"fix comments from checkpatch.pl","shortMessageHtmlLink":"fix comments from checkpatch.pl"}},{"before":null,"after":"d91f9a082eeea13699569f6b91d439bace3ffda9","ref":"refs/heads/blksnap-lk6.9-rc4","pushedAt":"2024-05-15T15:44:57.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"rename cbt_map->device_capacity -> cbt_map->bdev_capacity","shortMessageHtmlLink":"rename cbt_map->device_capacity -> cbt_map->bdev_capacity"}},{"before":"448b3fe5a0eab5b625a7e15c67c7972169e47ff8","after":"a38297e3fb012ddfa7ce0321a7e5a8daeb1872b6","ref":"refs/heads/master","pushedAt":"2024-05-13T08:19:48.000Z","pushType":"push","commitsCount":86,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"Linux 6.9","shortMessageHtmlLink":"Linux 6.9"}},{"before":"8c3b7565f81e030ef448378acd1b35dabb493e3b","after":"448b3fe5a0eab5b625a7e15c67c7972169e47ff8","ref":"refs/heads/master","pushedAt":"2024-05-10T13:59:52.000Z","pushType":"push","commitsCount":5,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"Merge tag 'hwmon-for-v6.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging\n\nPull hwmon fixes from Guenter Roeck:\n\n - pmbus/ucd9000: Increase chip access delay to avoid random access\n errors\n\n - corsair-cpro: Protect kernel code against parallel hidraw access from\n userspace\n\n* tag 'hwmon-for-v6.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:\n hwmon: (pmbus/ucd9000) Increase delay from 250 to 500us\n hwmon: (corsair-cpro) Protect ccp->wait_input_report with a spinlock\n hwmon: (corsair-cpro) Use complete_all() instead of complete() in ccp_raw_event()\n hwmon: (corsair-cpro) Use a separate buffer for sending commands","shortMessageHtmlLink":"Merge tag 'hwmon-for-v6.9-rc8' of git://git.kernel.org/pub/scm/linux/…"}},{"before":"96fca68c4fbf77a8185eb10f7557e23352732ea2","after":"8c3b7565f81e030ef448378acd1b35dabb493e3b","ref":"refs/heads/master","pushedAt":"2024-05-09T16:31:19.000Z","pushType":"push","commitsCount":1088,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"Merge tag 'net-6.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net\n\nPull networking fixes from Paolo Abeni:\n \"Including fixes from bluetooth and IPsec.\n\n The bridge patch is actually a follow-up to a recent fix in the same\n area. We have a pending v6.8 AF_UNIX regression; it should be solved\n soon, but not in time for this PR.\n\n Current release - regressions:\n\n - eth: ks8851: Queue RX packets in IRQ handler instead of disabling\n BHs\n\n - net: bridge: fix corrupted ethernet header on multicast-to-unicast\n\n Current release - new code bugs:\n\n - xfrm: fix possible bad pointer derferencing in error path\n\n Previous releases - regressionis:\n\n - core: fix out-of-bounds access in ops_init\n\n - ipv6:\n - fix potential uninit-value access in __ip6_make_skb()\n - fib6_rules: avoid possible NULL dereference in fib6_rule_action()\n\n - tcp: use refcount_inc_not_zero() in tcp_twsk_unique().\n\n - rtnetlink: correct nested IFLA_VF_VLAN_LIST attribute validation\n\n - rxrpc: fix congestion control algorithm\n\n - bluetooth:\n - l2cap: fix slab-use-after-free in l2cap_connect()\n - msft: fix slab-use-after-free in msft_do_close()\n\n - eth: hns3: fix kernel crash when devlink reload during\n initialization\n\n - eth: dsa: mv88e6xxx: add phylink_get_caps for the mv88e6320/21\n family\n\n Previous releases - always broken:\n\n - xfrm: preserve vlan tags for transport mode software GRO\n\n - tcp: defer shutdown(SEND_SHUTDOWN) for TCP_SYN_RECV sockets\n\n - eth: hns3: keep using user config after hardware reset\"\n\n* tag 'net-6.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (47 commits)\n net: dsa: mv88e6xxx: read cmode on mv88e6320/21 serdes only ports\n net: dsa: mv88e6xxx: add phylink_get_caps for the mv88e6320/21 family\n net: hns3: fix kernel crash when devlink reload during initialization\n net: hns3: fix port vlan filter not disabled issue\n net: hns3: use appropriate barrier function after setting a bit value\n net: hns3: release PTP resources if pf initialization failed\n net: hns3: change type of numa_node_mask as nodemask_t\n net: hns3: direct return when receive a unknown mailbox message\n net: hns3: using user configure after hardware reset\n net/smc: fix neighbour and rtable leak in smc_ib_find_route()\n ipv6: prevent NULL dereference in ip6_output()\n hsr: Simplify code for announcing HSR nodes timer setup\n ipv6: fib6_rules: avoid possible NULL dereference in fib6_rule_action()\n dt-bindings: net: mediatek: remove wrongly added clocks and SerDes\n rxrpc: Only transmit one ACK per jumbo packet received\n rxrpc: Fix congestion control algorithm\n selftests: test_bridge_neigh_suppress.sh: Fix failures due to duplicate MAC\n ipv6: Fix potential uninit-value access in __ip6_make_skb()\n net: phy: marvell-88q2xxx: add support for Rev B1 and B2\n appletalk: Improve handling of broadcast packets\n ...","shortMessageHtmlLink":"Merge tag 'net-6.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/…"}},{"before":"f6cef5f8c37f58a3bc95b3754c3ae98e086631ca","after":"96fca68c4fbf77a8185eb10f7557e23352732ea2","ref":"refs/heads/master","pushedAt":"2024-04-16T13:15:15.000Z","pushType":"push","commitsCount":3090,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?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":"90d35da658da8cff0d4ecbb5113f5fac9d00eb72","after":"f6cef5f8c37f58a3bc95b3754c3ae98e086631ca","ref":"refs/heads/master","pushedAt":"2024-03-18T12:43:38.000Z","pushType":"push","commitsCount":10000,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"Merge tag 'i3c/for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux\n\nPull i3c updates from Alexandre Belloni:\n \"Not much this cycle with only three patches.\n\n Core:\n - i3c_bus_type is now const\n\n Drivers:\n - dw: disabling IBI is only allowed when hot join and SIR are disabled\"\n\n* tag 'i3c/for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux:\n i3c: Make i3c_bus_type const\n i3c: dw: Disable IBI IRQ depends on hot-join and SIR enabling\n dt-bindings: i3c: drop \"master\" node name suffix","shortMessageHtmlLink":"Merge tag 'i3c/for-6.9' of git://git.kernel.org/pub/scm/linux/kernel/…"}},{"before":null,"after":"573aeb90eb7b0084a282f7e79a77d3dc4cc68e8b","ref":"refs/heads/blksnap-lk6.8-rc7","pushedAt":"2024-03-05T10:14:25.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"Merge branch 'blksnap-lk6.8-rc3' into blksnap-lk6.8-rc7","shortMessageHtmlLink":"Merge branch 'blksnap-lk6.8-rc3' into blksnap-lk6.8-rc7"}},{"before":"54be6c6c5ae8e0d93a6c4641cb7528eb0b6ba478","after":"90d35da658da8cff0d4ecbb5113f5fac9d00eb72","ref":"refs/heads/master","pushedAt":"2024-03-04T17:40:21.000Z","pushType":"push","commitsCount":1425,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"Linux 6.8-rc7","shortMessageHtmlLink":"Linux 6.8-rc7"}},{"before":"e9de1822d4bf048a8859578207e6c600c8b5b0e3","after":"592b49f0db68f010252d13df79c885823515ad3a","ref":"refs/heads/blksnap-lk6.8-rc3","pushedAt":"2024-03-04T10:14:47.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"use CONFIG_64BIT instead sizeof(unsigned long)","shortMessageHtmlLink":"use CONFIG_64BIT instead sizeof(unsigned long)"}},{"before":"a6bcfe61adf39480b31d296016bc77456bb56f1e","after":"e9de1822d4bf048a8859578207e6c600c8b5b0e3","ref":"refs/heads/blksnap-lk6.8-rc3","pushedAt":"2024-02-13T10:31:42.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"an own blksnap_wq work queue has been created for the module","shortMessageHtmlLink":"an own blksnap_wq work queue has been created for the module"}},{"before":"404d582923af11bee8e424e53308b36b610dca3a","after":"a6bcfe61adf39480b31d296016bc77456bb56f1e","ref":"refs/heads/blksnap-lk6.8-rc3","pushedAt":"2024-02-12T18:30:06.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"fix bug use-after-release\n\nUse a reference counter for io_ctx.","shortMessageHtmlLink":"fix bug use-after-release"}},{"before":"7b4d96506826b9bf5a20b79019dd3be7be5bbf8a","after":"404d582923af11bee8e424e53308b36b610dca3a","ref":"refs/heads/blksnap-lk6.8-rc3","pushedAt":"2024-02-07T10:54:29.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"add CONFIG_BLKSNAP_CHUNK_DBG","shortMessageHtmlLink":"add CONFIG_BLKSNAP_CHUNK_DBG"}},{"before":"021533194476035883300d60fbb3136426ac8ea5","after":"54be6c6c5ae8e0d93a6c4641cb7528eb0b6ba478","ref":"refs/heads/master","pushedAt":"2024-02-05T14:55:04.000Z","pushType":"push","commitsCount":311,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"Linux 6.8-rc3","shortMessageHtmlLink":"Linux 6.8-rc3"}},{"before":"38a45c10f410399d8f04bdaa44b858d889bfb07c","after":"93730c3ff22982705f9af108714f256fd5951fe0","ref":"refs/heads/blksnap-lk6.8-rc3-v2","pushedAt":"2024-02-05T10:48:26.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"fix deadlock problem","shortMessageHtmlLink":"fix deadlock problem"}},{"before":"d3f01eab4f43880c223d7ffbfa0b33aef1b37b8f","after":"7b4d96506826b9bf5a20b79019dd3be7be5bbf8a","ref":"refs/heads/blksnap-lk6.8-rc3","pushedAt":"2024-02-02T17:21:21.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"remove submit_bio_noacct_nocheck_resubmit() part 2\n\nBy mistake, the function was not deleted earlier.","shortMessageHtmlLink":"remove submit_bio_noacct_nocheck_resubmit() part 2"}},{"before":"6764c317b6bb91bd806ef79adf6d9c0e428b191e","after":"021533194476035883300d60fbb3136426ac8ea5","ref":"refs/heads/master","pushedAt":"2024-02-02T17:15:49.000Z","pushType":"push","commitsCount":144,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"Kconfig: Disable -Wstringop-overflow for GCC globally\n\nIt turns out it was never just gcc-11 that was broken. Apparently it\njust happens to work on x86-64 with other gcc versions.\n\nOn arm64, I see warnings with gcc version 13.2.1, and the kernel test\nrobot reports the same problem on s390 with gcc 13.2.0.\n\nAdmittedly it seems to be just the new Xe drm driver, but this is\nkeeping me from doing my normal arm64 build testing. So it gets\nreverted until somebody figures out what causes the problem (and why it\ndoesn't show on x86-64, which is what makes me suspect it was never just\nabout gcc-11, and more about just random happenstance).\n\nThis also changes the Kconfig naming a bit - just make the \"disable this\nfor GCC\" conditional be one simple Kconfig entry, and we can put the gcc\nversion dependencies in that entry once we figure out what the correct\nrules are.\n\nThe version dependency _may_ still end up being \"gcc version larger than\n11\" if the issue is purely in the Xe driver, but even if that ends up\nthe case, let's make that all part of the \"GCC_NO_STRINGOP_OVERFLOW\"\nlogic.\n\nFor now, we just disable it for all gcc versions while the exact cause\nis unknown.\n\nLink: https://lore.kernel.org/all/202401161031.hjGJHMiJ-lkp@intel.com/T/\nCc: Gustavo A. R. Silva \nCc: Kees Cook \nSigned-off-by: Linus Torvalds ","shortMessageHtmlLink":"Kconfig: Disable -Wstringop-overflow for GCC globally"}},{"before":null,"after":"38a45c10f410399d8f04bdaa44b858d889bfb07c","ref":"refs/heads/blksnap-lk6.8-rc3-v2","pushedAt":"2024-02-02T17:04:07.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"Merge branch 'blksnap-lk6.8-rc3' into blksnap-lk6.8-rc3-v2","shortMessageHtmlLink":"Merge branch 'blksnap-lk6.8-rc3' into blksnap-lk6.8-rc3-v2"}},{"before":"0933c989bce23084c8cf88fb9e8d2aa410651d46","after":"d3f01eab4f43880c223d7ffbfa0b33aef1b37b8f","ref":"refs/heads/blksnap-lk6.8-rc3","pushedAt":"2024-02-02T16:22:07.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"remove submit_bio_noacct_nocheck_resubmit()\n\nTo continue executing the I/O unit that was handled by the filter, the\nresubmit_filtered_bio() function was added.","shortMessageHtmlLink":"remove submit_bio_noacct_nocheck_resubmit()"}},{"before":"861c0981648f5b64c86fd028ee622096eb7af05a","after":"6764c317b6bb91bd806ef79adf6d9c0e428b191e","ref":"refs/heads/master","pushedAt":"2024-02-01T16:22:05.000Z","pushType":"push","commitsCount":24,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?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 \"Six small fixes. Five are obvious and in drivers. The last one is a\n core fix to remove the host lock acquisition and release, caused by a\n dynamic check of host_busy, in the error handling loop which has been\n reported to cause lockups\"\n\n* tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:\n scsi: storvsc: Fix ring buffer size calculation\n scsi: core: Move scsi_host_busy() out of host lock for waking up EH handler\n scsi: MAINTAINERS: Update ibmvscsi_tgt maintainer\n scsi: initio: Remove redundant variable 'rb'\n scsi: virtio_scsi: Remove duplicate check if queue is broken\n scsi: isci: Fix an error code problem in isci_io_request_build()","shortMessageHtmlLink":"Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/g…"}},{"before":"28cd68ef2353f8051b371cb335cc79d2e99fec4c","after":"0933c989bce23084c8cf88fb9e8d2aa410651d46","ref":"refs/heads/blksnap-lk6.8-rc3","pushedAt":"2024-02-01T16:12:56.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"change using disk->open_mutex\n\nWhen calling bdev_freeze(), the open_mutex should not be held.\nSee: https://lore.kernel.org/r/20231017184823.1383356-6-hch@lst.de","shortMessageHtmlLink":"change using disk->open_mutex"}},{"before":"d41de25cccdefe0dc8da93af6ae6c06455d90318","after":"191c01891b590d42898cac2763e380624494e02b","ref":"refs/heads/blksnap-lk6.8-rc1","pushedAt":"2024-01-31T17:45:04.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"prevent double detach filter\n\nWhile performing functions blkfilter_ioctl_detach() and\nblkfilter_detach() at the same time, access to the bdev->bd_filter is\nnot synchronized. There may be an error accessing the released resource.\nTherefore, a spinlock was added to read and update bdev->bd_filter.","shortMessageHtmlLink":"prevent double detach filter"}},{"before":"b2ca5c166a8150d416fdb5a7d3f63eaa7458b937","after":"28cd68ef2353f8051b371cb335cc79d2e99fec4c","ref":"refs/heads/blksnap-lk6.8-rc3","pushedAt":"2024-01-31T17:42:33.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"prevent double detach filter\n\nWhile performing functions blkfilter_ioctl_detach() and\nblkfilter_detach() at the same time, access to the bdev->bd_filter is\nnot synchronized. There may be an error accessing the released resource.\nTherefore, a spinlock was added to read and update bdev->bd_filter.","shortMessageHtmlLink":"prevent double detach filter"}},{"before":null,"after":"b2ca5c166a8150d416fdb5a7d3f63eaa7458b937","ref":"refs/heads/blksnap-lk6.8-rc3","pushedAt":"2024-01-30T17:24:05.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"block: Kconfig, Makefile and MAINTAINERS files\n\nAllows to build a blksnap module and add it to the kernel tree.\n\nSigned-off-by: Sergei Shtepa ","shortMessageHtmlLink":"block: Kconfig, Makefile and MAINTAINERS files"}},{"before":"73b85f59ec57f206ac5291977d2789e14c352231","after":"d41de25cccdefe0dc8da93af6ae6c06455d90318","ref":"refs/heads/blksnap-lk6.8-rc1","pushedAt":"2024-01-30T14:23:11.000Z","pushType":"push","commitsCount":9,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"move flushing the store_queue_work to tracker_release_snapshot()","shortMessageHtmlLink":"move flushing the store_queue_work to tracker_release_snapshot()"}},{"before":"6613476e225e090cc9aad49be7fa504e290dd33d","after":"861c0981648f5b64c86fd028ee622096eb7af05a","ref":"refs/heads/master","pushedAt":"2024-01-30T14:21:29.000Z","pushType":"push","commitsCount":422,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"Merge tag 'jfs-6.8-rc3' of github.com:kleikamp/linux-shaggy\n\nPull jfs fix from David Kleikamp:\n \"Revert a bad sanity check\"\n\n* tag 'jfs-6.8-rc3' of github.com:kleikamp/linux-shaggy:\n Revert \"jfs: fix shift-out-of-bounds in dbJoin\"","shortMessageHtmlLink":"Merge tag 'jfs-6.8-rc3' of github.com:kleikamp/linux-shaggy"}},{"before":"1f6b98dd241c5dec0b81a412d6f38bf2d91ac8b1","after":"73b85f59ec57f206ac5291977d2789e14c352231","ref":"refs/heads/blksnap-lk6.8-rc1","pushedAt":"2024-01-25T14:19:19.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergeiShtepa","name":"Sergei Shtepa","path":"/SergeiShtepa","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/70029228?s=80&v=4"},"commit":{"message":"fix memory leak in orig_clone_bio()\n\nWhen reading the snapshot image, the I/O unit is redirected to the\noriginal block one. When cloning bio, instead of the\nbio_inc_remaining(), it was necessary to call bio_chain().","shortMessageHtmlLink":"fix memory leak in orig_clone_bio()"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEZ4_HpgA","startCursor":null,"endCursor":null}},"title":"Activity · SergeiShtepa/linux"}