{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":593923633,"defaultBranch":"main","name":"kernel_xiaomi_sm8250","ownerLogin":"Danda420","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2023-01-27T06:42:09.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/118007132?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1718715245.0","currentOid":""},"activityList":{"items":[{"before":"a65fd197558a8170357bca8624e169fbb4a1282b","after":"79a515f864339e747dc220ca91f8dd81c58a3cd5","ref":"refs/heads/main","pushedAt":"2024-07-27T09:10:54.000Z","pushType":"push","commitsCount":34,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"Merge tag 'v4.19.319' of https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux\n\nThis is the 4.19.319 stable release","shortMessageHtmlLink":"Merge tag 'v4.19.319' of https://git.kernel.org/pub/scm/linux/kernel/…"}},{"before":"be5e800ae3ab9c7e99dd3e756af1b3369edd01bd","after":"a65fd197558a8170357bca8624e169fbb4a1282b","ref":"refs/heads/main","pushedAt":"2024-07-18T15:14:20.000Z","pushType":"push","commitsCount":68,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"Merge tag 'v4.19.318' of https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux\n\nThis is the 4.19.318 stable release","shortMessageHtmlLink":"Merge tag 'v4.19.318' of https://git.kernel.org/pub/scm/linux/kernel/…"}},{"before":"6c44743f3fedc94bc7ea4fbfbb4081e35791c0c5","after":"be5e800ae3ab9c7e99dd3e756af1b3369edd01bd","ref":"refs/heads/main","pushedAt":"2024-07-12T12:17:31.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"sched/core: Forbid Unity-based games from changing their CPU affinity\n\nUnity-based games (such as Wild Rift) like to shoot themselves in the foot\nby setting a nonsense CPU affinity, restricting the game to a narrow set of\nCPU cores that it thinks are the \"big\" cores in a heterogeneous CPU. It\nassumes that CPUs only have two performance domains (clusters), and\ntherefore royally mucks up games' CPU affinities on CPUs which have more\nthan two performance domains.\n\nCheck if a setaffinity target task is part of a Unity-based game and\nsilently ignore the setaffinity request so that it can't sabotage itself.\n\nSigned-off-by: Sultan Alsawaf ","shortMessageHtmlLink":"sched/core: Forbid Unity-based games from changing their CPU affinity"}},{"before":"2f42a803d72b315be5e0d16ea5f1b8a54fcb80e2","after":"6c44743f3fedc94bc7ea4fbfbb4081e35791c0c5","ref":"refs/heads/main","pushedAt":"2024-07-09T12:01:38.000Z","pushType":"push","commitsCount":139,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"Merge tag 'v4.19.317' of https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux\n\nThis is the 4.19.317 stable release","shortMessageHtmlLink":"Merge tag 'v4.19.317' of https://git.kernel.org/pub/scm/linux/kernel/…"}},{"before":"94c5931d2e8cb03c6ea5bafe3ab3a581c8a56346","after":"2f42a803d72b315be5e0d16ea5f1b8a54fcb80e2","ref":"refs/heads/main","pushedAt":"2024-06-26T13:53:07.000Z","pushType":"push","commitsCount":22,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"oext4: fix mb_cache_entry's e_refcnt leak in ext4_xattr_block_cache_find()\n\ncommit 0c0b4a49d3e7f49690a6827a41faeffad5df7e21 upstream.\n\nSyzbot reports a warning as follows:\n\n============================================\nWARNING: CPU: 0 PID: 5075 at fs/mbcache.c:419 mb_cache_destroy+0x224/0x290\nModules linked in:\nCPU: 0 PID: 5075 Comm: syz-executor199 Not tainted 6.9.0-rc6-gb947cc5bf6d7\nRIP: 0010:mb_cache_destroy+0x224/0x290 fs/mbcache.c:419\nCall Trace:\n \n ext4_put_super+0x6d4/0xcd0 fs/ext4/super.c:1375\n generic_shutdown_super+0x136/0x2d0 fs/super.c:641\n kill_block_super+0x44/0x90 fs/super.c:1675\n ext4_kill_sb+0x68/0xa0 fs/ext4/super.c:7327\n[...]\n============================================\n\nThis is because when finding an entry in ext4_xattr_block_cache_find(), if\next4_sb_bread() returns -ENOMEM, the ce's e_refcnt, which has already grown\nin the __entry_find(), won't be put away, and eventually trigger the above\nissue in mb_cache_destroy() due to reference count leakage.\n\nSo call mb_cache_entry_put() on the -ENOMEM error branch as a quick fix.\n\nReported-by: syzbot+dd43bd0f7474512edc47@syzkaller.appspotmail.com\nCloses: https://syzkaller.appspot.com/bug?extid=dd43bd0f7474512edc47\nFixes: fb265c9cb49e (\"ext4: add ext4_sb_bread() to disambiguate ENOMEM cases\")\nCc: stable@kernel.org\nSigned-off-by: Baokun Li \nReviewed-by: Jan Kara \nLink: https://lore.kernel.org/r/20240504075526.2254349-2-libaokun@huaweicloud.com\nSigned-off-by: Theodore Ts'o \nSigned-off-by: Greg Kroah-Hartman \nSigned-off-by: Rudi Setiyawan ","shortMessageHtmlLink":"oext4: fix mb_cache_entry's e_refcnt leak in ext4_xattr_block_cache_f…"}},{"before":"d7ee3615c6071a01d4ebd516aad14469d80577a8","after":"94c5931d2e8cb03c6ea5bafe3ab3a581c8a56346","ref":"refs/heads/main","pushedAt":"2024-06-26T13:27:08.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"fix miss merge","shortMessageHtmlLink":"fix miss merge"}},{"before":"c1814fc7fbfbe8fbd97848ed9b1ce7ba7a3ac6c9","after":null,"ref":"refs/heads/backup","pushedAt":"2024-06-18T12:54:05.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"}},{"before":"3628c2c8c5546fe432abe2b7f32fa75a448fcb69","after":"d7ee3615c6071a01d4ebd516aad14469d80577a8","ref":"refs/heads/main","pushedAt":"2024-06-16T12:49:21.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"Revert \"scsi: ufs: cleanup struct utp_task_req_desc\"\n\nThis reverts commit ea2cebd3b66bffa2630e413553776a4dbdca641a.","shortMessageHtmlLink":"Revert \"scsi: ufs: cleanup struct utp_task_req_desc\""}},{"before":"143989718d58061740452ad8b215d0b27516cd36","after":"3628c2c8c5546fe432abe2b7f32fa75a448fcb69","ref":"refs/heads/main","pushedAt":"2024-06-16T12:36:13.000Z","pushType":"push","commitsCount":211,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"update gitignore","shortMessageHtmlLink":"update gitignore"}},{"before":"a0e3e8a19730be4fc4c889b589966d9e2d7673cf","after":"143989718d58061740452ad8b215d0b27516cd36","ref":"refs/heads/main","pushedAt":"2024-06-05T13:50:56.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"fix build for clang 19.0.0","shortMessageHtmlLink":"fix build for clang 19.0.0"}},{"before":"d3c5548e5635d1f9b3752af7f09f9c653e398af0","after":"a0e3e8a19730be4fc4c889b589966d9e2d7673cf","ref":"refs/heads/main","pushedAt":"2024-06-05T07:32:15.000Z","pushType":"push","commitsCount":17,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"Revert \"lib/string: optimized memcpy\"\n\nThis reverts commit c375b8d1c183898eddbca6bfdeb236465ca7f821.","shortMessageHtmlLink":"Revert \"lib/string: optimized memcpy\""}},{"before":"96fde55f0665cc7d6b61a5ad57fc68fd90503577","after":"d3c5548e5635d1f9b3752af7f09f9c653e398af0","ref":"refs/heads/main","pushedAt":"2024-06-02T02:46:21.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"umount(2): move the flag validity checks first\n\nUnfortunately, there's userland code that used to rely upon these\nchecks being done before anything else to check for UMOUNT_NOFOLLOW\nsupport. That broke in 41525f56e256 (\"fs: refactor ksys_umount\").\nSeparate those from the rest of checks and move them to ksys_umount();\nunlike everything else in there, this can be sanely done there.\n\nReported-by: Sargun Dhillon \nFixes: 41525f56e256 (\"fs: refactor ksys_umount\")\nSigned-off-by: Al Viro ","shortMessageHtmlLink":"umount(2): move the flag validity checks first"}},{"before":"826be1754f77bbf1fcab4cbbe1dd9a322626a0a0","after":"96fde55f0665cc7d6b61a5ad57fc68fd90503577","ref":"refs/heads/main","pushedAt":"2024-06-02T02:35:04.000Z","pushType":"push","commitsCount":7,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"umount(2): move the flag validity checks first\n\nUnfortunately, there's userland code that used to rely upon these\nchecks being done before anything else to check for UMOUNT_NOFOLLOW\nsupport. That broke in 41525f56e256 (\"fs: refactor ksys_umount\").\nSeparate those from the rest of checks and move them to ksys_umount();\nunlike everything else in there, this can be sanely done there.\n\nReported-by: Sargun Dhillon \nFixes: 41525f56e256 (\"fs: refactor ksys_umount\")\nSigned-off-by: Al Viro ","shortMessageHtmlLink":"umount(2): move the flag validity checks first"}},{"before":"f2f51ea5d2a16cde4b1cad86953dc7f89a67f867","after":"826be1754f77bbf1fcab4cbbe1dd9a322626a0a0","ref":"refs/heads/main","pushedAt":"2024-05-25T14:38:42.000Z","pushType":"push","commitsCount":20,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"Merge tag 'v4.19.315' of https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux\n\nThis is the 4.19.315 stable release","shortMessageHtmlLink":"Merge tag 'v4.19.315' of https://git.kernel.org/pub/scm/linux/kernel/…"}},{"before":"68ee468aa93d7fb66339cf65d6c3c1ead37e237a","after":"f2f51ea5d2a16cde4b1cad86953dc7f89a67f867","ref":"refs/heads/main","pushedAt":"2024-05-22T11:37:41.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"kernel: replace devpts kprobe","shortMessageHtmlLink":"kernel: replace devpts kprobe"}},{"before":"ff28a7b310cc2b65e927f2b6d27f790d35b35c7a","after":"68ee468aa93d7fb66339cf65d6c3c1ead37e237a","ref":"refs/heads/main","pushedAt":"2024-05-22T11:36:30.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"Makefile: Increase lto instr limit to 40","shortMessageHtmlLink":"Makefile: Increase lto instr limit to 40"}},{"before":"f2f51ea5d2a16cde4b1cad86953dc7f89a67f867","after":"ff28a7b310cc2b65e927f2b6d27f790d35b35c7a","ref":"refs/heads/main","pushedAt":"2024-05-22T11:28:53.000Z","pushType":"push","commitsCount":10,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"defconfig: enable CONFIG_CC_OPTIMIZE_FOR_SIZE","shortMessageHtmlLink":"defconfig: enable CONFIG_CC_OPTIMIZE_FOR_SIZE"}},{"before":"47b34a3fced2f361fa51642e75e14add7e323bac","after":"f2f51ea5d2a16cde4b1cad86953dc7f89a67f867","ref":"refs/heads/main","pushedAt":"2024-05-21T03:15:40.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"kernel: replace devpts kprobe","shortMessageHtmlLink":"kernel: replace devpts kprobe"}},{"before":"fb7c2ffa6398eafe9a70afec18d22dcdc990ebe6","after":"47b34a3fced2f361fa51642e75e14add7e323bac","ref":"refs/heads/main","pushedAt":"2024-05-17T12:38:34.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"net: bridge: fix corrupted ethernet header on multicast-to-unicast\n\n[ Upstream commit 86b29d830ad69eecff25b22dc96c14c6573718e6 ]\n\nThe change from skb_copy to pskb_copy unfortunately changed the data\ncopying to omit the ethernet header, since it was pulled before reaching\nthis point. Fix this by calling __skb_push/pull around pskb_copy.\n\nFixes: 59c878cbcdd8 (\"net: bridge: fix multicast-to-unicast with fraglist GSO\")\nSigned-off-by: Felix Fietkau \nAcked-by: Nikolay Aleksandrov \nSigned-off-by: David S. Miller \nSigned-off-by: Sasha Levin ","shortMessageHtmlLink":"net: bridge: fix corrupted ethernet header on multicast-to-unicast"}},{"before":"aa93f20524a562a01031dec674da8cf42594f8ba","after":"fb7c2ffa6398eafe9a70afec18d22dcdc990ebe6","ref":"refs/heads/main","pushedAt":"2024-05-17T12:34:06.000Z","pushType":"push","commitsCount":63,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"Merge tag 'v4.19.314' of https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux\n\nThis is the 4.19.314 stable release","shortMessageHtmlLink":"Merge tag 'v4.19.314' of https://git.kernel.org/pub/scm/linux/kernel/…"}},{"before":"c1814fc7fbfbe8fbd97848ed9b1ce7ba7a3ac6c9","after":"aa93f20524a562a01031dec674da8cf42594f8ba","ref":"refs/heads/main","pushedAt":"2024-05-10T09:41:06.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"ARM: dts: msm: kona: Ignore SSR failure for modem\n\n* This lets the SSR driver not to trigger kernel panic\n when the modem subsystem fails to power up.\n\nChange-Id: I9b50fd6a21b85465d40ef2d1edc4f242ae24b055","shortMessageHtmlLink":"ARM: dts: msm: kona: Ignore SSR failure for modem"}},{"before":null,"after":"c1814fc7fbfbe8fbd97848ed9b1ce7ba7a3ac6c9","ref":"refs/heads/backup","pushedAt":"2024-05-10T09:40:41.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"Revert \"qcacld: read config file from wlan_cfg_ini.h\"\n\nThis reverts commit e8c721cc57b29a92bd7eeb68799eec4af2f8239d.","shortMessageHtmlLink":"Revert \"qcacld: read config file from wlan_cfg_ini.h\""}},{"before":"1a490b0809db028828444b3f76723f11269a6ff7","after":"c1814fc7fbfbe8fbd97848ed9b1ce7ba7a3ac6c9","ref":"refs/heads/main","pushedAt":"2024-05-10T09:15:07.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"Revert \"qcacld: read config file from wlan_cfg_ini.h\"\n\nThis reverts commit e8c721cc57b29a92bd7eeb68799eec4af2f8239d.","shortMessageHtmlLink":"Revert \"qcacld: read config file from wlan_cfg_ini.h\""}},{"before":"7658d81b8a940a1db4d368eece1dc803cb73f40f","after":"1a490b0809db028828444b3f76723f11269a6ff7","ref":"refs/heads/main","pushedAt":"2024-05-10T09:14:10.000Z","pushType":"push","commitsCount":7,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"ARM: dts: msm: kona: Ignore SSR failure for modem\n\n* This lets the SSR driver not to trigger kernel panic\n when the modem subsystem fails to power up.\n\nChange-Id: I9b50fd6a21b85465d40ef2d1edc4f242ae24b055","shortMessageHtmlLink":"ARM: dts: msm: kona: Ignore SSR failure for modem"}},{"before":"5f045f5ccf7c56ad16d3c8681ec4c6e718e367bf","after":"7658d81b8a940a1db4d368eece1dc803cb73f40f","ref":"refs/heads/main","pushedAt":"2024-05-07T13:25:13.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"kernel: sched: Checkout to redbull-4.19-u-beta2","shortMessageHtmlLink":"kernel: sched: Checkout to redbull-4.19-u-beta2"}},{"before":"885473c3b3614e09fe29777d9d66e0eb36d3c86a","after":"5f045f5ccf7c56ad16d3c8681ec4c6e718e367bf","ref":"refs/heads/main","pushedAt":"2024-05-06T15:50:33.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"BACKPORT: fs/namespace.c path_umount\n\nhttps://elixir.bootlin.com/linux/v5.9/source/fs/namespace.c#L1728\n\nhttps://github.com/OnlyTomInSecond/android_kernel_xiaomi_sdm845/commit/03d233db8bbe9fe101509430bfa09d1899168aa7\n\nfull KernelSU gki features on non-gki hurray!","shortMessageHtmlLink":"BACKPORT: fs/namespace.c path_umount"}},{"before":"f7ca46f3b2ef7485b843c6b0a7a7d11f8cf77f9c","after":"885473c3b3614e09fe29777d9d66e0eb36d3c86a","ref":"refs/heads/main","pushedAt":"2024-05-06T15:15:55.000Z","pushType":"push","commitsCount":17,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"defconfig: update\nenable BPF_JIT\nenable USERSPACE_LOW_MEMORY_KILLER\nand some modules stuff that i forgot to enable","shortMessageHtmlLink":"defconfig: update"}},{"before":"5ca1d48e3a2767fa1d423ebd1c5592e1ac4aa871","after":"f7ca46f3b2ef7485b843c6b0a7a7d11f8cf77f9c","ref":"refs/heads/main","pushedAt":"2024-05-03T03:54:47.000Z","pushType":"push","commitsCount":79,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"Merge tag 'v4.19.313' of https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux\n\nThis is the 4.19.313 stable release","shortMessageHtmlLink":"Merge tag 'v4.19.313' of https://git.kernel.org/pub/scm/linux/kernel/…"}},{"before":"aaa6a6639f4cf4072e0f2bef52a1d88607c92931","after":"5ca1d48e3a2767fa1d423ebd1c5592e1ac4aa871","ref":"refs/heads/main","pushedAt":"2024-04-30T08:53:08.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"defconfig: enable modules","shortMessageHtmlLink":"defconfig: enable modules"}},{"before":"dc6058e1fdb2a763202a2bf648016a22bf5ca41a","after":"aaa6a6639f4cf4072e0f2bef52a1d88607c92931","ref":"refs/heads/main","pushedAt":"2024-04-30T08:50:49.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Danda420","name":"Danda","path":"/Danda420","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/118007132?s=80&v=4"},"commit":{"message":"defconfig: enable modules","shortMessageHtmlLink":"defconfig: enable modules"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEiqP0vQA","startCursor":null,"endCursor":null}},"title":"Activity · Danda420/kernel_xiaomi_sm8250"}