-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlinux-git-log.txt
2000 lines (2000 loc) · 173 KB
/
linux-git-log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
cba5e97280f5 9df7f15ee922 a7b359fc6a37 Merge tag 'sched_urgent_for_v5.13_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
9df7f15ee922 8363e795eb79 a13d0f8d117c Merge tag 'irq_urgent_for_v5.13_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
8363e795eb79 b84a7c286cec 28e5e44aa3f4 Merge tag 'x86_urgent_for_v5.13_rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
b84a7c286cec 913ec3c22ef4 60b7ed54a41b Merge tag 'powerpc-5.13-6' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux
913ec3c22ef4 d9403d307dba 1792a59eab95 Merge tag 'perf-tools-fixes-for-v5.13-2021-06-19' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux
d9403d307dba e14c779adebe 7ede12b01b59 Merge tag 'riscv-for-linus-5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux
e14c779adebe 9ed13a17e38e e73a99f3287a Merge tag 's390-5.13-4' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
1792a59eab95 17d27fc314cb tools headers UAPI: Sync linux/in.h copy with the kernel sources
17d27fc314cb ef83f9efe846 tools headers UAPI: Sync asm-generic/unistd.h with the kernel original
ef83f9efe846 482698c2f848 perf beauty: Update copy of linux/socket.h with the kernel sources
482698c2f848 c087e9480cf3 perf test: Fix non-bash issue with stat bpf counters
c087e9480cf3 fe7a98b9d9b3 perf machine: Fix refcount usage when processing PERF_RECORD_KSYMBOL
fe7a98b9d9b3 fc96ec4d5d41 perf metricgroup: Return error code from metricgroup__add_metric_sys_event_iter()
fc96ec4d5d41 9ed13a17e38e perf metricgroup: Fix find_evsel_group() event selector
7ede12b01b59 3a02764c372c riscv: dts: fu740: fix cache-controller interrupts
3a02764c372c 314b781706e3 riscv: Ensure BPF_JIT_REGION_START aligned with PMD size
314b781706e3 01f5315dd732 riscv: kasan: Fix MODULES_VADDR evaluation due to local variables' name
9ed13a17e38e 6fab154a33ba 9cca0c2d7014 Merge tag 'net-5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
6fab154a33ba 728a748b3ff7 f9f28e5bd0ba Merge tag 'for-5.13-rc6-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux
728a748b3ff7 9620ad86d0e3 f18139966d07 Merge tag 'pci-v5.13-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
9620ad86d0e3 b1edae0d5f2e afs: Re-enable freezing once a page fault is interrupted
9cca0c2d7014 0d1dc9e1f4c0 net: ethernet: fix potential use-after-free in ec_bhf_remove
0d1dc9e1f4c0 7e9838b7915e 652e8363bbc7 Merge tag 'mac80211-for-net-2021-06-18' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211
7e9838b7915e 321827477360 selftests/net: Add icmp.sh for testing ICMP dummy address responses
321827477360 f63963411942 icmp: don't send out ICMP messages with a source address of 0.0.0.0
f63963411942 c364df2489b8 net: ll_temac: Avoid ndo_start_xmit returning NETDEV_TX_BUSY
c364df2489b8 28d9fab458b1 net: ll_temac: Fix TX BD buffer overwrite
28d9fab458b1 6aa32217a9a4 net: ll_temac: Add memory-barriers for TX BD access
6aa32217a9a4 35036d69b9bd net: ll_temac: Make sure to free skb when it is completely used
35036d69b9bd b6a258c10ea6 MAINTAINERS: add Guvenc as SMC maintainer
b6a258c10ea6 39eb028183bc 03400aaa69f9 Merge branch 'bnxt_en-fixes'
03400aaa69f9 c12e1643d273 bnxt_en: Call bnxt_ethtool_free() in bnxt_init_one() error path
c12e1643d273 0afd6a4e8028 bnxt_en: Fix TQM fastpath ring backing store computation
0afd6a4e8028 39eb028183bc bnxt_en: Rediscover PHY capabilities after firmware reset
39eb028183bc 1c200f832e14 cxgb4: fix wrong shift.
b1edae0d5f2e 89fec7420354 110febc0148f Merge tag 'arc-5.13-rc7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc
89fec7420354 0f4022a490ad 89529d8b8f8d Merge tag 'trace-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace
0f4022a490ad 944293bcee92 6262e1b906a1 Merge tag 'printk-for-5.13-fixup' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux
944293bcee92 e2c8f8e57ba6 771fac5e26c1 Merge tag 'pm-5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
e2c8f8e57ba6 c3bf96eaa4c4 a7d8d1c7a7f7 Merge tag 'usb-5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
28e5e44aa3f4 4692bc775d21 x86/mm: Avoid truncating memblocks for SGX memory
c3bf96eaa4c4 fd0aa1a4567d c55338d34cc2 Merge tag 'drm-fixes-2021-06-18' of git://anongit.freedesktop.org/drm/drm
f18139966d07 cacf994a91d3 PCI: aardvark: Fix kernel panic during PIO transfer
cacf994a91d3 db2f77e2bd99 PCI: Add AMD RS690 quirk to enable 64-bit DMA
db2f77e2bd99 e8946a53e2a6 PCI: Add ACS quirk for Broadcom BCM57414 NIC
e8946a53e2a6 ce00322c2365 PCI: Mark AMD Navi14 GPU ATS as broken
ce00322c2365 4c207e7121fa PCI: Work around Huawei Intelligent NIC VF FLR erratum
4c207e7121fa b5cf198e74a9 PCI: Mark some NVIDIA GPUs to avoid bus reset
b5cf198e74a9 a512360f45c9 PCI: Mark TI C667X to avoid bus reset
a512360f45c9 3bd6b8271ee6 PCI: tegra194: Fix MCFG quirk build regressions
3bd6b8271ee6 6efb943b8616 PCI: of: Clear 64-bit flag for non-prefetchable memory below 4GB
89529d8b8f8d 4fdd595e4f9a tracing: Do no increment trace_clock_global() by one
4fdd595e4f9a 85550c83da42 tracing: Do not stop recording comms if the trace file is being read
85550c83da42 fb780761e7bd tracing: Do not stop recording cmdlines when tracing is off
fb780761e7bd 3e08a9f9760f recordmcount: Correct st_shndx handling
652e8363bbc7 bbc6f03ff26e mac80211: handle various extensible elements correctly
bbc6f03ff26e 0288e5e16a2e mac80211: reset profile_periodicity/ema_ap
0288e5e16a2e b5642479b0f7 cfg80211: avoid double free of PMSR request
b5642479b0f7 1236af327af4 cfg80211: make certificate generation more robust
1236af327af4 1c200f832e14 mac80211: minstrel_ht: fix sample time check
60b7ed54a41b 478036c4cd1a powerpc/perf: Fix crash in perf_instruction_pointer() when ppmu is not set
c55338d34cc2 009c9aa5be65 1c0b0efd148d Merge tag 'amd-drm-fixes-5.13-2021-06-16' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
fd0aa1a4567d 39519f6a56e3 d8ac05ea13d7 Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
1c200f832e14 c3b26fdf1b32 net: qed: Fix memcpy() overflow of qed_dcbx_params()
c3b26fdf1b32 bc39f6792ede net: cdc_eem: fix tx fixup skb leak
bc39f6792ede 7edcc6823014 0232fc2ddcf4 Merge tag 'mlx5-fixes-2021-06-16' of git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux
7edcc6823014 c19c8c0e666f net: hamradio: fix memory leak in mkiss_close
c19c8c0e666f da5ac772cfe2 be2net: Fix an error handling path in 'be_probe()'
d8ac05ea13d7 654430efde27 KVM: selftests: Fix kvm_check_cap() assertion
39519f6a56e3 70585216fe77 8b1462b67f23 Merge tag 'fixes_for_v5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs
a7d8d1c7a7f7 60ed39db6e86 usb: core: hub: Disable autosuspend for Cypress CY7C65632
a13d0f8d117c 009c9aa5be65 382e6e177bc1 Merge tag 'irqchip-fixes-5.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent
f9f28e5bd0ba aefd7f706556 btrfs: zoned: fix negative space_info->bytes_readonly
0232fc2ddcf4 a5ae8fc9058e net/mlx5: Reset mkey index on creation
a5ae8fc9058e 65fb7d109abe net/mlx5e: Don't create devices during unload flow
65fb7d109abe c7d6c19b3bde net/mlx5: DR, Fix STEv1 incorrect L3 decapsulation padding
c7d6c19b3bde ca36fc4d77b3 net/mlx5: SF_DEV, remove SF device on invalid state
ca36fc4d77b3 bbc8222dc49d net/mlx5: E-Switch, Allow setting GUID for host PF vport
bbc8222dc49d 2058cc9c8041 net/mlx5: E-Switch, Read PF mac address
2058cc9c8041 94a4b8414d3e net/mlx5: Check that driver was probed prior attaching the device
94a4b8414d3e da5ac772cfe2 net/mlx5: Fix error path for set HCA defaults
e73a99f3287a 1874cb13d5d7 s390/ap: Fix hanging ioctl caused by wrong msg counter
1c0b0efd148d 4cbbe3480793 drm/amdgpu/gfx10: enlarge CP_MEC_DOORBELL_RANGE_UPPER to cover full doorbell.
4cbbe3480793 7de5c0d70c77 drm/amdgpu/gfx9: fix the doorbell missing when in CGPG issue.
da5ac772cfe2 224004fbb033 r8169: Avoid memcpy() over-reading of ETH_SS_STATS
224004fbb033 99718abdc00e sh_eth: Avoid memcpy() over-reading of ETH_SS_STATS
99718abdc00e 1b29df0e2e80 r8152: Avoid memcpy() over-reading of ETH_SS_STATS
1b29df0e2e80 a494bd642d91 selftests: net: use bash to run udpgro_fwd test case
a494bd642d91 0fd158b89b50 net/af_unix: fix a data-race in unix_dgram_sendmsg / unix_release_sock
0fd158b89b50 1d2ac2033d79 selftests: net: veth: make test compatible with dash
1d2ac2033d79 e82a35aead2f e032f7c9c7ce Merge branch 'net-packet-data-races'
e032f7c9c7ce c7d2ef5dd4b0 net/packet: annotate accesses to po->ifindex
c7d2ef5dd4b0 e82a35aead2f net/packet: annotate accesses to po->bind
e82a35aead2f d8e2973029b8 91c02557174b Merge tag 'linux-can-fixes-for-5.13-20210616' of git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can
d8e2973029b8 c0d982bf825f net: ipv4: fix memory leak in ip_mc_add1_src
c0d982bf825f 56b786d86694 d23765646e71 Merge branch 'fec-ptp-fixes'
d23765646e71 cb3cefe3f3f8 net: fec_ptp: fix issue caused by refactor the fec_devtype
cb3cefe3f3f8 56b786d86694 net: fec_ptp: add clock rate zero check
56b786d86694 8f269102baf7 net: usb: fix possible use-after-free in smsc75xx_bind
8f269102baf7 a4f0377db125 net: stmmac: disable clocks in stmmac_remove_config_dt()
70585216fe77 6b00bc639f1f ccbd6283a9b6 Merge branch 'akpm' (patches from Andrew)
ccbd6283a9b6 504e070dc08f mm/sparse: fix check_usemap_section_nr warnings
504e070dc08f 22061a1ffabd mm: thp: replace DEBUG_VM BUG with VM_WARN when unmap fails for split
22061a1ffabd 31657170deaf mm/thp: unmap_mapping_page() to fix THP truncate_cleanup_page()
31657170deaf 494334e43c16 mm/thp: fix page_address_in_vma() on file THP tails
494334e43c16 732ed55823fc mm/thp: fix vma_address() if virtual address below file offset
732ed55823fc 3b77e8c8cde5 mm/thp: try_to_unmap() use TTU_SYNC for safe splitting
3b77e8c8cde5 99fa8a48203d mm/thp: make is_huge_zero_pmd() safe and quicker
99fa8a48203d ffc90cbb2970 mm/thp: fix __split_huge_pmd_locked() on shmem migration entry
ffc90cbb2970 1b3865d01681 mm, thp: use head page in __migration_entry_wait()
1b3865d01681 4f5aecdff25f mm/slub.c: include swab.h
4f5aecdff25f e8675d291ac0 crash_core, vmcoreinfo: append 'SECTION_SIZE_BITS' to vmcoreinfo
e8675d291ac0 846be08578ed mm/memory-failure: make sure wait for page writeback in memory_failure
846be08578ed e41a49fadbc8 mm/hugetlb: expand restore_reserve_on_error functionality
e41a49fadbc8 74c1d3e08153 mm/slub: actually fix freelist pointer vs redzoning
74c1d3e08153 8669dbab2ae5 mm/slub: fix redzoning for small allocations
8669dbab2ae5 099dd6878b9b mm/slub: clarify verification reporting
099dd6878b9b 25182f05ffed mm/swap: fix pte_same_as_swp() not removing uffd-wp bit when compare
25182f05ffed 94f0b2d4a1d0 mm,hwpoison: fix race with hugetlb page allocation
6b00bc639f1f cc9aaa2b07b9 9041575348b2 Merge tag 'dmaengine-fix-5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine
cc9aaa2b07b9 94f0b2d4a1d0 0236526d76b8 Merge tag 'clang-features-v5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux
91c02557174b 5e87ddbe3942 can: mcba_usb: fix memory leak in mcba_usb
5e87ddbe3942 8d0caedb7596 can: bcm: fix infoleak in struct bcm_msg_head
8d0caedb7596 2030043e616c can: bcm/raw/isotp: use per module netdevice notifier
2030043e616c a4f0377db125 can: j1939: fix Use-after-Free, hold skb ref while in use
6262e1b906a1 7f3d08b255d1 printk: Move EXPORT_SYMBOL() closer to vprintk definition
60ed39db6e86 4bf584a03eec c6d580d96f14 Merge tag 'usb-v5.13-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb into usb-linus
c6d580d96f14 a9aecef198fa usb: chipidea: imx: Fix Battery Charger 1.2 CDP detection
a4f0377db125 7ea6cd16f159 973377ffe814 Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf
7ea6cd16f159 057d49334c02 lantiq: net: fix duplicated skb in rx descriptor ring
057d49334c02 c1a3d4067309 qmi_wwan: Do not call netif_rx from rx_fixup
c1a3d4067309 e34492dea68d net: cdc_ncm: switch to eth%d interface naming
e34492dea68d 475b92f93216 net: inline function get_net_ns_by_fd if NET_NS is disabled
475b92f93216 2214fb53006e ptp: improve max_adj check against unreasonable values
94f0b2d4a1d0 a33d62662d27 proc: only require mm_struct for writing
4692bc775d21 efa165504943 x86/sgx: Add missing xa_destroy() when virtual EPC is destroyed
a33d62662d27 009c9aa5be65 afs: Fix an IS_ERR() vs NULL check
478036c4cd1a e41d6c3f4f9b powerpc: Fix initrd corruption with relative jump labels
4bf584a03eec 009c9aa5be65 usb: dwc3: core: fix kernel panic when do reboot
8b1462b67f23 f644bc449b37 quota: finish disable quotactl_path syscall
0236526d76b8 2398ce80152a Makefile: lto: Pass -warn-stack-size only on LLD < 13.0.0
2214fb53006e 45deacc731d7 net: mhi_net: Update the transmit handler prototype
973377ffe814 9183671af6db bpf, selftests: Adjust few selftest outcomes wrt unreachable code
9183671af6db fe9a5ca7e370 bpf: Fix leakage under speculation on mispredicted branches
fe9a5ca7e370 d203b0fd863a bpf: Do not mark insn as seen under speculative path verification
d203b0fd863a 11fc79fc9f2e bpf: Inherit expanded/patched seen count from old aux data
45deacc731d7 ad9d24c9429e 995fca15b73f Merge tag 'for-net-2021-06-14' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth Luiz Augusto von Dentz says:
a7b359fc6a37 009c9aa5be65 sched/fair: Correctly insert cfs_rq's to list on unthrottle
995fca15b73f ad9d24c9429e Bluetooth: SMP: Fix crash when receiving new connection when debug is enabled
ad9d24c9429e b87b04f5019e net: qrtr: fix OOB Read in qrtr_endpoint_post
b87b04f5019e 58af3d3d54e8 ipv4: Fix device used for dst_alloc with local routes
58af3d3d54e8 09427c1915f7 net: caif: fix memory leak in ldisc_open
09427c1915f7 49a10c7b1762 cxgb4: fix wrong ethtool n-tuple rule lookup
49a10c7b1762 cb3376604a67 netxen_nic: Fix an error handling path in 'netxen_nic_probe()'
cb3376604a67 e175aef90269 qlcnic: Fix an error handling path in 'qlcnic_probe()'
e175aef90269 994c393bb688 ethtool: strset: fix message length calculation
994c393bb688 4f667b8e049e net: qualcomm: rmnet: don't over-count statistics
4f667b8e049e ea6932d70e22 sch_cake: revise docs for RFC 8622 LE PHB support
771fac5e26c1 009c9aa5be65 Revert "cpufreq: CPPC: Add support for frequency invariance"
e41d6c3f4f9b 8e11d62e2e87 powerpc/signal64: Copy siginfo before changing regs->nip
f644bc449b37 614124bea77e fanotify: fix copy_event_to_user() fid error clean up
009c9aa5be65 e4e453434a19 Linux 5.13-rc6
e4e453434a19 960f0716d80f 36524112aba3 Merge tag 'perf-tools-fixes-for-v5.13-2021-06-13' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux
960f0716d80f 331a6edb30af c3aba897c6e6 Merge tag 'nfs-for-5.13-3' of git://git.linux-nfs.org/projects/trondmy/linux-nfs
331a6edb30af 8ecfa36cd4db 1e0d4e622599 Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
01f5315dd732 5d2388dbf84a riscv: sifive: fix Kconfig errata warning
5d2388dbf84a 0ddd7eaffa64 riscv32: Use medany C model for modules
8ecfa36cd4db 2e3025434a6b 0ddd7eaffa64 Merge tag 'riscv-for-linus-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux
2e3025434a6b 43cb5d49a99b mm: relocate 'write_protect_seq' in struct mm_struct
ea6932d70e22 1adb20f0d496 net: make get_net_ns return error if NET_NS is disabled
43cb5d49a99b c46fe4aa8271 7c4363d39485 Merge tag 'usb-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
c46fe4aa8271 0d50658834f9 7c3e8d9df265 Merge tag 'tty-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty
0d50658834f9 87a7f7368be5 e9de1ecadeab Merge tag 'staging-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
87a7f7368be5 1dfa2e77bbd5 f501b6a2312e Merge tag 'driver-core-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
1dfa2e77bbd5 141415d7379a 3df4fce739e2 Merge tag 'char-misc-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
141415d7379a efc1fd601a75 30e9857a1349 Merge tag 'pinctrl-v5.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl
efc1fd601a75 b2568eeb961c 85f3f17b5db2 Merge tag 'block-5.13-2021-06-12' of git://git.kernel.dk/linux-block
b2568eeb961c 99f925947ab0 9690557e22d6 Merge tag 'io_uring-5.13-2021-06-12' of git://git.kernel.dk/linux-block
99f925947ab0 191aaf6cc4a7 68d7a190682a Merge tag 'sched-urgent-2021-06-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
191aaf6cc4a7 768895fb774d a8383dfb2138 Merge tag 'perf-urgent-2021-06-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
768895fb774d ad347abe4a98 2d49b721dc18 Merge tag 'objtool-urgent-2021-06-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
0ddd7eaffa64 858cf860494f riscv: Fix BUILTIN_DTB for sifive and microchip soc
ad347abe4a98 548843c096d0 3e08a9f9760f Merge tag 'trace-v5.13-rc5-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace
548843c096d0 e65b7914b2ab 2398ce80152a Merge tag 'clang-features-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux
e65b7914b2ab f21b807c3cf8 dbec64b11c65 Merge tag 'gpio-fixes-for-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux
1adb20f0d496 f4cdcae03f9c net: stmmac: dwmac1000: Fix extended MAC address registers definition
f21b807c3cf8 929d931f2b40 7de5c0d70c77 Merge tag 'drm-fixes-2021-06-11' of git://anongit.freedesktop.org/drm/drm
f4cdcae03f9c 33e381448cf7 6d297540f75d Merge branch 'cxgb4-fixes'
6d297540f75d f046bd0ae15d cxgb4: halt chip before flashing PHY firmware image
f046bd0ae15d 42a2039753a7 cxgb4: fix sleep in atomic when flashing PHY firmware
42a2039753a7 33e381448cf7 cxgb4: fix endianness when flashing boot image
33e381448cf7 da9ef50f545f alx: Fix an error handling path in 'alx_probe()'
929d931f2b40 d17bcc5ede56 8929ef8d4dfd Merge tag 'devicetree-fixes-for-5.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux
85f3f17b5db2 990e78116d38 9be148e408df Merge branch 'md-fixes' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md into block-5.13
d17bcc5ede56 fd2cd569a436 bc8865ab32bb Merge tag 'acpi-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
990e78116d38 41fe8d088e96 block: loop: fix deadlock between open and remove
fd2cd569a436 4244b5d8725b 83e197a8414c Merge tag 'sound-5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
2398ce80152a 06af8679449d x86, lto: Pass -stack-alignment only on LLD < 13.0.0
da9ef50f545f 232e3683b4ee net: phy: dp83867: perform soft reset and retain established link
4244b5d8725b f30dc8f94e4f e13d11272414 Merge tag 'hwmon-for-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging
f30dc8f94e4f 06af8679449d 6687cd72aa91 Merge tag 'mmc-v5.13-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc
bc8865ab32bb f1ffa9d4cccc 159d8c274fd9 Merge branch 'acpi-bus'
654430efde27 dfdc0a714d24 KVM: x86/mmu: Calculate and check "full" mmu_role for nested MMU
36524112aba3 197eecb6ecae tools headers cpufeatures: Sync with the kernel sources
197eecb6ecae 06af8679449d perf session: Correct buffer copying when peeking events
dfdc0a714d24 934002cd660b KVM: X86: Fix x86_emulator slab cache leak
934002cd660b 78fcb2c91adf KVM: SVM: Call SEV Guest Decommission if ASID binding fails
7c4363d39485 abd062886cd1 63a8eef70ccb Merge tag 'usb-serial-5.13-rc6' of https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus
abd062886cd1 142d0b24c1b1 Revert "usb: gadget: fsl: Re-enable driver for ARM SoCs"
2d49b721dc18 584fd3b31889 objtool: Only rewrite unconditional retpoline thunk calls
858cf860494f 42e0e0b453bc riscv: alternative: fix typo in macro name
9be148e408df 41fe8d088e96 async_xor: check src_offs is not NULL before updating it
7de5c0d70c77 750643a99e67 ab8363d3875a Merge tag 'amd-drm-fixes-5.13-2021-06-09' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
750643a99e67 43f44f5bd197 c336a5ee9847 Merge tag 'drm-misc-fixes-2021-06-10' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
43f44f5bd197 614124bea77e 170b763597d3 Merge tag 'drm-msm-fixes-2021-06-10' of https://gitlab.freedesktop.org/drm/msm into drm-fixes
110febc0148f 96f1b00138cb ARC: fix CONFIG_HARDENED_USERCOPY
96f1b00138cb d07f6ca923ea ARCv2: save ABI registers across signal handling
232e3683b4ee 22488e45501e 499ada507336 Merge branch 'mptcp-fixes'
499ada507336 2395da0e1793 mptcp: fix soft lookup in subflow_error_report()
2395da0e1793 61e710227e97 selftests: mptcp: enable syncookie only in absence of reorders
61e710227e97 99d1055ce246 mptcp: do not warn on bad input from the network
99d1055ce246 72f961320d5d mptcp: wake-up readers only for in sequence data
72f961320d5d 22488e45501e mptcp: try harder to borrow memory from subflow under pressure
42e0e0b453bc 5e63215c2f64 riscv: code patching only works on !XIP_KERNEL
5e63215c2f64 160ce364167f riscv: xip: support runtime trap patching
9690557e22d6 992da01aa932 io_uring: add feature flag for rsrc tags
992da01aa932 216e5835966a io_uring: change registration/upd/rsrc tagging ABI
22488e45501e 0280f429dc21 12f36e9bf678 Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf
0280f429dc21 d1b5bee4c8be ba91c49dedbd Merge branch 'tcp-options-oob-fixes'
ba91c49dedbd 07718be26568 sch_cake: Fix out of bounds when parsing TCP options and header
07718be26568 5fc177ab7594 mptcp: Fix out of bounds when parsing TCP options
5fc177ab7594 d1b5bee4c8be netfilter: synproxy: Fix out of bounds when parsing TCP options
d1b5bee4c8be b71eaed8c04f net/packet: annotate data race in packet_sendmsg()
b71eaed8c04f f13ef10059cc inet: annotate date races around sk->sk_txhash
f13ef10059cc 172947ac678e net: annotate data race in sock_error()
172947ac678e 9d44fa3e50cc cfc579f9d89a Merge branch 'bridge-egress-fixes'
cfc579f9d89a 58e2071742e3 net: bridge: fix vlan tunnel dst refcnt when egressing
58e2071742e3 9d44fa3e50cc net: bridge: fix vlan tunnel dst null pointer dereference
06af8679449d f09eacca59d2 coredump: Limit what can interrupt coredumps
9d44fa3e50cc 3bdd5ee0ec8c ping: Check return value of function 'ping_queue_rcv_skb'
3bdd5ee0ec8c 388fa7f13d61 skbuff: fix incorrect msg_zerocopy copy notifications
388fa7f13d61 6cde05ab93df 54e1217b9048 Merge tag 'mlx5-fixes-2021-06-09' of git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux
f09eacca59d2 29a877d57684 b7e24eb1caa5 Merge branch 'for-5.13-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup
142d0b24c1b1 f247f0a82a4f usb: typec: mux: Fix copy-paste mistake in typec_mux_match
f247f0a82a4f e0e8b6abe8c8 usb: typec: ucsi: Clear PPM capability data in ucsi_init() error path
e0e8b6abe8c8 d5ab95da2a41 usb: gadget: fsl: Re-enable driver for ARM SoCs
d5ab95da2a41 fbf649cd6d64 usb: typec: wcove: Use LE to CPU conversion when accessing msg->header
29a877d57684 cd1245d75ce9 2ba0aa2feebd Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma
382e6e177bc1 d07f6ca923ea irqchip/gic-v3: Workaround inconsistent PMR setting on NMI entry
e13d11272414 b325d3526e14 hwmon: (tps23861) correct shunt LSB values
b325d3526e14 fb8543fb863e hwmon: (tps23861) set current shunt value
fb8543fb863e 78d135523462 hwmon: (tps23861) define regmap max register
83e197a8414c a0309c344886 ALSA: seq: Fix race of snd_seq_timer_open()
63a8eef70ccb 6f7ec77cc8b6 USB: serial: cp210x: fix CP2102N-A01 modem control
170b763597d3 ce86c239e4d2 drm/msm/dsi: Stash away calculated vco frequency on recalc
b7e24eb1caa5 08b2b6fdf6b2 cgroup1: don't allow '\n' in renaming
78fcb2c91adf 551912d286e9 KVM: x86: Immediately reset the MMU context when the SMM flag is cleared
2ba0aa2feebd 6466f03fdf98 IB/mlx5: Fix initializing CQ fragments buffer
6466f03fdf98 2adcb4c5a52a RDMA/mlx5: Delete right entry from MR signature database
2adcb4c5a52a edc0b0bccc9c RDMA: Verify port when creating flow rule
551912d286e9 02ffbe6351f5 KVM: x86: Fix fall-through warnings for Clang
02ffbe6351f5 95bf69b400f4 KVM: SVM: fix doc warnings
95bf69b400f4 218bf772bddd KVM: selftests: Fix compiling errors when initializing the static structure
c336a5ee9847 c8a570443943 drm: Lock pointer access in drm_master_release()
584fd3b31889 614124bea77e objtool: Fix .symtab_shndx handling for elf_create_undef_symbol()
a8383dfb2138 156172a13ff0 x86/nmi_watchdog: Fix old-style NMI watchdog regression on old Intel CPUs
156172a13ff0 848ff3768684 irq_work: Make irq_work_queue() NMI-safe again
6f7ec77cc8b6 bc96c72df33e USB: serial: cp210x: fix alternate function for CP2102N QFN20
efa165504943 510b80a6a0f1 x86/fpu: Reset state for all signal restore failures
54e1217b9048 6d6727dddc7f net/mlx5e: Block offload of outer header csum for GRE tunnel
6d6727dddc7f 7a545077cb67 net/mlx5e: Block offload of outer header csum for UDP tunnels
7a545077cb67 a6ee6f5f1082 Revert "net/mlx5: Arm only EQs with EQEs"
a6ee6f5f1082 9ae8c18c5e4d net/mlx5e: Fix select queue to consider SKBTX_HW_TSTAMP
9ae8c18c5e4d 11f5ac3e05c1 net/mlx5e: Don't update netdev RQs with PTP-RQ
11f5ac3e05c1 4aaf96ac8b45 net/mlx5e: Verify dev is present in get devlink port ndo
4aaf96ac8b45 c189716b2a7c net/mlx5: DR, Don't use SW steering when RoCE is not supported
c189716b2a7c a3e5fd9314df net/mlx5: Consider RoCE cap before init RDMA resources
a3e5fd9314df 8ad893e516a7 net/mlx5e: Fix page reclaim for dead peer hairpin
8ad893e516a7 fb1a3132ee1a net/mlx5e: Remove dependency in IPsec initialization flows
fb1a3132ee1a 2bf8d2ae3480 net/mlx5e: Fix use-after-free of encap entry in neigh update handler
2bf8d2ae3480 13c62f5371e3 net/mlx5e: Fix an error code in mlx5e_arfs_create_tables()
6cde05ab93df 13c62f5371e3 2e84f6b3773f Merge branch '100GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue
13c62f5371e3 d2e381c49636 net/sched: act_ct: handle DNAT tuple collision
cd1245d75ce9 a4c30b8691f2 701b54bcb7d0 Merge tag 'platform-drivers-x86-v5.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86
d2e381c49636 93124d4a90ba rtnetlink: Fix regression in bridge VLAN configuration
a4c30b8691f2 a25b088c4ffa ca0760e7d79e Merge tag 'compiler-attributes-for-linus-v5.13-rc6' of git://github.com/ojeda/linux
a25b088c4ffa cc6cf827dd68 4792f9dd1293 Merge tag 'clang-format-for-linus-v5.13-rc6' of git://github.com/ojeda/linux
93124d4a90ba a8b897c7bcd4 a9799541ca34 Merge tag 'mac80211-for-net-2021-06-09' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211
218bf772bddd 4422829e8053 kvm: LAPIC: Restore guard to prevent illegal APIC register access
a8b897c7bcd4 dcd01eeac144 udp: fix race between close() and udp_abort()
dcd01eeac144 80ec82e3d2c1 inet: annotate data race in inet_send_prepare() and inet_dgram_connect()
80ec82e3d2c1 f2386cf7c5f4 net: ethtool: clear heap allocations for ethtool function
cc6cf827dd68 2f673816b2db aefd7f706556 Merge tag 'for-5.13-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux
2e84f6b3773f ebc5399ea1df ice: parameterize functions responsible for Tx ring management
ebc5399ea1df f2386cf7c5f4 ice: add ndo_bpf callback for safe mode netdev ops
2f673816b2db 368094df48e6 4422829e8053 Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
12f36e9bf678 82944421243e netfilter: nft_fib_ipv6: skip ipv6 packets from any to link-local
82944421243e ad9f151e560b selftests: netfilter: add fib test case
ad9f151e560b f2386cf7c5f4 netfilter: nf_tables: initialize set before expression setup
78d135523462 7656cd217761 hwmon: (scpi-hwmon) shows the negative temperature properly
7656cd217761 faffc5d8576e hwmon: (corsair-psu) fix suspend behavior
faffc5d8576e 614124bea77e dt-bindings: hwmon: Fix typo in TI ADS7828 bindings
3df4fce739e2 5f0c2ee1fe8d misc: rtsx: separate aspm mode into MODE_REG and MODE_CFG
5f0c2ee1fe8d 0b67808ade88 bus: mhi: pci-generic: Fix hibernation
0b67808ade88 c7711c22c6eb bus: mhi: pci_generic: Fix possible use-after-free in mhi_pci_remove()
c7711c22c6eb 757d2e606516 bus: mhi: pci_generic: T99W175: update channel name from AT to DUN
a9799541ca34 f5baf287f5da mac80211: drop multicast fragments
f5baf287f5da 65bec836da83 mac80211: move interface shutdown out of wiphy lock
65bec836da83 43076c1e0743 cfg80211: shut down interfaces on failed resume
43076c1e0743 adaed1b9daf5 cfg80211: fix phy80211 symlink creation
adaed1b9daf5 d5befb224edb mac80211: fix 'reset' debugfs locking
7c3e8d9df265 8124c8a6b353 serial: 8250_exar: Avoid NULL pointer dereference at ->exit()
159d8c274fd9 614124bea77e ACPI: Pass the same capabilities to the _OSC regardless of the query flag
c8a570443943 b436acd1cf7f drm/mcde: Fix off by 10^3 in calculation
30e9857a1349 eb367d875f94 pinctrl: qcom: Make it possible to select SC8180x TLMM
510b80a6a0f1 12f7764ac612 x86/pkru: Write hardware init value to PKRU when xstate is init
e9de1ecadeab 43c85d770db8 staging: ralink-gdma: Remove incorrect author information
43c85d770db8 8124c8a6b353 staging: rtl8723bs: Fix uninitialized variables
fbf649cd6d64 d00889080ab6 usb: misc: brcmstb-usb-pinmap: check return value after calling platform_get_resource()
d00889080ab6 305f670846a3 usb: dwc3: ep0: fix NULL pointer exception
305f670846a3 184fa76b87ca usb: gadget: eem: fix wrong eem header operation
184fa76b87ca 843fabdd7623 usb: typec: intel_pmc_mux: Put ACPI device using acpi_dev_put()
843fabdd7623 1a85b350a774 usb: typec: intel_pmc_mux: Add missed error check for devm_ioremap_resource()
1a85b350a774 5ab14ab1f2db usb: typec: intel_pmc_mux: Put fwnode in error case during ->probe()
5ab14ab1f2db 032e288097a5 usb: typec: tcpm: Do not finish VDM AMS for retrying Responses
032e288097a5 90c4d05780d4 usb: fix various gadget panics on 10gbps cabling
12f7764ac612 d8778e393afa x86/process: Check PF_KTHREAD and not current->mm for kernel threads
90c4d05780d4 d1658268e439 usb: fix various gadgets null ptr deref on 10gbps cabling.
d1658268e439 1958ff5ad2d4 usb: pci-quirks: disable D3cold on xhci suspend for s2idle on AMD Renoir
1958ff5ad2d4 337013974585 usb: f_ncm: only first packet of aggregate needs to start timer
337013974585 40d9e03f414d USB: f_ncm: ncm_bitrate (speed) is unsigned
40d9e03f414d a39b7ba35d78 MAINTAINERS: usb: add entry for isp1760
a39b7ba35d78 1ca01c0805b7 a9aecef198fa Merge tag 'usb-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb into usb-linus
1ca01c0805b7 6fc1db5e6211 bc96c72df33e Merge tag 'usb-serial-5.13-rc5' of https://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-linus
d8778e393afa 484cea4f362e x86/fpu: Invalidate FPU state after a failed XRSTOR from a user buffer
484cea4f362e 8d651ee9c71b x86/fpu: Prevent state corruption in __fpu__restore_sig()
4422829e8053 da27a83fd6cc kvm: fix previous commit for 32-bit builds
f2386cf7c5f4 504fd6a5390c net: lantiq: disable interrupt before sheduling NAPI
8929ef8d4dfd c17611592d96 media: dt-bindings: media: renesas,drif: Fix fck definition
504fd6a5390c 1650bdb1c516 net: ena: fix DMA mapping function issues in XDP
1650bdb1c516 49bfcbfd989a net: dsa: felix: re-enable TX flow control in ocelot_port_flush()
49bfcbfd989a df693f13a18f net: rds: fix memory leak in rds_recvmsg
da27a83fd6cc b53e84eed08b kvm: avoid speculation-based attacks from out-of-range memslot accesses
b53e84eed08b f31500b0d437 KVM: x86: Unload MMU on guest TLB flush if TDP disabled to force MMU sync
41fe8d088e96 1616a4c2ab1a bcache: avoid oversized read request in cache missing code path
1616a4c2ab1a e369edbb0d8c bcache: remove bcache device self-defined readahead
3e08a9f9760f 6c14133d2d3f tracing: Correct the length check which causes memory corruption
6c14133d2d3f 824afd55e95c ftrace: Do not blindly read the ip address in ftrace_bug()
824afd55e95c e8ba0b2b6412 tools/bootconfig: Fix a build error accroding to undefined fallthrough
e8ba0b2b6412 614124bea77e tools/bootconfig: Fix error return code in apply_xbc()
edc0b0bccc9c 404e5a12691f RDMA/mlx5: Block FDB rules when not in switchdev mode
df693f13a18f 9bb392f62447 9f460ae31c44 Merge tag 'batadv-net-pullrequest-20210608' of git://git.open-mesh.org/linux-merge
9bb392f62447 d439aa33a9b9 vrf: fix maximum MTU
d439aa33a9b9 5ac6b198d7e3 net: appletalk: fix the usage of preposition
5ac6b198d7e3 d612c3f3fae2 net: ipv4: Remove unneed BUG() function
d612c3f3fae2 7a6b1ab7475f net: ipv4: fix memory leak in netlbl_cipsov4_add_std
ce86c239e4d2 b4387eaf3821 drm/msm/a6xx: avoid shadow NULL reference in failure path
b4387eaf3821 408434036958 drm/msm/a6xx: fix incorrectly set uavflagprd_inv field for A650
408434036958 45f56690051c drm/msm/a6xx: update/fix CP_PROTECT initialization
ab8363d3875a 924f41e52fd1 radeon: use memcpy_to/fromio for UVD fw upload
924f41e52fd1 c247c021b13a drm/amd/pm: Fix fall-through warning for Clang
c247c021b13a b71a52f44725 drm/amdgpu: Fix incorrect register offsets for Sienna Cichlid
b71a52f44725 2a48b5911cf2 drm/amdgpu: Use drm_dbg_kms for reporting failure to get a GEM FB
2a48b5911cf2 614124bea77e drm/amdgpu: switch kzalloc to kvzalloc in amdgpu_bo_create
f31500b0d437 f53b16ad6440 KVM: x86: Ensure liveliness of nested VM-Enter fail tracepoint message
368094df48e6 374aeb91db48 107866a8eb0b Merge tag 'for-linus-5.13b-rc6-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip
f53b16ad6440 1bc603af73dd selftests: kvm: Add support for customized slot0 memory size
374aeb91db48 591a22c14d3f d4c639990036 Merge tag 'orphans-v5.13-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux
591a22c14d3f 4c8684fe555e proc: Track /proc/$pid/attr/ opener mm_struct
1bc603af73dd af3511ff7fa2 KVM: selftests: introduce P47V64 for s390x
af3511ff7fa2 b1bd5cba3306 KVM: x86: Ensure PV TLB flush tracepoint reflects KVM behavior
45f56690051c f2f46b878777 drm/msm: Init mm_list before accessing it for use_vram path
4c8684fe555e 9b1111fa80df d38fa9a155b2 Merge tag 'spi-fix-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi
9b1111fa80df dc2557308ede cb2381cbecb8 Merge tag 'regulator-fix-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator
b1bd5cba3306 e898da784aed KVM: X86: MMU: Use the correct inherited permissions to get shadow page
e898da784aed 4f13d471e5d1 KVM: LAPIC: Write 0 to TMICT should also cancel vmx-preemption timer
4f13d471e5d1 000ac4295339 KVM: SVM: Fix SEV SEND_START session length & SEND_UPDATE_DATA query length after commit 238eca821cee
b436acd1cf7f 8a11e84b8056 drm: Fix use-after-free read in drm_getunique()
8a11e84b8056 2d2ddb589d59 drm/vc4: fix vc4_atomic_commit_tail() logic
a0309c344886 600dd2a7e8b6 c8a4556d9851 Merge tag 'asoc-fix-v5.13-rc4' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
8d651ee9c71b 614124bea77e x86/ioremap: Map EFI-reserved memory as encrypted for SEV
6687cd72aa91 2c9017d0b5d3 mmc: renesas_sdhi: Fix HS400 on R-Car M3-W+
2c9017d0b5d3 c4681547bcce mmc: renesas_sdhi: abort tuning when timeout detected
600dd2a7e8b6 57c9e21a49b1 ALSA: hda/realtek: fix mute/micmute LEDs for HP ZBook Power G8
57c9e21a49b1 9981b20a5e36 ALSA: hda/realtek: headphone and mic don't work on an Acer laptop
2d2ddb589d59 9bf3797796f5 drm/ttm: fix deref of bo->ttm without holding the lock v2
d5befb224edb bddc0c411a45 mac80211: fix deadlock in AP/VLAN handling
1e0d4e622599 11714026c02d scsi: core: Only put parent device if host state differs from SHOST_CREATED
11714026c02d 3719f4ff047e scsi: core: Put .shost_dev in failure path if host state changes to RUNNING
3719f4ff047e 66a834d09293 scsi: core: Fix failure handling of scsi_add_host_with_dma()
66a834d09293 e57f5cd99ca6 scsi: core: Fix error handling of scsi_host_alloc()
11fc79fc9f2e 1a8024239dac libbpf: Fixes incorrect rx_ring_setup_done
7a6b1ab7475f a47c397bb29f neighbour: allow NUD_NOARP entries to be forced GCed
a47c397bb29f aaab3076d7c7 revert "net: kcm: fix memory leak in kcm_sendmsg"
aaab3076d7c7 51c96a561f24 2fd8d84ce309 Merge branch 'mlxsw-fixes'
2fd8d84ce309 d566ed04e42b mlxsw: core: Set thermal zone polling delay argument to real value at init
d566ed04e42b 306b9228c097 mlxsw: spectrum_qdisc: Pass handle, not band number to find_class()
306b9228c097 51c96a561f24 mlxsw: reg: Spectrum-3: Enforce lowest max-shaper burst size of 11
51c96a561f24 3822d0670c9d ethtool: Fix NULL pointer dereference during module EEPROM dump
dc2557308ede 614124bea77e afs: Fix partial writeback of large files on fsync and close
c8a4556d9851 49783c6f4a4f ASoC: qcom: lpass-cpu: Fix pop noise during audio capture begin
107866a8eb0b c81d3d246025 xen-netback: take a reference to the RX task thread
f1ffa9d4cccc 614124bea77e Revert "ACPI: sleep: Put the FACS table after using it"
9bf3797796f5 0b78f8bcf495 drm/sun4i: dw-hdmi: Make HDMI PHY into a platform device
1874cb13d5d7 5bcbe3285fb6 s390/mcck: fix invalid KVM guest condition check
5bcbe3285fb6 614124bea77e s390/mcck: fix calculation of SIE critical section size
eb367d875f94 0e4bf265b11a pinctrl: ralink: rt2880: avoid to error in calls is pin is already enabled
9041575348b2 2537b40b0a4f dmaengine: mediatek: use GFP_NOWAIT instead of GFP_ATOMIC in prep_dma
2537b40b0a4f 0a2ff58f9f8f dmaengine: mediatek: do not issue a new desc if one is still current
0a2ff58f9f8f acbef0922c7d dmaengine: mediatek: free the proper desc in desc_free handler
614124bea77e 90d56a3d6e0b Linux 5.13-rc5
90d56a3d6e0b 20e41d9bc804 e57f5cd99ca6 Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
0e4bf265b11a 333944c7c375 pinctrl: qcom: Fix duplication in gpio_groups
20e41d9bc804 decad3e1d1ed e71f99f2dfb4 Merge tag 'ext4_for_linus_stable' of git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4
decad3e1d1ed bd7b12aa6081 b9c112f2c223 Merge tag 'arm-soc-fixes-v5.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
bd7b12aa6081 773ac53bbfce 59cc84c802eb Merge tag 'powerpc-5.13-5' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux
773ac53bbfce f5b6eb1e0182 009767dbf42a Merge tag 'x86_urgent_for_v5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
e71f99f2dfb4 63e7f1289389 ext4: Only advertise encrypted_casefold when encryption and unicode are enabled
63e7f1289389 afd09b617db3 ext4: fix no-key deletion for encrypt+casefold
afd09b617db3 a7ba36bc94f2 ext4: fix memory leak in ext4_fill_super
a7ba36bc94f2 082cd4ec240b ext4: fix fast commit alignment issues
082cd4ec240b b45f189a19b3 ext4: fix bug on in ext4_es_cache_extent as ext4_split_extent_at failed
8e11d62e2e87 59cc84c802eb powerpc/mem: Add back missing header to fix 'no previous prototype' error
f5b6eb1e0182 e5220dd16778 57648e860485 Merge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux
b9c112f2c223 7468bed8f850 cab12badfc99 Merge tag 'ti-k3-dt-fixes-for-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/nmenon/linux into arm/fixes
7468bed8f850 2f3e4eb17973 673c7aa2436b Merge tag 'optee-fix-for-v5.13' of git://git.linaro.org/people/jens.wiklander/linux-tee into arm/fixes
2f3e4eb17973 94277cb5b4db bae989c4bc53 Merge tag 'omap-for-v5.13/fixes-pm' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into arm/fixes
94277cb5b4db 3091a9e74240 db8e712e0687 Merge tag 'omap-for-v5.13/fixes-sata' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into arm/fixes
3091a9e74240 3a2d3ae06787 4cce442ffe54 Merge tag 'amlogic-fixes-v5.13-rc1' of https://git.kernel.org/pub/scm/linux/kernel/git/amlogic/linux into arm/fixes
3a2d3ae06787 c4681547bcce b73eb6b3b91f Merge tag 'imx-fixes-5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux into arm/fixes
e5220dd16778 af8d9eb84076 2eff0573e0d5 Merge branch 'akpm' (patches from Andrew)
af8d9eb84076 9d32fa5d74b1 160ce364167f Merge tag 'riscv-for-linus-5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux
2eff0573e0d5 6bba4471f0cc mailmap: use private address for Michel Lespinasse
6bba4471f0cc 415f0c835ba7 ocfs2: fix data corruption by fallocate
415f0c835ba7 d84cf06e3dd8 lib: crc64: fix kernel-doc warning
d84cf06e3dd8 7b6889f54a3c mm, hugetlb: fix simple resv_huge_pages underflow on UFFDIO_COPY
7b6889f54a3c 263e88d678ba mm/kasan/init.c: fix doc warning
263e88d678ba 0c5da35723a9 proc: add .gitignore for proc-subset-pid selftest
0c5da35723a9 928130532e19 hugetlb: pass head page to remove_hugetlb_page()
928130532e19 bac9c6fa1f92 drivers/base/memory: fix trying offlining memory blocks with memory holes on aarch64
bac9c6fa1f92 04f7ce3f07ce mm/page_alloc: fix counting of free pages after take off from buddy
04f7ce3f07ce 0711f0d7050b mm/debug_vm_pgtable: fix alignment for pmd/pud_advanced_tests()
0711f0d7050b 8fd0e995cc7b pid: take a reference when initializing `cad_pid`
8fd0e995cc7b 50c25ee97cf6 kfence: use TASK_IDLE when awaiting allocation
50c25ee97cf6 16f0596fc1d7 Revert "MIPS: make userspace mapping young by default"
9981b20a5e36 dfb06401b4cd ALSA: firewire-lib: fix the context to call snd_pcm_stop_xrun()
dfb06401b4cd 61d3e87468fa ALSA: hda/realtek: fix mute/micmute LEDs for HP EliteBook 840 Aero G8
61d3e87468fa 15d295b560e6 ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP EliteBook x360 1040 G8
15d295b560e6 b8b90c176026 ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Elite Dragonfly G2
bc96c72df33e 56df0c758aff USB: serial: ftdi_sio: add NovaTech OrionMX product ID
9d32fa5d74b1 2cb26c15a247 3822d0670c9d Merge tag 'net-5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
2cb26c15a247 ff6091075a68 67069a1f0fe5 Merge tag 'perf-tools-fixes-for-v5.13-2021-06-04' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux
ff6091075a68 16f0596fc1d7 85aabbd7b315 Merge tag 'pci-v5.13-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
3822d0670c9d 944d671d5faa cxgb4: avoid link re-train during TC-MQPRIO configuration
944d671d5faa 26821ecd3b48 sch_htb: fix refcount leak in htb_parent_to_leaf_offload
26821ecd3b48 6fd815bb1ecc 519d8ab17682 Merge branch '100GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue
6fd815bb1ecc 579028dec182 bf7b042dc62a Merge branch 'wireguard-fixes'
bf7b042dc62a dc680de28ca8 wireguard: allowedips: free empty intermediate nodes when removing single node
dc680de28ca8 f634f418c227 wireguard: allowedips: allocate nodes in kmem_cache
f634f418c227 46cfe8eee285 wireguard: allowedips: remove nodes in O(1)
46cfe8eee285 a4e9f8e3287c wireguard: allowedips: initialize list head in selftest
a4e9f8e3287c 24b70eeeb4f4 wireguard: peer: allocate in kmem_cache
24b70eeeb4f4 cc5060ca0285 wireguard: use synchronize_net rather than synchronize_rcu
cc5060ca0285 f8873d11d412 wireguard: do not use -O3
f8873d11d412 acf2492b51c9 wireguard: selftests: make sure rp_filter is disabled on vethc
acf2492b51c9 579028dec182 wireguard: selftests: remove old conntrack kconfig value
57648e860485 9f78c607600c i2c: qcom-geni: Suspend and resume the bus during SYSTEM_SLEEP_PM ops
9f78c607600c de2646f34a5b i2c: qcom-geni: Add shutdown callback for i2c
701b54bcb7d0 6325ce1542bc platform/mellanox: mlxreg-hotplug: Revert "move to use request_irq by IRQF_NO_AUTOEN flag"
6325ce1542bc b430e1d65ef6 platform/surface: dtx: Add missing mutex_destroy() call in failure path
16f0596fc1d7 3a3c5ab3d698 b8b90c176026 Merge tag 'sound-5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
009767dbf42a 5405b42c2f08 x86/sev: Check SME/SEV support in CPUID first
3a3c5ab3d698 f88cd3fb9df2 37e2f2e800dc Merge tag 'drm-fixes-2021-06-04-1' of git://anongit.freedesktop.org/drm/drm
519d8ab17682 f9f83202b726 virtchnl: Add missing padding to virtchnl_proto_hdrs
f9f83202b726 5cd349c349d6 ice: Allow all LLDP packets from PF to Tx
5cd349c349d6 c7ee6ce1cf60 ice: report supported and advertised autoneg using PHY capabilities
c7ee6ce1cf60 8679f07a9922 ice: handle the VF VSI rebuild failure
8679f07a9922 f0457690af56 ice: Fix VFR issues for AVF drivers that expect ATQLEN cleared
f0457690af56 1a8024239dac ice: Fix allowing VF to request more/less queues via virtchnl
67069a1f0fe5 69c9ffed6ced perf env: Fix memory leak of bpf_prog_info_linear member
5405b42c2f08 f1d4d47c5851 x86/fault: Don't send SIGSEGV twice on SEGV_PKUERR
69c9ffed6ced 3cc84399e9b6 perf symbol-elf: Fix memory leak by freeing sdt_note.args
3cc84399e9b6 2dc065eae56d perf stat: Honor event config name on --no-merge
2dc065eae56d f677ec94f6fb perf evsel: Add missing cloning of evsel->use_config_name
f501b6a2312e 8124c8a6b353 debugfs: Fix debugfs_read_file_str()
49783c6f4a4f 8bef925e37bd ASoC: rt5682: Fix the fast discharge for headset unplugging in soundwire mode
6fc1db5e6211 024236abeba8 usb: gadget: f_fs: Ensure io_completion_wq is idle during unbind
024236abeba8 7ade4805e296 usb: typec: tcpm: cancel send discover hrtimer when unregister tcpm port
7ade4805e296 3a13ff7ef434 usb: typec: tcpm: cancel frs hrtimer when unregister tcpm port
3a13ff7ef434 063933f47a7a usb: typec: tcpm: cancel vdm and state machine hrtimer when unregister tcpm port
063933f47a7a 4d2aa178d2ad usb: typec: tcpm: Properly handle Alert and Status Messages
aefd7f706556 e7b2ec3d3d4e btrfs: promote debugging asserts to full-fledged checks in validate_super
e7b2ec3d3d4e 5b434df87787 btrfs: return value from btrfs_mark_extent_written() in case of error
5b434df87787 165ea85f1483 btrfs: zoned: fix zone number to sector/physical calculation
165ea85f1483 503d1acb0182 btrfs: do not write supers if we have an fs error
4d2aa178d2ad 1d0d3d818eaf usb: dwc3-meson-g12a: fix usb2 PHY glue init when phy0 is disabled
1d0d3d818eaf 80137c18737c usb: dwc3: meson-g12a: Disable the regulator in the error handling path of the probe
757d2e606516 8124c8a6b353 d1ce245fe409 Merge tag 'phy-fixes-5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy into char-misc-linus
80137c18737c 7ac505103572 usb: typec: tcpm: Fix misuses of AMS invocation
7ac505103572 55b54c269bee usb: typec: tcpm: Introduce snk_vdo_v1 for SVDM version 1.0
55b54c269bee f41bfc7e9c7c dt-bindings: connector: Add PD rev 2.0 VDO definition
f41bfc7e9c7c 8f11fe7e4068 usb: typec: tcpm: Correct the responses in SVDM Version 2.0 DFP
8f11fe7e4068 9257bd80b917 Revert "usb: dwc3: core: Add shutdown callback for dwc3"
9257bd80b917 8d396bb0a5b6 dt-bindings: connector: Replace BIT macro with generic bit ops
37e2f2e800dc d6273d8f31cd 671cc352acd3 Merge tag 'drm/tegra/for-5.13-rc5' of ssh://git.freedesktop.org/git/tegra/linux into drm-fixes
d6273d8f31cd ff7a24a8fcb3 e7591a8d56ba Merge tag 'amd-drm-fixes-5.13-2021-06-02' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
579028dec182 1a8024239dac 1f14a620f30b Merge tag 'for-net-2021-06-03' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth
1a8024239dac e31d57ca146b virtio-net: fix for skb_over_panic inside big mode
e31d57ca146b 821bbf79fe46 373e864cf524 Merge tag 'ieee802154-for-davem-2021-06-03' of git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan
821bbf79fe46 5e7a2c649481 ipv6: Fix KASAN: slab-out-of-bounds Read in fib6_nh_flush_exceptions
5e7a2c649481 59607863c54e d4826d17b393 Merge tag 'wireless-drivers-2021-06-03' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers
59607863c54e 49251cd00228 fib: Return the correct errno code
49251cd00228 d7736958668c net: Return the correct errno code
d7736958668c a27fb314cba8 net/x25: Return the correct errno code
a27fb314cba8 e03101824d25 cxgb4: fix regression with HASH tc prio value update
e03101824d25 4189777ca84f 7f5d86669fa4 Merge branch 'caif-fixes'
7f5d86669fa4 b53558a950a8 net: caif: fix memory leak in cfusbl_device_notify
b53558a950a8 a2805dca5107 net: caif: fix memory leak in caif_device_notify
a2805dca5107 bce130e7f392 net: caif: add proper error handling
bce130e7f392 4189777ca84f net: caif: added cfserl_release function
4189777ca84f 86b84066dc8f e102db780e1c Merge branch '1GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue
ff7a24a8fcb3 59dda702c95d b87482dfe800 Merge tag 'drm-intel-fixes-2021-06-03' of git://anongit.freedesktop.org/drm/drm-intel into drm-fixes
59dda702c95d 8124c8a6b353 0b78f8bcf495 Merge tag 'drm-misc-fixes-2021-06-03' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixes
86b84066dc8f c47cc304990a ff40e51043af Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf
c47cc304990a 261ba78cc364 net: kcm: fix memory leak in kcm_sendmsg
1f14a620f30b a83d95850473 Bluetooth: btusb: Fix failing to init controllers with operation firmware
a83d95850473 e305509e678b Bluetooth: Fix VIRTIO_ID_BT assigned number
261ba78cc364 a8db57c1d285 sit: set name of device back to struct parms
a8db57c1d285 59717f3931f0 rtnetlink: Fix missing error code in rtnl_bridge_notify()
59717f3931f0 ab00f3e051e8 8971ee8b0877 Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf
de2646f34a5b a4931dcab1de i2c: tegra-bpmp: Demote kernel-doc abuses
a4931dcab1de 8124c8a6b353 i2c: altera: Fix formatting issue in struct and demote unworthy kernel-doc headers
f88cd3fb9df2 143d28dcf238 dc51ff91cf2d Merge tag 'vfio-v5.13-rc5' of git://github.com/awilliam/linux-vfio
143d28dcf238 ec955023967c e369edbb0d8c Merge tag 'block-5.13-2021-06-03' of git://git.kernel.dk/linux-block
ec955023967c fd2ff2774e90 216e5835966a Merge tag 'io_uring-5.13-2021-06-03' of git://git.kernel.dk/linux-block
fd2ff2774e90 324c92e5e0ee 503d1acb0182 Merge tag 'for-5.13-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux
cb2381cbecb8 50bec7fb4cb1 regulator: rt4801: Fix NULL pointer dereference if priv->enable_gpios is NULL
8d396bb0a5b6 6490fa565534 usb: dwc3: debugfs: Add and remove endpoint dirs dynamically
f1d4d47c5851 2b31e8ed96b2 x86/setup: Always reserve the first 1M of RAM
404e5a12691f a0ffb4c12f7f RDMA/mlx4: Do not map the core_clock page to user space unless enabled
a0ffb4c12f7f a3e74fb9247c RDMA/mlx5: Use different doorbell memory for different processes
e102db780e1c 45ce08594ec3 ice: track AF_XDP ZC enabled queues in bitmap
45ce08594ec3 faae81420d16 igc: add correct exception tracing for XDP
faae81420d16 74431c40b9c5 ixgbevf: add correct exception tracing for XDP
74431c40b9c5 8281356b1cab igb: add correct exception tracing for XDP
8281356b1cab 89d65df024c5 ixgbe: add correct exception tracing for XDP
89d65df024c5 f6c10b48f8c8 ice: add correct exception tracing for XDP
f6c10b48f8c8 5379260852b0 i40e: add correct exception tracing for XDP
5379260852b0 ab00f3e051e8 igb: Fix XDP with PTP enabled
2b31e8ed96b2 9bfecd058339 x86/alternative: Optimize single-byte NOPs at an arbitrary position
9bfecd058339 74b2fc882d38 x86/cpufeatures: Force disable X86_FEATURE_ENQCMD and remove update_pasid()
74b2fc882d38 9a90ed065a15 dmaengine: idxd: Use cpu_feature_enabled()
c3aba897c6e6 dfe1fe75e00e NFSv4: Fix second deadlock in nfs4_evict_inode()
dfe1fe75e00e d1b5c230e9cb NFSv4: Fix deadlock between nfs4_evict_inode() and nfs4_opendata_get_inode()
d1b5c230e9cb 09226e8303be NFS: FMODE_READ and friends are C macros, not enum types
09226e8303be 476bdb04c501 NFS: Fix a potential NULL dereference in nfs_get_client()
476bdb04c501 0b4f132b15f9 NFS: Fix use-after-free in nfs4_init_client()
0b4f132b15f9 f8849e206ef5 NFS: Ensure the NFS_CAP_SECURITY_LABEL capability is set when appropriate
68d7a190682a fcf6631f3736 sched/fair: Fix util_est UTIL_AVG_UNCHANGED handling
e369edbb0d8c a4b58f1721eb bcd9a0797d73 Merge tag 'nvme-5.13-2021-06-03' of git://git.infradead.org/nvme into block-5.13
503d1acb0182 76a6d5cd7447 MAINTAINERS: add btrfs IRC link
d38fa9a155b2 f131767eefc4 spi: stm32-qspi: Always wait BUSY bit to be cleared in stm32_qspi_wait_cmd()
50bec7fb4cb1 bc537e65b09a regulator: hi6421v600: Fix .vsel_mask setting
8bef925e37bd d031d99b02ea ASoC: tas2562: Fix TDM_CFG0_SAMPRATE values
d031d99b02ea 320232caf1d8 ASoC: meson: gx-card: fix sound-dai dt schema
320232caf1d8 19a0aa9b04c5 ASoC: AMD Renoir: Remove fix for DMI entry on Lenovo 2020 platforms
acbef0922c7d dea8464ddf55 dmaengine: ipu: fix doc warning in ipu_irq.c
dea8464ddf55 99b18e88a1cf dmaengine: rcar-dmac: Fix PM reference leak in rcar_dmac_probe()
b430e1d65ef6 c0e0436cb4f6 platform/surface: aggregator: Fix event disable function
fcf6631f3736 f268c3737eca sched/pelt: Ensure that *_sum is always synced with *_avg
373e864cf524 79c6b8ed30e5 ieee802154: fix error return code in ieee802154_llsec_getparams()
79c6b8ed30e5 aab53e6756ca ieee802154: fix error return code in ieee802154_add_iface()
aab53e6756ca ad6f5cc5f6c2 net: ieee802154: mrf24j40: Drop unneeded of_match_ptr()
ad6f5cc5f6c2 9fdd04918a45 net/ieee802154: drop unneeded assignment in llsec_iter_devkeys()
b8b90c176026 9c1fe96bded9 ALSA: hda: update the power_state during the direct-complete
9c1fe96bded9 3ae72f6ab9c1 ALSA: timer: Fix master timer notification
99b18e88a1cf fffdaba402ce dmaengine: idxd: Fix missing error code in idxd_cdev_open()
d1ce245fe409 d6e9e8e5dd53 phy: Sparx5 Eth SerDes: check return value after calling platform_get_resource()
d6e9e8e5dd53 b8203ec7f58a phy: ralink: phy-mt7621-pci: drop 'of_match_ptr' to fix -Wunused-const-variable
b45f189a19b3 a8867f4e3809 ext4: fix accessing uninit percpu counter variable with fast_commit
e7591a8d56ba 07438603a07e amd/display: convert DRM_DEBUG_ATOMIC to drm_dbg_atomic
07438603a07e 2370eba9f552 drm/amdgpu: make sure we unpin the UVD BO
2370eba9f552 c5699e2d863f drm/amd/amdgpu:save psp ring wptr to avoid attack
c5699e2d863f dce3d8e1d070 drm/amd/display: Fix potential memory leak in DMUB hw_init
dce3d8e1d070 33f409e60eb0 drm/amdgpu: Don't query CE and UE errors
33f409e60eb0 5cfc912582e1 drm/amd/display: Fix overlay validation by considering cursors
5cfc912582e1 147feb007685 drm/amdgpu: refine amdgpu_fru_get_product_info
147feb007685 a53085c1d20f drm/amdgpu: add judgement for dc support
a53085c1d20f ba8e59773ae5 drm/amd/display: Fix GPU scaling regression by FS video support
ba8e59773ae5 8124c8a6b353 drm/amd/display: Allow bandwidth validation for 0 streams.
ab00f3e051e8 b508d5fb69c2 net: stmmac: fix issue where clk is being unprepared twice
b508d5fb69c2 dd62766239d5 net: ipconfig: Don't override command-line hostnames or domains
dd62766239d5 b000372627ce 216214c64a8c Merge tag 'mlx5-fixes-2021-06-01' of git://git.kernel.org/pub/scm/linu x/kernel/git/saeed/linux
ff40e51043af ff2e6efda0d5 bpf, lockdown, audit: Fix buggy SELinux lockdown permission checks
d4c639990036 d94b93a91015 vmlinux.lds.h: Avoid orphan section with !SMP
d94b93a91015 d07f6ca923ea ARM: cpuidle: Avoid orphan section warning
324c92e5e0ee 0372b6dd6cfe e169fba4f464 Merge tag 'efi-urgent-2021-06-02' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
0372b6dd6cfe 3bfc6ffb616f e4dfe1083712 Merge tag 'acpi-5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
3bfc6ffb616f 231bc5390667 f0fb26c456a3 Merge tag 'hwmon-for-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging
a3e74fb9247c 8124c8a6b353 RDMA/ipoib: Fix warning caused by destroying non-initial netns
6490fa565534 b65ba0c362be usb: pd: Set PD_T_SINK_WAIT_CAP to 310ms
b65ba0c362be 03715ea2e3db usb: musb: fix MUSB_QUIRK_B_DISCONNECT_99 handling
03715ea2e3db 8212937305f8 usb: dwc3: gadget: Bail from dwc3_gadget_exit() if dwc->gadget is NULL
8212937305f8 8124c8a6b353 usb: dwc3: gadget: Disable gadget IRQ during pullup disable
b87482dfe800 10c1f0cbcea9 Revert "i915: use io_mapping_map_user"
10c1f0cbcea9 8124c8a6b353 drm/i915/selftests: Fix return value check in live_breadcrumbs_smoketest()
f131767eefc4 2ec6f20b33eb spi: spi-zynq-qspi: Fix some wrong goto jumps & missing error code
bc537e65b09a 1963fa67d786 regulator: bd718x7: Fix the BUCK7 voltage setting on BD71837
19a0aa9b04c5 b640e8a4bd24 ASoC: AMD Renoir - add DMI entry for Lenovo 2020 AMD platforms
8971ee8b0877 1710eb913bdc netfilter: nfnetlink_cthelper: hit EBUSY on updates if size mismatches
1710eb913bdc b000372627ce netfilter: nft_ct: skip expectations for confirmed conntrack
3ae72f6ab9c1 901be145a46e ALSA: control led: fix memory leak in snd_ctl_led_register
bcd9a0797d73 6622f9acd29c nvmet: fix freeing unallocated p2pmem
6622f9acd29c 4237de2f73a6 nvme-loop: do not warn for deleted controllers during reset
4237de2f73a6 1c5f8e882a05 nvme-loop: check for NVME_LOOP_Q_LIVE in nvme_loop_destroy_admin_queue()
1c5f8e882a05 a6c144f3d2e2 nvme-loop: clear NVME_LOOP_Q_LIVE when nvme_loop_configure_admin_queue() fails
a6c144f3d2e2 12b2aaadb6d5 nvme-loop: reset queue count to 1 in nvme_loop_destroy_io_queues()
160ce364167f da2d48808fbd 8a4102a0cf07 Merge remote-tracking branch 'riscv/riscv-wx-mappings' into fixes
da2d48808fbd b75db25c416b RISC-V: Fix memblock_free() usages in init_resources()
b75db25c416b ec3a5cb61146 riscv: skip errata_cip_453.o if CONFIG_ERRATA_SIFIVE_CIP_453 is disabled
8a4102a0cf07 6efb943b8616 riscv: mm: Fix W+X mappings at boot
231bc5390667 00151f515add a94f66aecdaa Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid
e57f5cd99ca6 2c89e41326b1 scsi: scsi_devinfo: Add blacklist entry for HPE OPEN-V
00151f515add 4d96d3b0efee d5b8145455c6 Merge tag 'gfs2-v5.13-rc2-fixes2' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2
4d96d3b0efee c2131f7e73c9 Bluetooth: Add a new USB ID for RTL8822CE
2c89e41326b1 79c932cd6af9 scsi: ufs: ufs-mediatek: Fix HCI version in some platforms
79c932cd6af9 696770e72f2b scsi: qedf: Do not put host in qedf_vport_create() unconditionally
216214c64a8c 5349cbba754e net/mlx5: DR, Create multi-destination flow table with level less than 64
5349cbba754e 256f79d13c1d net/mlx5e: Fix conflict with HW TS and CQE compression
256f79d13c1d 2a2c84facd4a net/mlx5e: Fix HW TS with CQE compression according to profile
2a2c84facd4a afe93f71b5d3 net/mlx5e: Fix adding encap rules to slow path
afe93f71b5d3 5940e64281c0 net/mlx5e: Check for needed capability for cvlan matching
5940e64281c0 b38742e41177 net/mlx5: Check firmware sync reset requested is set before trying to abort it
b38742e41177 d8ec92005f80 net/mlx5e: Disable TLS offload for uplink representor
d8ec92005f80 b000372627ce net/mlx5e: Fix incompatible casting
b000372627ce 7c0aee3033e7 MAINTAINERS: nfc mailing lists are subscribers-only
7c0aee3033e7 f336d0b93ae9 c55dcdd435aa Merge branch 'ktls-use-after-free'
c55dcdd435aa 05fc8b6cbd4f net/tls: Fix use-after-free after the TLS device goes down and up
05fc8b6cbd4f f336d0b93ae9 net/tls: Replace TLS_RX_SYNC_RUNNING with RCU
f336d0b93ae9 53d5fa9b234e ethernet: myri10ge: Fix missing error code in myri10ge_probe()
53d5fa9b234e dd9082f4a9f9 8fb7da9e9907 Merge branch 'virtio_net-build_skb-fixes'
8fb7da9e9907 5c37711d9f27 virtio_net: get build_skb() buf by data ptr
5c37711d9f27 dd9082f4a9f9 virtio-net: fix for unable to handle page fault for address
dd9082f4a9f9 4ef8d857b5f4 net: sock: fix in-kernel mark setting
4ef8d857b5f4 4ac06a1e013c net: dsa: tag_8021q: fix the VLAN IDs used for encoding sub-VLANs
d5b8145455c6 c2131f7e73c9 Revert "gfs2: Fix mmap locking for write faults"
f8849e206ef5 8124c8a6b353 NFSv4: nfs4_proc_set_acl needs to restore NFS_CAP_UIDGID_NOMAP on error.
0b78f8bcf495 8124c8a6b353 Revert "fb_defio: Remove custom address_space_operations"
848ff3768684 4a0e3ff30980 perf/x86/intel/uncore: Fix M2M event umask for Ice Lake server
f677ec94f6fb d3fddc355a4a perf test: Test 17 fails with make LIBPFM4=1 on s390 z/VM
d3fddc355a4a 4f2abe91922b perf stat: Fix error return code in bperf__load()
4f2abe91922b 3cb17cce1e76 perf record: Move probing cgroup sampling support
3cb17cce1e76 6c1ced2f7016 perf probe: Fix NULL pointer dereference in convert_variable_location()
6c1ced2f7016 c2131f7e73c9 perf tools: Copy uapi/asm/perf_regs.h from the kernel for MIPS
2ec6f20b33eb 13817d466eb8 spi: Cleanup on failure of initial setup
1963fa67d786 46639a5e684e regulator: atc260x: Fix n_voltages and min_sel for pickable linear ranges
46639a5e684e 89082179ec50 regulator: rtmv20: Fix to make regcache value first reading back from HW
89082179ec50 5f01de6ffae2 regulator: mt6315: Fix function prototype for mt6315_map_mode
5f01de6ffae2 86ab21cc39e6 regulator: rtmv20: Add Richtek to Kconfig text
86ab21cc39e6 a072cbda97a9 regulator: rtmv20: Fix .set_current_limit/.get_current_limit callbacks
b640e8a4bd24 a8437f05384c ASoC: SOF: reset enabled_cores state at suspend
a8437f05384c ce1f25718b25 ASoC: fsl-asoc-card: Set .owner attribute when registering card.
ce1f25718b25 6308c44ed6ee ASoC: topology: Fix spelling mistake "vesion" -> "version"
901be145a46e 527ff9550682 ALSA: hda: Fix for mute key LED for HP Pavilion 15-CK0xx
527ff9550682 08a4b904a2a9 ALSA: hda/cirrus: Set Initial DMIC volume to -26 dB
4ac06a1e013c 593f555fbc60 nfc: fix NULL ptr dereference in llcp_sock_getname() after failed connect
696770e72f2b 515da6f4295c scsi: lpfc: Fix failure to transmit ABTS on FC link
515da6f4295c 2ef7665dfd88 scsi: target: core: Fix warning on realtime kernels
59cc84c802eb 1438709e6328 Revert "powerpc/kernel/iommu: Align size for IOMMU_PAGE_SIZE() to save TCEs"
9a90ed065a15 7d65f9e80646 x86/thermal: Fix LVT thermal setup for SMI delivery mode
bddc0c411a45 e298aa358f0c mac80211: Fix NULL ptr deref for injected rate info
e298aa358f0c b90f51e8e1f5 mac80211: fix skb length check in ieee80211_scan_rx()
b90f51e8e1f5 a64b6a25dd9f staging: rtl8723bs: fix monitor netdev register/unregister
a64b6a25dd9f 34fb4db5abc1 cfg80211: call cfg80211_leave_ocb when switching away from OCB
34fb4db5abc1 bd18de517923 mac80211: correct ieee80211_iterate_active_interfaces_mtx() locking comments
bd18de517923 0ee4d55534f8 mac80211_hwsim: drop pending frames on stop
0ee4d55534f8 593f555fbc60 mac80211: remove warning in ieee80211_get_sband()
08a4b904a2a9 4ad7935df6a5 ALSA: hda: Fix a regression in Capture Switch mixer read
c2131f7e73c9 36c795513a88 1ab19c5de4c5 Merge tag 'gfs2-v5.13-rc2-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2
36c795513a88 8124c8a6b353 a8b98c808eab Merge tag 'fsnotify_for_v5.13-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs
e305509e678b 6a137caec23a Bluetooth: use correct lock to prevent UAF of hdev object
671cc352acd3 b79b6081c440 drm/tegra: Correct DRM_FORMAT_MOD_NVIDIA_SECTOR_LAYOUT
e4dfe1083712 8124c8a6b353 ACPICA: Clean up context mutex during object deletion
1ab19c5de4c5 b7f55d928e75 gfs2: Fix use-after-free in gfs2_glock_shrink_scan
b8203ec7f58a aaac9a1bd370 phy: ti: Fix an error code in wiz_probe()
aaac9a1bd370 6411e386db0a phy: phy-mtk-tphy: Fix some resource leaks in mtk_phy_init()
6411e386db0a 7c2fc79250ca phy: cadence: Sierra: Fix error return code in cdns_sierra_phy_probe()
4a0e3ff30980 6c605f837115 perf/x86/intel/uncore: Fix a kernel WARNING triggered by maxcpus=1
6c605f837115 8124c8a6b353 perf: Fix data race between pin_count increment/decrement
f268c3737eca 02da26ad5ed6 tick/nohz: Only check for RCU deferred wakeup on user/guest entry when needed
02da26ad5ed6 7c7ad626d9a0 sched/fair: Make sure to update tg contrib for blocked load
7c7ad626d9a0 8124c8a6b353 sched/fair: Keep load_avg and load_sum synced
4cce442ffe54 a06bc9690261 arm64: meson: select COMMON_CLK
a06bc9690261 6efb943b8616 soc: amlogic: meson-clk-measure: remove redundant dev_err call in meson_msr_probe()
12b2aaadb6d5 a4b58f1721eb nvme-rdma: fix in-casule data send for chained sgls
fffdaba402ce 8e2e4f3c5852 dmaengine: stedma40: add missing iounmap() on error in d40_probe()
8e2e4f3c5852 0cfbb589d67f dmaengine: SF_PDMA depends on HAS_IOMEM
0cfbb589d67f 253697b93c2a dmaengine: QCOM_HIDMA_MGMT depends on HAS_IOMEM
253697b93c2a ddf742d4f3f1 dmaengine: ALTERA_MSGDMA depends on HAS_IOMEM
ddf742d4f3f1 9f007e7b6643 dmaengine: idxd: Add missing cleanup for early error out in probe call
9f007e7b6643 32828b82fb87 dmaengine: xilinx: dpdma: Limit descriptor IDs to 16 bits
32828b82fb87 83eb4868d325 dmaengine: xilinx: dpdma: Add missing dependencies to Kconfig
83eb4868d325 8982d48af36d dmaengine: stm32-mdma: fix PM reference leak in stm32_mdma_alloc_chan_resourc()
8982d48af36d 538ea65a9fd1 dmaengine: zynqmp_dma: Fix PM reference leak in zynqmp_dma_alloc_chan_resourc()
8124c8a6b353 b90e90f40b4f Linux 5.13-rc4
593f555fbc60 6850ec973791 net: stmmac: fix kernel panic due to NULL pointer dereference of mdio_bus_data
d4826d17b393 02de318afa7a mt76: mt7921: remove leftover 80+80 HE capability
02de318afa7a 2c2bdd2372af mt76: mt7615: do not set MT76_STATE_PM at bootstrap
4ad7935df6a5 50dbfae972cb ALSA: hda: Add AlderLake-M PCI ID
b90e90f40b4f 9a76c0ee3a75 8aa0ae439966 Merge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux
9a76c0ee3a75 9d68fe84f8c5 ddc473916955 Merge tag 'seccomp-fixes-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux
9d68fe84f8c5 75b9c727afcc bab0d47c0ebb Merge tag 'riscv-for-linus-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux
75b9c727afcc df8c66c4cfb9 0fe0bbe00a6f Merge tag 'xfs-5.13-fixes-3' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
216e5835966a b16ef427adf3 io_uring: fix misaccounting fix buf pinned pages
ec3a5cb61146 bab0d47c0ebb riscv: Use -mno-relax when using lld linker
ddc473916955 aac902925ea6 seccomp: Refactor notification handler to prepare for new semantics
df8c66c4cfb9 f956cb99b938 5d8db38ad766 Merge tag 'thermal-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux
f956cb99b938 e1a9e3db3bb5 bbf0a94744ed Merge tag 'char-misc-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
e1a9e3db3bb5 494b99f712d0 0c8713153fbf Merge tag 'driver-core-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
494b99f712d0 3837f9a08bda 54732a5322ff Merge tag 'staging-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging
3837f9a08bda 523d0b1e9c42 56dde68f85be Merge tag 'tty-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty
523d0b1e9c42 224478289ca0 a7f2e9272aff Merge tag 'usb-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
224478289ca0 866c4b8a18e2 000ac4295339 Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
866c4b8a18e2 6799d4f2da49 ffa99c436aa7 Merge tag 's390-5.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
000ac4295339 a3d2ec9d3c2f selftests: kvm: fix overlapping addresses in memslot_perf_test
7d65f9e80646 c4681547bcce x86/apic: Mark _all_ legacy interrupts when IO/APIC is missing
6799d4f2da49 0217a27e4d19 2ef7665dfd88 Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
0217a27e4d19 b3dbbae60993 a4b58f1721eb Merge tag 'block-5.13-2021-05-28' of git://git.kernel.dk/linux-block
b3dbbae60993 567d1fd853b8 b16ef427adf3 Merge tag 'io_uring-5.13-2021-05-28' of git://git.kernel.dk/linux-block
567d1fd853b8 f289d990450c aeeb51736882 Merge tag 'drm-fixes-2021-05-29' of git://anongit.freedesktop.org/drm/drm
f289d990450c 7c0ec89d31e5 8fc4e4aa2bfc Merge tag 'perf-tools-fixes-for-v5.13-2021-05-28' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux
7c0ec89d31e5 5ff2756afde0 1bb56810677f Merge tag '5.13-rc4-smb3' of git://git.samba.org/sfrench/cifs-2.6
6850ec973791 44991d61aa12 69ca3d29a755 Merge branch 'mptcp-fixes-for-5-13'
69ca3d29a755 dea2b1ea9c70 mptcp: update selftest for fallback due to OoO
dea2b1ea9c70 06f9a435b3aa mptcp: do not reset MP_CAPABLE subflow on mapping errors
06f9a435b3aa b5941f066b4c mptcp: always parse mptcp options for MPC reqsk
b5941f066b4c 44991d61aa12 mptcp: fix sk_forward_memory corruption on retransmission
5ff2756afde0 fc683f967aa9 a799b68a7c7a Merge tag 'nfs-for-5.13-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfs
fc683f967aa9 8508b97ae2b6 50dbfae972cb Merge tag 'sound-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
8508b97ae2b6 afdd14704d7e 24845dcb170e Merge tag 'clang-features-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux
afdd14704d7e 97e5bf604b7a 78cf0eb926cb Merge tag 'mips-fixes_5.13_1' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux
a3d2ec9d3c2f b35491e66c87 66e94d5cafd4 Merge tag 'kvmarm-fixes-5.13-2' of git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm into HEAD
b35491e66c87 da6393cdd8aa KVM: X86: Kill off ctxt->ud
da6393cdd8aa e87e46d5f318 KVM: X86: Fix warning caused by stale emulation context
e87e46d5f318 bedd9195df3d KVM: X86: Use kvm_get_linear_rip() in single-step and #DB/#BP interception
aac902925ea6 d07f6ca923ea Documentation: seccomp: Fix user notification documentation
8aa0ae439966 24990423267e MAINTAINERS: adjust to removing i2c designware platform data
1438709e6328 5362a4b6ee61 KVM: PPC: Book3S HV: Save host FSCR in the P7/8 path
5362a4b6ee61 82123a3d1d5a powerpc: Fix reverse map real-mode address lookup with huge vmalloc
8fc4e4aa2bfc c673b7f59e94 perf vendor events powerpc: Fix eventcode of power10 JSON events
82123a3d1d5a d72500f99284 powerpc/kprobes: Fix validation of prefixed instructions across page boundary
56dde68f85be 9808f9be31c6 Revert "serial: 8250: 8250_omap: Fix possible interrupt storm"
24990423267e fed1bd51a504 i2c: s3c2410: fix possible NULL pointer deref on read message after write
fed1bd51a504 e4d8716c3dce i2c: mediatek: Disable i2c start_en and clear intr_stat brfore reset
aeeb51736882 b26389e854f7 e11851429fdc Merge tag 'drm-intel-fixes-2021-05-27' of ssh://git.freedesktop.org/git/drm/drm-intel into drm-fixes
b26389e854f7 ac6e9e3d19e4 35f819d21803 Merge tag 'drm-misc-fixes-2021-05-27' of ssh://git.freedesktop.org/git/drm/drm-misc into drm-fixes
c673b7f59e94 c59870e2110e perf stat: Fix error check for bpf_program__attach
ac6e9e3d19e4 c4681547bcce 20ebbfd22f81 Merge tag 'amd-drm-fixes-5.13-2021-05-26' of https://gitlab.freedesktop.org/agd5f/linux into drm-fixes
44991d61aa12 fb91702b743d 56e4ee82e850 Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf
97e5bf604b7a 3c856a3180da c547addba709 Merge branch 'for-5.13-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu
3c856a3180da 38747c9a2d22 e69012400b0c Merge tag 'arm64-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux
38747c9a2d22 3224374f7eb0 7e768532b239 Merge tag 'for-5.13/dm-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm
fb91702b743d 0cc254e5aa37 net/sched: act_ct: Fix ct template allocation for zone 0
0cc254e5aa37 b28d8f0c25a9 net/sched: act_ct: Offload connections with commit action
b28d8f0c25a9 d7c5303fbc8a devlink: Correct VIRTUAL port to not have phys_port attributes
76a6d5cd7447 ea7036de0d36 btrfs: fix deadlock when cloning inline extents and low on available space
ea7036de0d36 dc09ef356272 btrfs: fix fsync failure and transaction abort after writes to prealloc extents
dc09ef356272 f96d44743a44 btrfs: abort in rename_exchange if we fail to insert the second ref
f96d44743a44 011b28acf940 btrfs: check error value from btrfs_update_inode in tree log
011b28acf940 d61bec08b904 btrfs: fixup error handling in fixup_inode_link_counts
d61bec08b904 856bd270dc4d btrfs: mark ordered extent and inode with error if we fail to finish
856bd270dc4d b86652be7c83 btrfs: return errors from btrfs_del_csums in cleanup_ref_head
b86652be7c83 4c80a97d7b02 btrfs: fix error handling in btrfs_del_csums
4c80a97d7b02 764c7c9a464b btrfs: fix compressed writes that cross stripe boundary
1bb56810677f eb0688180549 cifs: change format of CIFS_FULL_KEY_DUMP ioctl
e4d8716c3dce 8f0cdec8b5fd i2c: i801: Don't generate an interrupt on bus reset
8f0cdec8b5fd 19ae697a1e4e i2c: mpc: implement erratum A-004447 workaround
19ae697a1e4e 7adc7b225cdd powerpc/fsl: set fsl,i2c-erratum-a004447 flag for P1010 i2c controllers
7adc7b225cdd a5063ab97602 powerpc/fsl: set fsl,i2c-erratum-a004447 flag for P2041 i2c controllers
a5063ab97602 a00cb25169d5 dt-bindings: i2c: mpc: Add fsl,i2c-erratum-a004447 flag
a00cb25169d5 721a6fe5f958 i2c: busses: i2c-stm32f4: Remove incorrectly placed ' ' from function name
721a6fe5f958 3e0f8672f168 i2c: busses: i2c-st: Fix copy/paste function misnaming issues
3e0f8672f168 d4c73d41bef0 i2c: busses: i2c-pnx: Provide descriptions for 'alg_data' data structure
d4c73d41bef0 f9f193fc222b i2c: busses: i2c-ocores: Place the expected function names into the documentation headers
f9f193fc222b b4c760de3ced i2c: busses: i2c-eg20t: Fix 'bad line' issue and provide description for 'msgs' param
b4c760de3ced 6eb8a4736931 i2c: busses: i2c-designware-master: Fix misnaming of 'i2c_dw_init_master()'
6eb8a4736931 f09aa114c4af i2c: busses: i2c-cadence: Fix incorrectly documented 'enum cdns_i2c_slave_mode'
f09aa114c4af 45ce82f5eaed i2c: busses: i2c-ali1563: File headers are not good candidates for kernel-doc
45ce82f5eaed 72ab7b6bb1a6 i2c: muxes: i2c-arb-gpio-challenge: Demote non-conformant kernel-doc headers
72ab7b6bb1a6 c4740e293c93 i2c: busses: i2c-nomadik: Fix formatting issue pertaining to 'timeout'
eb0688180549 6d2fcfe6b517 cifs: fix string declarations and assignments in tracepoints
6d2fcfe6b517 c4681547bcce cifs: set server->cipher_type to AES-128-CCM for SMB3.0
3224374f7eb0 96c132f837ff 9b7ff25d129d Merge tag 'acpi-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
ff2e6efda0d5 d7c5303fbc8a kbuild: Quote OBJCOPY var to avoid a pahole call break the build
b79b6081c440 1d15a10395e5 drm/tegra: sor: Fix AUX device reference leak
1d15a10395e5 dc9a91d279b7 drm/tegra: Get ref for DP AUX channel, not its ddc adapter
96c132f837ff f610a5a29c3c 0ee74d5a4863 Merge tag 'iommu-fixes-v5.13-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu
c59870e2110e 75ea44e356b5 perf debug: Move debug initialization earlier
f610a5a29c3c d7c5303fbc8a afs: Fix the nlink handling of dir-over-dir rename
6a137caec23a 62f3415db237 Bluetooth: fix the erroneous flush_work() order
6308c44ed6ee 41daf6ba594d ASoC: rt5659: Fix the lost powers for the HDA header
0fe0bbe00a6f 991c2c5980fb xfs: bunmapi has unnecessary AG lock ordering issues
991c2c5980fb 9f5815315e0b xfs: btree format inode forks can have zero extents
0ee74d5a4863 54c80d907400 iommu/vt-d: Fix sysfs leak in alloc_iommu()
b16ef427adf3 3743c1723bfc io_uring: fix data race to avoid potential NULL-deref
a94f66aecdaa 4b4f6cecca44 HID: asus: Cleanup Asus T101HA keyboard-dock handling
4b4f6cecca44 22db5e0003e1 HID: magicmouse: fix NULL-deref on disconnect
22db5e0003e1 dc5f9f55502e HID: intel-ish-hid: ipc: Add Alder Lake device IDs
dc5f9f55502e 5ad755fd2b32 HID: i2c-hid: fix format string mismatch
5ad755fd2b32 e3d6a599969b HID: amd_sfh: Fix memory leak in amd_sfh_work
e3d6a599969b 82f09a637dd3 HID: amd_sfh: Use devm_kzalloc() instead of kzalloc()
82f09a637dd3 4fb125192563 HID: ft260: improve error handling of ft260_hid_feature_report_get()
4fb125192563 a4b494099ad6 HID: magicmouse: fix crash when disconnecting Magic Trackpad 2
a4b494099ad6 3dd653c077ef HID: gt683r: add missing MODULE_DEVICE_TABLE
3dd653c077ef 81c8bf917047 HID: pidff: fix error return code in hid_pidff_init()
81c8bf917047 31a4cf1d223d HID: logitech-hidpp: initialize level variable
31a4cf1d223d e62b91cd8a8d HID: multitouch: Disable event reporting on suspend on the Asus T101HA touchpad
e62b91cd8a8d 3202f482417c HID: core: Remove extraneous empty line before EXPORT_SYMBOL_GPL(hid_check_keys_pressed)
a4b58f1721eb 094c271addc3 aaeadd7075dc Merge tag 'nvme-5.13-2021-05-27' of git://git.infradead.org/nvme into block-5.13
9808f9be31c6 016002848c82 serial: 8250_pci: handle FL_NOIRQ board flag
a799b68a7c7a ae605ee98308 nfs: Remove trailing semicolon in macros
bbf0a94744ed 022b93cf2d6a mei: request autosuspend after sending rx flow control
022b93cf2d6a bda7d3ab06f1 1fd86e280d8b Merge tag 'icc-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc into char-misc-linus
bedd9195df3d a2486020a82e KVM: x86/mmu: Fix comment mentioning skip_4k
ae605ee98308 e67afa7ee4a5 xprtrdma: Revert 586a0787ce35
e67afa7ee4a5 70536bf4eb07 NFSv4: Fix v4.0/v4.1 SEEK_DATA return -ENOTSUPP when set NFS_V4_2 config
a2486020a82e 084071d5e922 KVM: VMX: update vcpu posted-interrupt descriptor when assigning device
084071d5e922 57ab87947abf KVM: rename KVM_REQ_PENDING_TIMER to KVM_REQ_UNBLOCK
57ab87947abf 9805cf03fdb6 KVM: x86: add start_assignment hook to kvm_x86_ops
9805cf03fdb6 fb0f94794bb7 KVM: LAPIC: Narrow the timer latency between wait_lapic_expire and world switch
fb0f94794bb7 fb1070d18edb selftests: kvm: do only 1 memslot_perf_test run by default
fb1070d18edb 33090a884da5 KVM: X86: Use _BITUL() macro in UAPI headers
33090a884da5 a4b9722a5996 KVM: selftests: add shared hugetlbfs backing source type
a4b9722a5996 94f3f2b31a8a KVM: selftests: allow using UFFD minor faults for demand paging
94f3f2b31a8a c9befd5958fd KVM: selftests: create alias mappings when using shared memory
c9befd5958fd b3784bc28ccc KVM: selftests: add shmem backing source type
b3784bc28ccc 0368c2c1b422 KVM: selftests: refactor vm_mem_backing_src_type flags
0368c2c1b422 32ffa4f71e10 KVM: selftests: allow different backing source types
32ffa4f71e10 25408e5a0246 KVM: selftests: compute correct demand paging size
25408e5a0246 2aab4b355cbb KVM: selftests: simplify setup_demand_paging error handling
2aab4b355cbb c887d6a126df KVM: selftests: Print a message if /dev/kvm is missing
c887d6a126df a10453c038a7 KVM: selftests: trivial comment/logging fixes
a10453c038a7 50bc913d526b KVM: selftests: Fix hang in hardware_disable_test
50bc913d526b ef4c9f4f6546 KVM: selftests: Ignore CPUID.0DH.1H in get_cpuid_test
ef4c9f4f6546 cad347fab142 KVM: selftests: Fix 32-bit truncation of vm_get_max_gfn()
cad347fab142 22721a561099 KVM: selftests: add a memslot-related performance benchmark
22721a561099 a13534d6676d KVM: selftests: Keep track of memslots more efficiently
a13534d6676d 39fe2fc96694 selftests: kvm: fix potential issue with ELF loading
39fe2fc96694 da6d63a0062a selftests: kvm: make allocation of extra memory take effect
da6d63a0062a 1eff0ada88b4 KVM: X86: hyper-v: Task srcu lock when accessing kvm_memslots()
1eff0ada88b4 72b268a8e930 KVM: X86: Fix vCPU preempted state from guest's point of view
72b268a8e930 6bd5b7436862 KVM: X86: Bail out of direct yield in case of under-committed scenarios
6bd5b7436862 28a4aa1160d7 KVM: PPC: exit halt polling on need_resched()
56e4ee82e850 179d9ba5559a ipvs: ignore IP_VS_SVC_F_HASHED flag when adding service
5d8db38ad766 8d84733dee9f thermal/drivers/qcom: Fix error code in adc_tm5_get_dt_channel_data()
66e94d5cafd4 e3e880bb1518 KVM: arm64: Prevent mixed-width VM creation
e3e880bb1518 cb853ded1d25 KVM: arm64: Resolve all pending PC updates before immediate exit
c0e0436cb4f6 2f26dc05af87 platform/x86: thinkpad_acpi: Add X1 Carbon Gen 9 second fan support
dbec64b11c65 bdbe871ef0ca gpio: wcd934x: Fix shift-out-of-bounds error
50dbfae972cb e650c1a959da ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook Fury 17 G8
e650c1a959da bbe183e07817 ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook Fury 15 G8
bbe183e07817 0e68c4b11f1e ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook G8
0e68c4b11f1e 29c8f40b54a4 ALSA: hda/realtek: fix mute/micmute LEDs for HP 855 G8
d7c5303fbc8a 7ac3a1c1ae51 62f3415db237 Merge tag 'net-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
a9aecef198fa d6eef886903c usb: cdnsp: Fix deadlock issue in cdnsp_thread_irq_handler
ffa99c436aa7 6efb943b8616 2af7a834a435 Merge tag 'vfio-ccw-20210520' of https://git.kernel.org/pub/scm/linux/kernel/git/kvms390/vfio-ccw into fixes
62f3415db237 f5d287126f63 net: phy: Document phydev::dev_flags bits allocation
7ac3a1c1ae51 bfb819ea20ce 562b4e91d3b2 Merge tag 'mtd/fixes-for-5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux
9f5815315e0b 603f000b15f2 xfs: add new IRC channel to MAINTAINERS
3743c1723bfc 17a91051fe63 io-wq: Fix UAF when wakeup wqe in hash waitqueue
094c271addc3 c0c8a8397fa8 cc1462679149 Merge branch 'md-fixes' of https://git.kernel.org/pub/scm/linux/kernel/git/song/md into block-5.13
aaeadd7075dc 25df1acd2d36 nvmet: fix false keep-alive timeout when a controller is torn down
25df1acd2d36 042a3eaad6da nvmet-tcp: fix inline data size comparison in nvmet_tcp_queue_response
042a3eaad6da 4d9442bf263a nvme-tcp: remove incorrect Kconfig dep in BLK_DEV_NVME
75ea44e356b5 a050a6d2b7e8 perf jevents: Fix getting maximum number of fds
35f819d21803 7cfc4ea78fc1 drm/ttm: Skip swapout if ttm object is not populated
bae989c4bc53 c8692ad416dc ARM: OMAP1: ams-delta: remove unused function ams_delta_camera_power
3202f482417c ca66a6770bd9 HID: hid-sensor-custom: Process failure of sensor_hub_set_feature()
70536bf4eb07 0d0ea309357d NFS: Clean up reset of the mirror accounting variables
0d0ea309357d 56517ab958b7 NFS: Don't corrupt the value of pg_bytes_written in nfs_do_recoalesce()
56517ab958b7 e86be3a04bc4 NFS: Fix an Oopsable condition in __nfs_pageio_add_request()
e86be3a04bc4 d275880abce9 SUNRPC: More fixes for backlog congestion
17a91051fe63 ba5ef6dc8a82 io_uring/io-wq: close io-wq full-stop gap
cc1462679149 bc6a38513260 md/raid5: remove an incorrect assert in in_chunk_boundary
85aabbd7b315 2ee4c8a26876 PCI/MSI: Fix MSIs for generic hosts that use device-tree's "msi-map"
f5d287126f63 6dfa87b492c0 1bad6fd52be4 Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf
6dfa87b492c0 bab09fe2f652 d58300c3185b Merge branch 'mptcp-fixes'
d58300c3185b 3ed0a585bfad mptcp: validate 'id' when stopping the ADD_ADDR retransmit timer
3ed0a585bfad 3812ce895047 mptcp: avoid error message on infinite mapping
3812ce895047 20b5759f21cf mptcp: drop unconditional pr_warn on bad opt
20b5759f21cf bab09fe2f652 mptcp: avoid OOB access in setsockopt()
bab09fe2f652 17f9c1b63cdd nfp: update maintainer and mailing list addresses
17f9c1b63cdd 65161c35554f net: mvpp2: add buffer header handling in RX
65161c35554f 9453d45ecb6c bnx2x: Fix missing error code in bnx2x_iov_init_one()
9453d45ecb6c c1cf1afd8b0f net: zero-initialize tc skb extension on allocation
c1cf1afd8b0f b2540cdce6e2 net: hns: Fix kernel-doc
b2540cdce6e2 297739bd73f6 sctp: fix the proc_handler for sysctl encap_port
297739bd73f6 8c42a49738f1 sctp: add the missing setting for asoc encap_port
bfb819ea20ce ad9f25d33860 proc: Check /proc/$pid/attr/ writes against file opener
7e768532b239 f16dba5dc6f0 dm snapshot: properly fix a crash when an origin has no snapshots
f16dba5dc6f0 0c1f3193b1cd dm snapshot: revert "fix a crash when an origin has no snapshots"
0c1f3193b1cd c4681547bcce dm verity: fix require_signatures module_param permissions
1bad6fd52be4 a7036191277f bpf, selftests: Adjust few selftest result_unpriv outcomes
a7036191277f bb01a1bba579 bpf: No need to simulate speculative domain for immediates
bb01a1bba579 3d0220f6861d bpf: Fix mask direction swap upon off reg sign change
3d0220f6861d 5c9d706f6133 bpf: Wrap aux data inside bpf_sanitize_info container
c4740e293c93 52b806e8d6b3 i2c: sh_mobile: Use new clock calculation formulas for RZ/G2E
52b806e8d6b3 9dd45bbad947 i2c: I2C_HISI should depend on ACPI
9dd45bbad947 d4b250562fb8 i2c: icy: Remove unused variable new_fwnode in icy_probe()
d4b250562fb8 c4681547bcce i2c: qcom-geni: fix spelling mistake "unepxected" -> "unexpected"
5c9d706f6133 6fd5fb63820a bpf: Fix BPF_LSM kconfig symbol dependency
c0c8a8397fa8 bc6a38513260 s390/dasd: add missing discipline function
ad9f25d33860 b2db6c35ba98 b71c791254ff Merge tag 'netfs-lib-fixes-20200525' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs
b2db6c35ba98 a050a6d2b7e8 afs: Fix fall-through warnings for Clang
6fd5fb63820a a8deba8547e3 selftests/bpf: Add test for l3 use of bpf_redirect_peer
29c8f40b54a4 dad19afce9ad ALSA: hda/realtek: Chain in pop reduction fixup for ThinkStation P340
a8deba8547e3 84316ca4e100 bpftool: Add sock_release help info for cgroup attach/prog load command
78cf0eb926cb fef532ea0cd8 MIPS: Fix kernel hang under FUNCTION_GRAPH_TRACER and PREEMPT_TRACER
fef532ea0cd8 6855adc2c5d9 MIPS: ralink: export rt_sysc_membase for rt2880_wdt.c
6855adc2c5d9 ff4cff962a7e MIPS: launch.h: add include guard to prevent build errors
ff4cff962a7e 6efb943b8616 MIPS: alchemy: xxs1500: add gpio-au1000.h header file
e69012400b0c 76d0fc5e9bc6 arm64: mm: don't use CON and BLK mapping if KFENCE is enabled
2f26dc05af87 5fafeeb4da1a platform/surface: aggregator_registry: Add support for 13" Intel Surface Laptop 4
5fafeeb4da1a e68671e9e127 platform/surface: aggregator_registry: Update comments for 15" AMD Surface Laptop 4
b71c791254ff 19dee613816d netfs: Make CONFIG_NETFS_SUPPORT auto-selected rather than manual
19dee613816d 6efb943b8616 netfs: Pass flags through to grab_cache_page_write_begin()
a8b98c808eab b577750e4157 fanotify: fix permission model of unprivileged group
e11851429fdc c4681547bcce drm/i915: Reenable LTTPR non-transparent LT mode for DPCD_REV<1.4
a7f2e9272aff a80c203c3f1c xhci: Fix 5.12 regression of missing xHC cache clearing command after a Stall
a80c203c3f1c e6809703e164 xhci: fix giving back URB with incorrect status regression in 5.12
7cfc4ea78fc1 7e008b02557c drm/meson: fix shutdown crash when component not probed
4d9442bf263a f25f8ef70ce2 nvme-fabrics: decode host pathing error for connect
f25f8ef70ce2 3596a06583a1 nvme-fc: short-circuit reconnect retries
3596a06583a1 bc6a38513260 nvme: fix potential memory leaks in nvme_cdev_add
56df0c758aff fc0b3dc9a117 USB: serial: omninet: update driver description
dad19afce9ad 2b899f31f1a6 af2702549d68 Merge tag 'asoc-fix-v5.13-rc3' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
fc0b3dc9a117 eb8dbe80326c USB: serial: omninet: add device id for Zyxel Omni 56K Plus
c8692ad416dc 4d7b324e2313 bus: ti-sysc: Fix flakey idling of uarts and stop using swsup_sidle_act
eb8dbe80326c f8e8c1b2f782 USB: serial: quatech2: fix control-request directions
a050a6d2b7e8 1434a3127887 f8b61bd20479 Merge tag 'perf-tools-fixes-for-v5.13-2021-05-24' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux
603f000b15f2 6b69e485894b xfs: validate extsz hints against rt extent size when rtinherit is set
6b69e485894b 0f9342513cc7 xfs: standardize extent size hint validation
0f9342513cc7 e3c2b047475b xfs: check free AG space when making per-AG reservations
d6eef886903c 9e3927f6373d usb: cdns3: Enable TDL_CHK only for OUT ep
24845dcb170e 1cb61759d407 Makefile: LTO: have linker check -Wframe-larger-than
1cb61759d407 d07f6ca923ea init: verify that function is initcall_t at compile-time
8c42a49738f1 46a8b29c6306 net: dsa: microchip: enable phy errata workaround on 9567
46a8b29c6306 48b491a5cc74 net: usb: fix memory leak in smsc75xx_bind
48b491a5cc74 a4dd4fc6105e net: hsr: fix mac_len checks
a4dd4fc6105e 93c5d741d14b net: appletalk: cops: Fix data race in cops_probe1
8d84733dee9f eb8500b874cf thermal/ti-soc-thermal: Fix kernel-doc
93c5d741d14b 1a6e9a9c68c1 b38e659de966 Merge branch 'sja1105-fixes'
b38e659de966 ed040abca4c1 net: dsa: sja1105: update existing VLANs from the bridge VLAN list
ed040abca4c1 6729188d2646 net: dsa: sja1105: use 4095 as the private VLAN for untagged traffic
6729188d2646 cec279a898a3 net: dsa: sja1105: error out on unsupported PHY mode
cec279a898a3 dc596e3fe63f net: dsa: sja1105: add error handling in sja1105_setup()
dc596e3fe63f ba61cf167cb7 net: dsa: sja1105: call dsa_unregister_switch when allocating memory fails
ba61cf167cb7 1a6e9a9c68c1 net: dsa: sja1105: fix VL lookup command packing for P/Q/R/S
1a6e9a9c68c1 1a44fb38cc65 net: hso: fix control-request directions
1a44fb38cc65 9b76eade1642 r8152: check the informaton of the device
9b76eade1642 4dd649d130c6 sch_dsmark: fix a NULL deref in qdisc_reset()
dc51ff91cf2d 752774ce7793 vfio/platform: fix module_put call in error flow
752774ce7793 78b238147e4d samples: vfio-mdev: fix error handing in mdpy_fb_probe()
78b238147e4d 2a55ca373501 vfio/iommu_type1: Use struct_size() for kzalloc()
2a55ca373501 d1ce2c79156d vfio/pci: zap_vma_ptes() needs MMU
d1ce2c79156d d07f6ca923ea vfio/pci: Fix error return code in vfio_ecap_init()
1434a3127887 5df7ae7bed41 08b2b6fdf6b2 Merge branch 'for-5.13-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup
5df7ae7bed41 f71d49e01be6 940d71c6462e Merge branch 'for-5.13-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq
f71d49e01be6 c4681547bcce b4e46c9954ad Merge tag 'spi-fix-v5.13-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi
28a4aa1160d7 377872b3355b KVM: SVM: make the avic parameter a bool
377872b3355b 778a136e48be KVM: VMX: Drop unneeded CONFIG_X86_LOCAL_APIC check
778a136e48be a4345a7cecfb KVM: SVM: Drop unneeded CONFIG_X86_LOCAL_APIC check
08b2b6fdf6b2 45e1ba40837a cgroup: fix spelling mistakes
179d9ba5559a 983c4fcb81d6 netfilter: nf_tables: fix table flag updates
9b7ff25d129d c4681547bcce ACPI: power: Refine turning off unused power resources
e6809703e164 e752dbc59e12 22c7a18ed5f0 Merge tag 'thunderbolt-for-v5.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt into usb-linus
e752dbc59e12 a20dcf53ea98 usb: gadget: udc: renesas_usb3: Fix a race in usb3_start_pipen()
a20dcf53ea98 0bc3ee92880d usb: typec: tcpm: Respond Not_Supported if no snk_vdo
0bc3ee92880d 2cbd838e0e48 usb: typec: tcpm: Properly interrupt VDM AMS
a072cbda97a9 8d6ee30c11a9 62499a94ce5b Merge series "Fix MAX77620 regulator driver regression" from Dmitry Osipenko <digetx@gmail.com>:
13817d466eb8 b4e46c9954ad spi: bcm2835: Fix out-of-bounds access with more than 4 slaves
8d6ee30c11a9 4c668630bf8e regulator: hisilicon: use the correct HiSilicon copyright
4c668630bf8e 0514582a1a5b regulator: bd71828: Fix .n_voltages settings
0514582a1a5b 36cb555fae08 regulator: bd70528: Fix off-by-one for buck123 .n_voltages setting
62499a94ce5b 6f55c5dd1118 regulator: max77620: Silence deferred probe error
6f55c5dd1118 36cb555fae08 regulator: max77620: Use device_set_of_node_from_dev()
41daf6ba594d af2702549d68 ASoC: core: Fix Null-point-dereference in fmt_single_name()
4dd649d130c6 474a2ddaa192 NFC: nfcmrvl: fix kernel-doc syntax in file headers
474a2ddaa192 835744e8b537 net: dsa: mt7530: fix VLAN traffic leaks
835744e8b537 5eff1461a6de e70f7a11876a Merge branch 'fq_pie-fixes'
e70f7a11876a 3a62fed2fd7b net/sched: fq_pie: fix OOB access in the traffic path
3a62fed2fd7b 5eff1461a6de net/sched: fq_pie: re-factor fix for fq_pie endless loop
5eff1461a6de ad79fd2c42f7 net: macb: ensure the device is available before accessing GEMGXL control registers
ad79fd2c42f7 1e69abf98921 net: ethernet: mtk_eth_soc: Fix packet statistics support for MT7628/88
1e69abf98921 e29f011e8fc0 MAINTAINERS: Add entries for CBS, ETF and taprio qdiscs
c4681547bcce 6ebb6814a1ef Linux 5.13-rc3
6ebb6814a1ef 0898678c742e 488e13a489e9 Merge tag 'perf-urgent-2021-05-23' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
0898678c742e f73d2a429334 3a010c493271 Merge tag 'locking-urgent-2021-05-23' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
f73d2a429334 7de7ac8d6069 b4764905ea5b Merge tag 'irq-urgent-2021-05-23' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
7de7ac8d6069 28ceac6959e1 4954f5b8ef0b Merge tag 'x86_urgent_for_v5.13_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip