forked from yarpiin/White-Wolf-SGS9-LOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.txt
3019 lines (3003 loc) · 260 KB
/
changelog.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
Project name: White-Wolf-SGS9-LOS
01/06/2019
* version 6
* Revert "x86/build: Move _etext to actual end of .text" (Greg Kroah-Hartman) [7707ae7a5]
* Linux 4.9.180 (Greg Kroah-Hartman) [c19fdca4d]
* drm: Wake up next in drm_read() chain if we are forced to putback the event (Chris Wilson) [bb1dcfead]
* ASoC: davinci-mcasp: Fix clang warning without CONFIG_PM (Arnd Bergmann) [9a620f112]
* spi: Fix zero length xfer bug (Chris Lesiak) [5aac4aecc]
* spi: rspi: Fix sequencer reset during initialization (Geert Uytterhoeven) [abce5c821]
* spi : spi-topcliff-pch: Fix to handle empty DMA buffers (Aditya Pakki) [dbd0bf26c]
* scsi: lpfc: Fix SLI3 commands being issued on SLI4 devices (James Smart) [5bef643b3]
* media: saa7146: avoid high stack usage with clang (Arnd Bergmann) [a56cf9033]
* scsi: lpfc: Fix FDMI manufacturer attribute value (James Smart) [249c76748]
* media: go7007: avoid clang frame overflow warning with KASAN (Arnd Bergmann) [51aa994f2]
* media: m88ds3103: serialize reset messages in m88ds3103_set_frontend (James Hutchinson) [3d182b587]
* dmaengine: tegra210-adma: use devm_clk_*() helpers (Sameer Pujar) [081fe504b]
* scsi: qla4xxx: avoid freeing unallocated dma memory (Arnd Bergmann) [8374579b8]
* usb: core: Add PM runtime calls to usb_hcd_platform_shutdown (Tony Lindgren) [cc2e1e9bc]
* rcuperf: Fix cleanup path for invalid perf_type strings (Paul E. McKenney) [a0d5e78a7]
* rcutorture: Fix cleanup path for invalid torture_type strings (Paul E. McKenney) [21b57eb37]
* x86/mce: Fix machine_check_poll() tests for error types (Tony Luck) [f7ccd20ac]
* tty: ipwireless: fix missing checks for ioremap (Kangjie Lu) [ff831e85b]
* virtio_console: initialize vtermno value for ports (Pankaj Gupta) [be03cfdb6]
* media: wl128x: prevent two potential buffer overflows (Dan Carpenter) [edcf7eb88]
* spi: tegra114: reset controller on probe (Sowjanya Komatineni) [7ea6a803e]
* cxgb3/l2t: Fix undefined behaviour (Gustavo A. R. Silva) [e7526dacd]
* ASoC: fsl_utils: fix a leaked reference by adding missing of_node_put (Wen Yang) [483f2b91c]
* ASoC: eukrea-tlv320: fix a leaked reference by adding missing of_node_put (Wen Yang) [03c55759f]
* HID: core: move Usage Page concatenation to Main item (Nicolas Saenz Julienne) [59a68dd5a]
* chardev: add additional check for minor range overlap (Chengguang Xu) [62125d699]
* x86/ia32: Fix ia32_restore_sigcontext() AC leak (Peter Zijlstra) [e8e903d56]
* x86/uaccess, signal: Fix AC=1 bloat (Peter Zijlstra) [9ae73b7ca]
* arm64: cpu_ops: fix a leaked reference by adding missing of_node_put (Wen Yang) [80505e634]
* scsi: ufs: Avoid configuring regulator with undefined voltage range (Stanley Chu) [1d550696d]
* scsi: ufs: Fix regulator load and icc-level configuration (Stanley Chu) [735344cde]
* brcmfmac: fix Oops when bringing up interface during USB disconnect (Piotr Figiel) [429c26e00]
* brcmfmac: fix race during disconnect when USB completion is in progress (Piotr Figiel) [89fa989fd]
* brcmfmac: convert dev_init_lock mutex to completion (Piotr Figiel) [d7f01a871]
* b43: shut up clang -Wuninitialized variable warning (Arnd Bergmann) [ebd53c8b8]
* brcmfmac: fix missing checks for kmemdup (Kangjie Lu) [c08b87a59]
* mwifiex: Fix mem leak in mwifiex_tm_cmd (YueHaibing) [967903b2b]
* rtlwifi: fix a potential NULL pointer dereference (Kangjie Lu) [b02a849f1]
* iio: common: ssp_sensors: Initialize calculated_time in ssp_common_process_data (Nathan Chancellor) [9c3598df1]
* iio: hmc5843: fix potential NULL pointer dereferences (Kangjie Lu) [051aa5494]
* iio: ad_sigma_delta: Properly handle SPI bus locking vs CS assertion (Lars-Peter Clausen) [b2b5b8158]
* x86/build: Keep local relocations with ld.lld (Kees Cook) [572ad77ec]
* cpufreq: pmac32: fix possible object reference leak (Wen Yang) [12ca0133f]
* cpufreq/pasemi: fix possible object reference leak (Wen Yang) [a645d4093]
* cpufreq: ppc_cbe: fix possible object reference leak (Wen Yang) [e0deb732d]
* s390: cio: fix cio_irb declaration (Arnd Bergmann) [c8a6782f1]
* extcon: arizona: Disable mic detect if running when driver is removed (Charles Keepax) [e850a6c8d]
* PM / core: Propagate dev->power.wakeup_path when no callbacks (Ulf Hansson) [37661f849]
* mmc: sdhci-of-esdhc: add erratum eSDHC-A001 and A-008358 support (Yinbo Zhu) [c2a85bb84]
* mmc: sdhci-of-esdhc: add erratum eSDHC5 support (Yinbo Zhu) [981fd8270]
* mmc_spi: add a status check for spi_sync_locked (Kangjie Lu) [536d91879]
* mmc: core: make pwrseq_emmc (partially) support sleepy GPIO controllers (Andrea Merello) [cf445ccbb]
* scsi: libsas: Do discovery on empty PHY to update PHY info (John Garry) [579a0e8b7]
* hwmon: (f71805f) Use request_muxed_region for Super-IO accesses (Guenter Roeck) [13b93f5fc]
* hwmon: (pc87427) Use request_muxed_region for Super-IO accesses (Guenter Roeck) [e623789c0]
* hwmon: (smsc47b397) Use request_muxed_region for Super-IO accesses (Guenter Roeck) [5421fae9d]
* hwmon: (smsc47m1) Use request_muxed_region for Super-IO accesses (Guenter Roeck) [1f61edd08]
* hwmon: (vt1211) Use request_muxed_region for Super-IO accesses (Guenter Roeck) [83a054932]
* i40e: don't allow changes to HW VLAN stripping on active port VLANs (Nicholas Nunley) [52020aa4a]
* x86/irq/64: Limit IST stack overflow check to #DB stack (Thomas Gleixner) [e6fc80d56]
* USB: core: Don't unbind interfaces following device reset failure (Alan Stern) [a104d535a]
* sched/core: Handle overflow in cpu_shares_write_u64 (Konstantin Khlebnikov) [e744158cf]
* sched/core: Check quota and period overflow at usec to nsec conversion (Konstantin Khlebnikov) [3e2daac07]
* powerpc/numa: improve control of topology updates (Nathan Lynch) [badb832e1]
* media: pvrusb2: Prevent a buffer overflow (Dan Carpenter) [616593bdb]
* media: au0828: Fix NULL pointer dereference in au0828_analog_stream_enable() (Shuah Khan) [5ec7b1f27]
* audit: fix a memory leak bug (Wenwen Wang) [a014ba750]
* media: ov2659: make S_FMT succeed even if requested format doesn't match (Akinobu Mita) [3fc0fee47]
* media: au0828: stop video streaming only when last user stops (Hans Verkuil) [e43600945]
* media: ov6650: Move v4l2_clk_get() to ov6650_video_probe() helper (Janusz Krzysztofik) [91f93cb51]
* media: coda: clear error return value before picture run (Philipp Zabel) [c50e041fc]
* dmaengine: at_xdmac: remove BUG_ON macro in tasklet (Nicolas Ferre) [1899ff980]
* pinctrl: pistachio: fix leaked of_node references (Wen Yang) [29555bbab]
* HID: logitech-hidpp: use RAP instead of FAP to get the protocol version (Hans de Goede) [a5b974ce8]
* mm/uaccess: Use 'unsigned long' to placate UBSAN warnings on older GCC versions (Peter Zijlstra) [5ac5e07a7]
* x86/mm: Remove in_nmi() warning from 64-bit implementation of vmalloc_fault() (Jiri Kosina) [4d70cfa65]
* smpboot: Place the __percpu annotation correctly (Sebastian Andrzej Siewior) [0ff6da5af]
* x86/build: Move _etext to actual end of .text (Kees Cook) [a90043392]
* bcache: avoid clang -Wunintialized warning (Arnd Bergmann) [0699918e5]
* bcache: add failure check to run_cache_set() for journal replay (Coly Li) [e852dc9ba]
* bcache: fix failure in journal relplay (Tang Junhui) [79390a1a0]
* bcache: return error immediately in bch_journal_replay() (Coly Li) [48cc5966a]
* crypto: sun4i-ss - Fix invalid calculation of hash end (Corentin Labbe) [ccbe532fa]
* net: cw1200: fix a NULL pointer dereference (Kangjie Lu) [416388c1d]
* mwifiex: prevent an array overflow (Dan Carpenter) [11c12a78d]
* ASoC: fsl_sai: Update is_slave_mode with correct value (Daniel Baluta) [9b4b38f71]
* dmaengine: pl330: _stop: clear interrupt status (Sugar Zhang) [7e098834a]
* w1: fix the resume command API (Mariusz Bialonczyk) [162f77587]
* rtc: 88pm860x: prevent use-after-free on device remove (Sven Van Asbroeck) [bd40397f6]
* iwlwifi: pcie: don't crash on invalid RX interrupt (Johannes Berg) [786a3d018]
* scsi: qla2xxx: Fix a qla24xx_enable_msix() error path (Bart Van Assche) [8392e052b]
* sched/cpufreq: Fix kobject memleak (Viresh Kumar) [957992e7f]
* brcm80211: potential NULL dereference in brcmf_cfg80211_vndr_cmds_dcmd_handler() (Dan Carpenter) [91d3be8e5]
* spi: pxa2xx: fix SCR (divisor) calculation (Flavio Suligoi) [43e34993b]
* ASoC: imx: fix fiq dependencies (Arnd Bergmann) [ffe1d043d]
* powerpc/boot: Fix missing check of lseek() return value (Bo YU) [52a5ec515]
* ASoC: hdmi-codec: unlock the device on startup errors (Jerome Brunet) [6e988feb5]
* net: ena: gcc 8: fix compilation warning (Sameeh Jubran) [ea1ff14c4]
* dmaengine: tegra210-dma: free dma controller in remove() (Sameer Pujar) [c9ac41667]
* mmc: core: Verify SD bus width (Raul E Rangel) [814c86025]
* cxgb4: Fix error path in cxgb4_init_module (YueHaibing) [ffedcb704]
* gfs2: Fix lru_count going negative (Ross Lagerwall) [1df9e226e]
* Revert "btrfs: Honour FITRIM range constraints during free space trim" (David Sterba) [5b6ef718d]
* tools include: Adopt linux/bits.h (Arnaldo Carvalho de Melo) [c4311d7b6]
* perf tools: No need to include bitops.h in util.h (Arnaldo Carvalho de Melo) [9df7fe055]
* at76c50x-usb: Don't register led_trigger if usb_register_driver failed (YueHaibing) [4ecc89bbb]
* ssb: Fix possible NULL pointer dereference in ssb_host_pcmcia_exit (YueHaibing) [d8eb1cf02]
* media: vivid: use vfree() instead of kfree() for dev->bitmap_cap (Alexander Potapenko) [2f215cf70]
* media: cpia2: Fix use-after-free in cpia2_exit (YueHaibing) [ed3874941]
* fbdev: fix WARNING in __alloc_pages_nodemask bug (Jiufei Xue) [78a12d33c]
* hugetlb: use same fault hash key for shared and private mappings (Mike Kravetz) [7e030664b]
* fbdev: fix divide error in fb_var_to_videomode (Shile Zhang) [a47c12f8e]
* btrfs: sysfs: don't leak memory when failing add fsid (Tobin C. Harding) [7533221d2]
* Btrfs: fix race between ranged fsync and writeback of adjacent ranges (Filipe Manana) [b3da4bfa8]
* Btrfs: do not abort transaction at btrfs_update_root() after failure to COW path (Filipe Manana) [4e4d01140]
* gfs2: Fix sign extension bug in gfs2_update_stats (Andreas Gruenbacher) [86d604705]
* libnvdimm/namespace: Fix label tracking error (Dan Williams) [e5e7e7485]
* kvm: svm/avic: fix off-by-one in checking host APIC ID (Suthikulpanit, Suravee) [c260f9a9e]
* crypto: vmx - CTR: always increment IV as quadword (Daniel Axtens) [116909173]
* Revert "scsi: sd: Keep disk read-only when re-reading partition" (Martin K. Petersen) [9852a0767]
* bio: fix improper use of smp_mb__before_atomic() (Andrea Parri) [c46480629]
26/05/2019
* version 5
* Linux 4.9.179 (Greg Kroah-Hartman) [72f2e7aa0]
* fbdev: sm712fb: fix memory frequency by avoiding a switch/case fallthrough (Yifeng Li) [7a51785f6]
* btrfs: Honour FITRIM range constraints during free space trim (Nikolay Borisov) [2dbaaca99]
* md/raid: raid5 preserve the writeback action after the parity check (Nigel Croxon) [e60ca1db9]
* Revert "Don't jump to compute_result state from check_result state" (Song Liu) [4fcbbff28]
* perf bench numa: Add define for RUSAGE_THREAD if not present (Arnaldo Carvalho de Melo) [56bd456d1]
* ufs: fix braino in ufs_get_inode_gid() for solaris UFS flavour (Al Viro) [ef534c78d]
* power: supply: sysfs: prevent endless uevent loop with CONFIG_POWER_SUPPLY_DEBUG (Andrey Smirnov) [0669ca393]
* KVM: arm/arm64: Ensure vcpu target is unset on reset failure (Andrew Jones) [b83e49520]
* mac80211: Fix kernel panic due to use of txq after free (Bhagavathi Perumal S) [bbfef9678]
* xfrm4: Fix uninitialized memory read in _decode_session4 (Steffen Klassert) [470669985]
* vti4: ipip tunnel deregistration fixes. (Jeremy Sowden) [96994d52f]
* xfrm6_tunnel: Fix potential panic when unloading xfrm6_tunnel module (Su Yanjun) [7d3e7d687]
* xfrm: policy: Fix out-of-bound array accesses in __xfrm_policy_unlink (YueHaibing) [6baf0fd53]
* dm delay: fix a crash when invalid device is specified (Mikulas Patocka) [05f036be8]
* PCI: Work around Pericom PCIe-to-PCI bridge Retrain Link erratum (Stefan Mätje) [167596189]
* PCI: Factor out pcie_retrain_link() function (Stefan Mätje) [817efb3b4]
* PCI: Mark Atheros AR9462 to avoid bus reset (James Prestwood) [a845f47e3]
* fbdev: sm712fb: fix crashes and garbled display during DPMS modesetting (Yifeng Li) [9b8186962]
* fbdev: sm712fb: use 1024x768 by default on non-MIPS, fix garbled display (Yifeng Li) [0490e2b77]
* fbdev: sm712fb: fix support for 1024x768-16 mode (Yifeng Li) [e1fe81879]
* fbdev: sm712fb: fix crashes during framebuffer writes by correctly mapping VRAM (Yifeng Li) [9f41c9a72]
* fbdev: sm712fb: fix boot screen glitch when sm712fb replaces VGA (Yifeng Li) [ff740a225]
* fbdev: sm712fb: fix white screen of death on reboot, don't set CR3B-CR3F (Yifeng Li) [1f34c7427]
* fbdev: sm712fb: fix VRAM detection, don't set SR70/71/74/75 (Yifeng Li) [f83b83964]
* fbdev: sm712fb: fix brightness control on reboot, don't set SR30 (Yifeng Li) [47bc2d1a0]
* objtool: Allow AR to be overridden with HOSTAR (Nathan Chancellor) [ec324985d]
* perf intel-pt: Fix sample timestamp wrt non-taken branches (Adrian Hunter) [3dc7632bd]
* perf intel-pt: Fix improved sample timestamp (Adrian Hunter) [ac2851538]
* perf intel-pt: Fix instructions sampling rate (Adrian Hunter) [452d7fb5c]
* memory: tegra: Fix integer overflow on tick value calculation (Dmitry Osipenko) [eaf15fc0f]
* tracing: Fix partial reading of trace event's id file (Elazar Leibovich) [f7f198afd]
* ceph: flush dirty inodes before proceeding with remount (Jeff Layton) [de3b694ea]
* iommu/tegra-smmu: Fix invalid ASID bits on Tegra30/114 (Dmitry Osipenko) [43505bbdd]
* fuse: honor RLIMIT_FSIZE in fuse_file_fallocate (Liu Bo) [97c163cd0]
* fuse: fix writepages on 32bit (Miklos Szeredi) [750c9afba]
* clk: tegra: Fix PLLM programming on Tegra124+ when PMC overrides divider (Dmitry Osipenko) [6840595c7]
* NFS4: Fix v4.0 client state corruption when mount (ZhangXiaoxu) [f7c80fa67]
* media: ov6650: Fix sensor possibly not detected on probe (Janusz Krzysztofik) [794f0e9b0]
* cifs: fix strcat buffer overflow and reduce raciness in smb21_set_oplock_level() (Christoph Probst) [0812588ae]
* of: fix clang -Wunsequenced for be32_to_cpu() (Phong Tran) [09740c455]
* p54: drop device reference count if fails to enable device (Pan Bian) [94406ccf9]
* intel_th: msu: Fix single mode with IOMMU (Alexander Shishkin) [1700138f7]
* md: add mddev->pers to avoid potential NULL pointer dereference (Yufen Yu) [4df77c8e3]
* stm class: Fix channel free in stm output free path (Tingwei Zhang) [54beb5206]
* parisc: Rename LEVEL to PA_ASM_LEVEL to avoid name clash with DRBD code (Helge Deller) [6968ebe57]
* parisc: Skip registering LED when running in QEMU (Helge Deller) [bf575d536]
* parisc: Export running_on_qemu symbol for modules (Helge Deller) [387839175]
* vsock/virtio: Initialize core virtio vsock before registering the driver (Jorge E. Moreira) [c64643037]
* tipc: fix modprobe tipc failed after switch order of device registration (Junwei Hu) [59b76a6ce]
* vsock/virtio: free packets during the socket release (Stefano Garzarella) [e28143028]
* tipc: switch order of device registration to fix a crash (Junwei Hu) [0c86dc89d]
* ppp: deflate: Fix possible crash in deflate_init (YueHaibing) [688bf1ff2]
* net/mlx4_core: Change the error print to info print (Yunjian Wang) [43571bc78]
* net: avoid weird emergency message (Eric Dumazet) [d2d863fa1]
* Revert "crypto: chacha20poly1305 - set cra_name correctly" (Eric Biggers) [260ab8523]
* Revert "crypto: vmx - fix copy-paste error in CTR mode" (Daniel Axtens) [f2a508630]
* Revert "crypto: crct10dif-generic - fix use via crypto_shash_digest()" (Eric Biggers) [0f44cffcd]
* Revert "crypto: x86/crct10dif-pcl - fix use via crypto_shash_digest()" (Eric Biggers) [46ea47421]
* Revert "crypto: gcm - Fix error return code in crypto_gcm_create_common()" (Wei Yongjun) [e2c80ae89]
* Revert "crypto: gcm - fix incompatibility between "gcm" and "gcm_base"" (Eric Biggers) [ecad8b8d3]
* Revert "crypto: salsa20 - don't access already-freed walk.iv" (Eric Biggers) [1691b6306]
* Revert "crypto: arm/aes-neonbs - don't access already-freed walk.iv" (Eric Biggers) [4a303a36c]
* Linux 4.9.178 (Greg Kroah-Hartman) [d2691b64a]
* KVM: x86: Skip EFER vs. guest CPUID checks for host-initiated writes (Sean Christopherson) [2c0bfb398]
* ALSA: hda/realtek - Fix for Lenovo B50-70 inverted internal microphone bug (Michał Wadowski) [e07b9ada0]
* ext4: fix data corruption caused by overlapping unaligned and aligned IO (Lukas Czerner) [e83859e04]
* ext4: zero out the unused memory region in the extent tree block (Sriram Rajagopalan) [6907787a1]
* fs/writeback.c: use rcu_barrier() to wait for inflight wb switches going into workqueue when umount (Jiufei Xue) [91ee31da3]
* writeback: synchronize sync(2) against cgroup writeback membership switches (Tejun Heo) [a2381e75f]
* crypto: arm/aes-neonbs - don't access already-freed walk.iv (Eric Biggers) [f902990e3]
* crypto: salsa20 - don't access already-freed walk.iv (Eric Biggers) [8b330a36a]
* crypto: gcm - fix incompatibility between "gcm" and "gcm_base" (Eric Biggers) [d00435c7d]
* crypto: gcm - Fix error return code in crypto_gcm_create_common() (Wei Yongjun) [910efede2]
* ipmi:ssif: compare block number correctly for multi-part return messages (Kamlakant Patel) [6d13db8ef]
* bcache: never set KEY_PTRS of journal key to 0 in journal_reclaim() (Coly Li) [083fa88a9]
* bcache: fix a race between cache register and cacheset unregister (Liang Chen) [c8660d5d0]
* Btrfs: do not start a transaction at iterate_extent_inodes() (Filipe Manana) [545706327]
* ext4: fix ext4_show_options for file systems w/o journal (Debabrata Banerjee) [819b6dd8e]
* ext4: actually request zeroing of inode table after grow (Kirill Tkhai) [c6821f29f]
* jbd2: check superblock mapped prior to committing (Jiufei Xue) [181bc8f51]
* tty/vt: fix write/write race in ioctl(KDSKBSENT) handler (Sergei Trofimovich) [d8e7e5a11]
* mfd: max77620: Fix swapped FPS_PERIOD_MAX_US values (Dmitry Osipenko) [8ff4e0834]
* mfd: da9063: Fix OTP control register names to match datasheets for DA9063/63L (Steve Twiss) [ec249e726]
* ocfs2: fix ocfs2 read inode data panic in ocfs2_iget (Shuning Zhang) [d0723facc]
* mm/mincore.c: make mincore() more conservative (Jiri Kosina) [9238303c0]
* ASoC: RT5677-SPI: Disable 16Bit SPI Transfers (Curtis Malainey) [e6014abf2]
* ASoC: max98090: Fix restore of DAPM Muxes (Jon Hunter) [5f3f26bb0]
* ALSA: hda/realtek - EAPD turn on later (Kailang Yang) [4fe94a586]
* ALSA: hda/hdmi - Consider eld_valid when reporting jack event (Hui Wang) [130d65ec2]
* ALSA: hda/hdmi - Read the pin sense from register when repolling (Hui Wang) [028619bc6]
* ALSA: usb-audio: Fix a memory leak bug (Wenwen Wang) [b2ae7a118]
* crypto: x86/crct10dif-pcl - fix use via crypto_shash_digest() (Eric Biggers) [cd0f9df3b]
* crypto: crct10dif-generic - fix use via crypto_shash_digest() (Eric Biggers) [1432add74]
* crypto: vmx - fix copy-paste error in CTR mode (Daniel Axtens) [6791c7fe1]
* crypto: chacha20poly1305 - set cra_name correctly (Eric Biggers) [4484854d5]
* sched/x86: Save [ER]FLAGS on context switch (Peter Zijlstra) [6cf42c579]
* arm64: Clear OSDLR_EL1 on CPU boot (Jean-Philippe Brucker) [074b3906d]
* arm64: compat: Reduce address limit (Vincenzo Frascino) [2160d3023]
* power: supply: axp288_charger: Fix unchecked return value (Gustavo A. R. Silva) [4caae6936]
* ARM: exynos: Fix a leaked reference by adding missing of_node_put (Wen Yang) [d86f40082]
* objtool: Fix function fallthrough detection (Josh Poimboeuf) [fdaefb576]
* x86/speculation/mds: Improve CPU buffer clear documentation (Andy Lutomirski) [b4ec16973]
* x86/speculation/mds: Revert CPU buffer clear on double fault exit (Andy Lutomirski) [1f213600e]
* PCI: hv: Fix a memory leak in hv_eject_device_work() (Dexuan Cui) [8a819e054]
* locking/rwsem: Prevent decrement of reader count before increment (Waiman Long) [10c1151bb]
* net: core: another layer of lists, around PF_MEMALLOC skb handling (Sasha Levin) [4daa14f14
18/05/2019
* version 4
* Linux 4.9.177 (Greg Kroah-Hartman) [5f2100f2b44c]
* powerpc/booke64: set RI in default MSR (Laurentiu Tudor) [c787cf39bd6f]
* powerpc/lib: fix book3s/32 boot failure due to code patching (Christophe Leroy) [316c85001700]
* drivers/virt/fsl_hypervisor.c: prevent integer overflow in ioctl (Dan Carpenter) [e422aec41ff5]
* drivers/virt/fsl_hypervisor.c: dereferencing error pointers in ioctl (Dan Carpenter) [52855a3b09ce]
* bonding: fix arp_validate toggling in active-backup mode (Jarod Wilson) [d6cd63f62119]
* ipv4: Fix raw socket lookup for local traffic (David Ahern) [04d88408c169]
* vrf: sit mtu should not be updated when vrf netdev is the link (Stephen Suryaputra) [6aeffc874c36]
* vlan: disable SIOCSHWTSTAMP in container (Hangbin Liu) [1bd46b6bb294]
* packet: Fix error path in packet_init (YueHaibing) [52a57d25c167]
* net: ucc_geth - fix Oops when changing number of buffers in the ring (Christophe Leroy) [3816dce2161e]
* fib_rules: return 0 directly if an exactly same rule exists when NLM_F_EXCL not supplied (liuhangbin) [ec829d211f45]
* bridge: Fix error path for kobject_init_and_add() (Tobin C. Harding) [b773abd870e8]
* powerpc/64s: Include cpu header (Breno Leitao) [3d54a04275a3]
* x86/vdso: Pass --eh-frame-hdr to the linker (Alistair Strachan) [7d3fedcebde0]
* x86/vdso: Drop implicit common-page-size linker flag (Nick Desaulniers) [0afde3d817a7]
* x86: vdso: Use $LD instead of $CC to link (Alistair Strachan) [ab5752bce705]
* Revert "x86: vdso: Use $LD instead of $CC to link" (Sasha Levin) [5b8086cc98d3]
* Revert "x86/vdso: Drop implicit common-page-size linker flag" (Sasha Levin) [611a529935bb]
* Don't jump to compute_result state from check_result state (Nigel Croxon) [4438acd26570]
* rtlwifi: rtl8723ae: Fix missing break in switch statement (Gustavo A. R. Silva) [5d8d8076f077]
* ALSA: pcm: remove SNDRV_PCM_IOCTL1_INFO internal command (Takashi Sakamoto) [9a2f7e1aeb83]
* cw1200: fix missing unlock on error in cw1200_hw_scan() (Wei Yongjun) [7e070799405a]
* Input: synaptics-rmi4 - fix possible double free (Pan Bian) [f88cf6a1dafc]
* spi: ST ST95HF NFC: declare missing of table (Daniel Gomez) [963db3ac250d]
* spi: Micrel eth switch: declare missing of table (Daniel Gomez) [a28c96b77436]
* gpu: ipu-v3: dp: fix CSC handling (Lucas Stach) [1e62aa671ba2]
* selftests/net: correct the return value for run_netsocktests (Po-Hsu Lin) [0a62033dbd22]
* drm/sun4i: Set device driver data at bind time for use in unbind (Paul Kocialkowski) [891b9c9b831c]
* s390: ctcm: fix ctcm_new_device error return code (Arnd Bergmann) [7d55af67f971]
* MIPS: perf: ath79: Fix perfcount IRQ assignment (Petr Štetiar) [08056d95383a]
* ipvs: do not schedule icmp errors from tunnels (Julian Anastasov) [e605c01a9493]
* selftests: netfilter: check icmp pkttoobig errors are set as related (Florian Westphal) [e26a02dbbcef]
* init: initialize jump labels before command line option parsing (Dan Williams) [e61470f32382]
* tools lib traceevent: Fix missing equality check for strcmp (Rikard Falkeborn) [ac7b73c34b99]
* KVM: x86: avoid misreporting level-triggered irqs as edge-triggered in tracing (Vitaly Kuznetsov) [73254d5ff028]
* x86/reboot, efi: Use EFI reboot for Acer TravelMate X514-51T (Jian-Hong Pan) [d33605e8a9d8]
* mISDN: Check address length before reading address family (Tetsuo Handa) [717fb9d2a0ec]
* s390/3270: fix lockdep false positive on view->lock (Martin Schwidefsky) [26d324aa3da4]
* mac80211: fix unaligned access in mesh table hash function (Felix Fietkau) [f3c7e77d2f3f]
* s390/dasd: Fix capacity calculation for large volumes (Peter Oberparleiter) [62ea217ff7fe]
* libnvdimm/btt: Fix a kmemdup failure check (Aditya Pakki) [0f57301e2dff]
* HID: input: add mapping for "Toggle Display" key (Dmitry Torokhov) [67a810f7f1a3]
* HID: input: add mapping for keyboard Brightness Up/Down/Toggle keys (Dmitry Torokhov) [ed2b5f62bfd3]
* HID: input: add mapping for Expose/Overview key (Dmitry Torokhov) [7458e409d4c0]
* libnvdimm/namespace: Fix a potential NULL pointer dereference (Kangjie Lu) [0984da3ce3b9]
* iio: adc: xilinx: fix potential use-after-free on remove (Sven Van Asbroeck) [8df5a0feb9ae]
* USB: serial: fix unthrottle races (Johan Hovold) [93b99e5769ec]
* platform/x86: sony-laptop: Fix unintentional fall-through (Gustavo A. R. Silva) [487e649cc4b8]
* bpf: convert htab map to hlist_nulls (Alexei Starovoitov) [c98bceca2f2e]
* bpf: fix struct htab_elem layout (Alexei Starovoitov) [cc5477329570]
* netfilter: compat: initialize all fields in xt_init (Francesco Ruggeri) [2456cf776100]
* Linux 4.9.176 (Greg Kroah-Hartman) [f9e2ccaad95d]
* x86/cpu/bugs: Use __initconst for 'const' init data (Andi Kleen) [e5beb73e9329]
* x86: stop exporting msr-index.h to userland (Nicolas Dichtel) [bd756660461e]
* x86/speculation/mds: Fix documentation typo (Josh Poimboeuf) [6c3cafe8a599]
* Documentation: Correct the possible MDS sysfs values (Tyler Hicks) [abd6fedfaee8]
* x86/mds: Add MDSUM variant to the MDS documentation (speck for Pawan Gupta) [1878b5c21cf3]
* x86/speculation/mds: Add 'mitigations=' support for MDS (Josh Poimboeuf) [9852dc7c6a6c]
* x86/speculation: Support 'mitigations=' cmdline option (Josh Poimboeuf) [bc5eaea940ff]
* cpu/speculation: Add 'mitigations=' cmdline option (jpoimboe) [ea0ab5999e7e]
* x86/speculation/mds: Print SMT vulnerable on MSBDS with mitigations off (Konrad Rzeszutek Wilk) [edf7df1f3f92]
* x86/speculation/mds: Fix comment (Boris Ostrovsky) [af4d343adf1b]
* x86/speculation/mds: Add SMT warning message (Josh Poimboeuf) [4b72b8ccdfc4]
* x86/speculation: Move arch_smt_update() call to after mitigation decisions (Josh Poimboeuf) [a4990c279e75]
* x86/speculation/mds: Add mds=full,nosmt cmdline option (Josh Poimboeuf) [c91e4f4e386b]
* Documentation: Add MDS vulnerability documentation (Thomas Gleixner) [f7525e9615d0]
* Documentation: Move L1TF to separate directory (Thomas Gleixner) [a498dca02f09]
* x86/speculation/mds: Add mitigation mode VMWERV (Thomas Gleixner) [fc22c4760262]
* x86/speculation/mds: Add sysfs reporting for MDS (Thomas Gleixner) [ecc09affebdf]
* x86/speculation/mds: Add mitigation control for MDS (Thomas Gleixner) [b93e2ae7549f]
* x86/speculation/mds: Conditionally clear CPU buffers on idle entry (Thomas Gleixner) [d455de19ba06]
* x86/kvm/vmx: Add MDS protection when L1D Flush is not active (Thomas Gleixner) [3c2ea73ce45d]
* x86/speculation/mds: Clear CPU buffers on exit to user (Thomas Gleixner) [766cce8c4286]
* x86/speculation/mds: Add mds_clear_cpu_buffers() (Thomas Gleixner) [9fd8f8177b9a]
* x86/kvm: Expose X86_FEATURE_MD_CLEAR to guests (Andi Kleen) [02088d559172]
* x86/speculation/mds: Add BUG_MSBDS_ONLY (Thomas Gleixner) [997379da7083]
* x86/speculation/mds: Add basic bug infrastructure for MDS (Andi Kleen) [c5ee863d379f]
* x86/speculation: Consolidate CPU whitelists (Thomas Gleixner) [b057f25b5a6f]
* x86/msr-index: Cleanup bit defines (Thomas Gleixner) [4d4461ff6b77]
* kvm: x86: Report STIBP on GET_SUPPORTED_CPUID (Eduardo Habkost) [d10edc738d70]
* x86/speculation: Provide IBPB always command line options (Thomas Gleixner) [7a9eb126da00]
* x86/speculation: Add seccomp Spectre v2 user space protection mode (Thomas Gleixner) [2c968fa07dac]
* x86/speculation: Enable prctl mode for spectre_v2_user (Thomas Gleixner) [ff47f149f50e]
* x86/speculation: Add prctl() control for indirect branch speculation (Thomas Gleixner) [3a470aebf392]
* x86/speculation: Prevent stale SPEC_CTRL msr content (Thomas Gleixner) [a7bc10c3c98e]
* x86/speculation: Prepare arch_smt_update() for PRCTL mode (Thomas Gleixner) [f03549caec97]
* x86/speculation: Split out TIF update (Thomas Gleixner) [996a04d7b0d1]
* x86/speculation: Prepare for conditional IBPB in switch_mm() (Thomas Gleixner) [fb5d5216361e]
* x86/speculation: Avoid __switch_to_xtra() calls (Thomas Gleixner) [c40f3f10233c]
* x86/process: Consolidate and simplify switch_to_xtra() code (Thomas Gleixner) [d6d76feeec61]
* x86/speculation: Prepare for per task indirect branch speculation control (Tim Chen) [a985a784bd8a]
* x86/speculation: Add command line control for indirect branch speculation (Thomas Gleixner) [7cadaec8fe99]
* x86/speculation: Unify conditional spectre v2 print functions (Thomas Gleixner) [a0d2fc73417f]
* x86/speculataion: Mark command line parser data __initdata (Thomas Gleixner) [26d1d37d6cfe]
* x86/speculation: Mark string arrays const correctly (Thomas Gleixner) [91babd9fdfbe]
* x86/speculation: Reorder the spec_v2 code (Thomas Gleixner) [86dbe914d364]
* x86/l1tf: Show actual SMT state (Thomas Gleixner) [42ea3646211c]
* x86/speculation: Rework SMT state change (Thomas Gleixner) [130416c11218]
* sched: Add sched_smt_active() (Ben Hutchings) [49da0d470551]
* x86/Kconfig: Select SCHED_SMT if SMP enabled (Thomas Gleixner) [62c80938b0e3]
* x86/speculation: Reorganize speculation control MSRs update (Tim Chen) [8e5c85466608]
* x86/speculation: Rename SSBD update functions (Thomas Gleixner) [07412e3458af]
* x86/speculation: Disable STIBP when enhanced IBRS is in use (Tim Chen) [35f98785514d]
* x86/speculation: Move STIPB/IBPB string conditionals out of cpu_show_common() (Tim Chen) [d9b8b7a7b7bc]
* x86/speculation: Remove unnecessary ret variable in cpu_show_common() (Tim Chen) [0142d2882c17]
* x86/speculation: Clean up spectre_v2_parse_cmdline() (Tim Chen) [5692da3294bf]
* x86/speculation: Update the TIF_SSBD comment (Tim Chen) [63db54e54277]
* x86/speculation/l1tf: Drop the swap storage limit restriction when l1tf=off (Michal Hocko) [750da2210949]
* x86/speculation: Propagate information about RSB filling mitigation to sysfs (Jiri Kosina) [f5ee739ac54c]
* x86/speculation: Enable cross-hyperthread spectre v2 STIBP mitigation (Jiri Kosina) [43d978479301]
* x86/speculation: Apply IBPB more strictly to avoid cross-process data leak (Jiri Kosina) [e9d2cf12313b]
* Documentation/l1tf: Fix small spelling typo (Salvatore Bonaccorso) [0df48f06b0ac]
* x86/cpu: Sanitize FAM6_ATOM naming (Peter Zijlstra) [b72c3fa78815]
* x86/speculation: Remove SPECTRE_V2_IBRS in enum spectre_v2_mitigation (Jiang Biao) [cb6c81f8ebcc]
* locking/atomics, asm-generic: Move some macros from <linux/bitops.h> to a new <linux/bits.h> file (Will Deacon) [a7ea38ec110d]
* x86/speculation: Simplify the CPU bug detection logic (Dominik Brodowski) [3b0b14259d52]
* bitops: avoid integer overflow in GENMASK(_ULL) (Matthias Kaehlcke) [5b7f33486c91]
* x86/mm: Use WRITE_ONCE() when setting PTEs (Nadav Amit) [293353748788]
* x86/microcode: Update the new microcode revision unconditionally (Filippo Sironi) [965747bc8b58]
* x86/microcode: Make sure boot_cpu_data.microcode is up-to-date (Prarit Bhargava) [51da834a7146]
* x86/microcode/intel: Check microcode revision before updating sibling threads (Ashok Raj) [c7f7e1e7cfcd]
* x86/microcode/intel: Add a helper which gives the microcode revision (Borislav Petkov) [a7d0b2233f24]
* x86/bugs: Fix the AMD SSBD usage of the SPEC_CTRL MSR (Tom Lendacky) [cc32f31f303a]
* x86/bugs: Switch the selection of mitigation from CPU vendor to CPU features (Konrad Rzeszutek Wilk) [7ee130d2a199]
* x86/bugs: Add AMD's SPEC_CTRL MSR usage (Konrad Rzeszutek Wilk) [dd71c87bb1fe]
* x86/bugs: Add AMD's variant of SSB_NO (Konrad Rzeszutek Wilk) [b157cf3e1306]
* x86/cpufeatures: Hide AMD-specific speculation flags (Ben Hutchings) [2f83ce5ba157]
* x86/MCE: Save microcode revision in machine check records (Tony Luck) [908675f22402]
13/05/2019
* version 3
* yarpiin_defconfig: update (Slawek) [afd6ab1c7c2a]
* Linux 4.9.175 (Greg Kroah-Hartman) [d9e93ac3c4db]
* timer/debug: Change /proc/timer_stats from 0644 to 0600 (Ben Hutchings) [2607cc601e0b]
* ASoC: Intel: avoid Oops if DMA setup fails (Ross Zwisler) [b473d3cb9202]
* UAS: fix alignment of scatter/gather segments (Oliver Neukum) [561c4620a92d]
* Bluetooth: Align minimum encryption key size for LE and BR/EDR connections (Marcel Holtmann) [10ab0f4ebc10]
* Bluetooth: hidp: fix buffer overflow (Young Xiao) [dbd30bc4cd3d]
* scsi: qla2xxx: Fix incorrect region-size setting in optrom SYSFS routines (Andrew Vasquez) [10ecf12a0106]
* usb-storage: Set virt_boundary_mask to avoid SG overflows (Alan Stern) [de388d1bfc66]
* USB: serial: f81232: fix interrupt worker not stop (Ji-Ze Hong (Peter Hong)) [382030eea0ff]
* usb: dwc3: Fix default lpm_nyet_threshold value (Thinh Nguyen) [5f66d123e3ad]
* genirq: Prevent use-after-free and work list corruption (Prasad Sodagudi) [5a90f536b208]
* ARM: 8680/1: boot/compressed: fix inappropriate Thumb2 mnemonic for __nop (Ard Biesheuvel) [b169e42aadc2]
* mm: add 'try_get_page()' helper function (Linus Torvalds) [12d16a40427a]
* iommu/amd: Set exclusion range correctly (Joerg Roedel) [41b23028de06]
* virtio-blk: limit number of hw queues by nr_cpu_ids (Dongli Zhang) [4d331cfe23d7]
* drm/mediatek: fix possible object reference leak (Wen Yang) [7961b62fd68b]
* scsi: csiostor: fix missing data copy in csio_scsi_err_handler() (Varun Prakash) [ec9a695c887a]
* linux/kernel.h: Use parentheses around argument in u64_to_user_ptr() (Jann Horn) [9254fc3b9ebb]
* perf/x86/intel: Fix handling of wakeup_events for multi-entry PEBS (Stephane Eranian) [15c10ac5facf]
* drm/mediatek: Fix an error code in mtk_hdmi_dt_parse_pdata() (Dan Carpenter) [64959a93135f]
* ASoC: tlv320aic32x4: Fix Common Pins (Annaliese McDermond) [35027b20796d]
* IB/hfi1: Eliminate opcode tests on mr deref (Kaike Wan) [d17df59a5604]
* ASoC: cs4270: Set auto-increment bit for register writes (Daniel Mack) [b4161e4e4ef9]
* ASoC: nau8810: fix the issue of widget with prefixed name (John Hsu) [05ebf8c6c488]
* ASoC:soc-pcm:fix a codec fixup issue in TDM case (Rander Wang) [8cdda5eff3ac]
* staging: greybus: power_supply: fix prop-descriptor request size (Johan Hovold) [7cbdd399a3e1]
* ubsan: Fix nasty -Wbuiltin-declaration-mismatch GCC-9 warnings (Andrey Ryabinin) [461acedc0ef5]
* scsi: libsas: fix a race condition when smp task timeout (Jason Yan) [2f470ddbf1c6]
* Added fsync on/off support. (Francisco Franco) [1931db2606fd]
* net/wireguard: add wireguard importer (zx2c4) [b8117b29ee50]
* build: update (Slawek) [606d53500718]
08/05/2019
* version 2
* Linux 4.9.174 (Greg Kroah-Hartman) [19a11e85a00a]
* media: v4l2: i2c: ov7670: Fix PLL bypass register values (Jacopo Mondi) [4c5d47e932eb]
* x86/mce: Improve error message when kernel cannot recover, p2 (Tony Luck) [703ed0c6f430]
* selinux: never allow relabeling on context mounts (Ondrej Mosnacek) [9a5e5faebdd5]
* Input: snvs_pwrkey - initialize necessary driver data before enabling IRQ (Anson Huang) [1d481288865a]
* scsi: RDMA/srpt: Fix a credit leak for aborted commands (Bart Van Assche) [1153ee0676cf]
* staging: iio: adt7316: fix the dac write calculation (Jeremy Fertic) [a23f195a7f8d]
* staging: iio: adt7316: fix the dac read calculation (Jeremy Fertic) [676b0489119d]
* staging: iio: adt7316: allow adt751x to use internal vref for all dacs (Jeremy Fertic) [5dbbe2a22de9]
* perf/x86/amd: Update generic hardware cache events for Family 17h (Kim Phillips) [d163d95fdff4]
* ARM: iop: don't use using 64-bit DMA masks (Arnd Bergmann) [6b271faf3099]
* ARM: orion: don't use using 64-bit DMA masks (Arnd Bergmann) [a169fae1426e]
* xsysace: Fix error handling in ace_setup (Guenter Roeck) [17d95a02e1a1]
* sh: fix multiple function definition build errors (Randy Dunlap) [c32a5a7d7623]
* hugetlbfs: fix memory leak for resv_map (Mike Kravetz) [ccea966bac37]
* net: hns: Fix WARNING when remove HNS driver with SMMU enabled (Yonglong Liu) [394a43ca6ffd]
* net: hns: Use NAPI_POLL_WEIGHT for hns driver (Yonglong Liu) [2be60348004b]
* net: hns: fix KASAN: use-after-free in hns_nic_net_xmit_hw() (Liubin Shu) [3636f20dcf56]
* scsi: storvsc: Fix calculation of sub-channel count (Michael Kelley) [60334f7184f0]
* scsi: core: add new RDAC LENOVO/DE_Series device (Xose Vazquez Perez) [d8442a32090c]
* vfio/pci: use correct format characters (Louis Taylor) [8276967d4575]
* rtc: da9063: set uie_unsupported when relevant (Alexandre Belloni) [9c70cebc1cbd]
* debugfs: fix use-after-free on symlink traversal (Al Viro) [0215e8481dba]
* jffs2: fix use-after-free on symlink traversal (Al Viro) [cc34852fef16]
* net: stmmac: don't log oversized frames (Aaro Koskinen) [1dcf7c25db1e]
* net: stmmac: fix dropping of multi-descriptor RX frames (Aaro Koskinen) [612d4a47635b]
* net: stmmac: don't overwrite discard_frame status (Aaro Koskinen) [75eaea7020ad]
* bonding: show full hw address in sysfs for slave entries (Konstantin Khorenko) [36e30cbccd5e]
* net/mlx5: E-Switch, Fix esw manager vport indication for more vport commands (Omri Kahalon) [9821a5781ee7]
* igb: Fix WARN_ONCE on runtime suspend (Arvind Sankar) [a423fbbb94cb]
* batman-adv: Reduce tt_global hash refcnt only for removed entry (Sven Eckelmann) [0a73ba2df9ae]
* batman-adv: Reduce tt_local hash refcnt only for removed entry (Sven Eckelmann) [500fbd8eb396]
* batman-adv: Reduce claim hash refcnt only for removed entry (Sven Eckelmann) [276ebed54991]
* rtc: sh: Fix invalid alarm warning for non-enabled alarm (Geert Uytterhoeven) [dd1faf987027]
* HID: debug: fix race condition with between rdesc_show() and device removal (He, Bo) [2391bf900ecb]
* HID: logitech: check the return value of create_singlethread_workqueue (Kangjie Lu) [3386bb970c6a]
* nvme-loop: init nvmet_ctrl fatal_err_work when allocate (Yufen Yu) [0ea651ed1fe1]
* USB: core: Fix bug caused by duplicate interface PM usage counter (Alan Stern) [2c8c9184425d]
* USB: core: Fix unterminated string returned by usb_string() (Alan Stern) [a0ef60500b71]
* usb: usbip: fix isoc packet num validation in get_pipe (Malte Leip) [5b28848cb6cb]
* USB: w1 ds2490: Fix bug caused by improper use of altsetting array (Alan Stern) [6bc19a7a537a]
* USB: yurex: Fix protection fault after device removal (Alan Stern) [6df9bb9a928c]
* caif: reduce stack size with KASAN (Arnd Bergmann) [5d58a2487e44]
* arm64: mm: don't print out page table entries on EL0 faults (Kristina Martsenko) [246127bfa3bb]
* arm64: mm: print out correct page table entries (Kristina Martsenko) [4952c7c14042]
* kasan: prevent compiler from optimizing away memset in tests (Andrey Konovalov) [19d8d28c4d4f]
* arm64: proc: Set PTE_NG for table entries to avoid traversing them twice (Will Deacon) [b4763566a3b8]
* kasan: remove redundant initialization of variable 'real_size' (Colin Ian King) [332fc43b098e]
* kasan: avoid -Wmaybe-uninitialized warning (Arnd Bergmann) [3553536cfd4f]
* kasan: add a prototype of task_struct to avoid warning (Masami Hiramatsu) [23e7f8fbf4c1]
* arm64: kasan: avoid bad virt_to_pfn() (Mark Rutland) [2beff1d2c8c1]
* x86/unwind: Disable KASAN checks for non-current tasks (Josh Poimboeuf) [4b247089315e]
* mm/kasan: Switch to using __pa_symbol and lm_alias (Laura Abbott) [c5a9fb5212f7]
* x86/suspend: fix false positive KASAN warning on suspend/resume (Josh Poimboeuf) [941e173305a3]
* net: phy: marvell: Fix buffer overrun with stats counters (Andrew Lunn) [4bb493d1e663]
* bnxt_en: Improve multicast address setup logic. (Michael Chan) [385562119440]
* packet: validate msg_namelen in send directly (Willem de Bruijn) [bcec0d50879e]
* ipv6: invert flowlabel sharing check in process and user mode (Willem de Bruijn) [8f315b0ff896]
* ipv6/flowlabel: wait rcu grace period before put_pid() (Eric Dumazet) [24c2de083d77]
* ipv4: ip_do_fragment: Preserve skb_iif during fragmentation (Shmulik Ladkani) [924f268cb916]
* ALSA: line6: use dynamic buffers (Greg Kroah-Hartman) [314d76043dfb]
* Linux 4.9.173 (Greg Kroah-Hartman) [19b9a139c41b]
* vfio/type1: Limit DMA mappings per container (Alex Williamson) [7fd00bac9d11]
* leds: pca9532: fix a potential NULL pointer dereference (Kangjie Lu) [b4dc71a32e58]
* kconfig/[mn]conf: handle backspace (^H) key (Changbin Du) [ecb7782beb90]
* gpio: of: Fix of_gpiochip_add() error path (Geert Uytterhoeven) [88355452d820]
* libata: fix using DMA buffers on stack (raymond pang) [6fa65d45f80d]
* scsi: zfcp: reduce flood of fcrscn1 trace records on multi-element RSCN (Steffen Maier) [ce939842b802]
* ceph: fix use-after-free on symlink traversal (Al Viro) [9678c36dfb38]
* usb: u132-hcd: fix resource leak (Mukesh Ojha) [4abbdb86c773]
* scsi: qla4xxx: fix a potential NULL pointer dereference (Kangjie Lu) [d5894ac2c456]
* net: ethernet: ti: fix possible object reference leak (Wen Yang) [f6f407e33be5]
* net: ibm: fix possible object reference leak (Wen Yang) [d3f725b01da1]
* net: xilinx: fix possible object reference leak (Wen Yang) [94e63c85bfdb]
* NFS: Fix a typo in nfs_init_timeout_values() (Trond Myklebust) [2812887b97da]
* staging: rtl8712: uninitialized memory in read_bbreg_hdl() (Dan Carpenter) [d0d970b85442]
* net: ks8851: Set initial carrier state to down (Lukas Wunner) [1781b31d7732]
* net: ks8851: Delay requesting IRQ until opened (Lukas Wunner) [06bb7f9b3dea]
* net: ks8851: Reassert reset pin if chip ID check fails (Lukas Wunner) [16aac153d245]
* net: ks8851: Dequeue RX packets explicitly (Lukas Wunner) [ee8910478d30]
* ARM: dts: pfla02: increase phy reset duration (Marco Felsch) [7462ac406520]
* usb: gadget: net2272: Fix net2272_dequeue() (Guido Kiener) [b12907f4f6ae]
* usb: gadget: net2280: Fix net2280_dequeue() (Guido Kiener) [5a576263d2cb]
* usb: gadget: net2280: Fix overrun of OUT messages (Guido Kiener) [0aa8a8c28145]
* serial: ar933x_uart: Fix build failure with disabled console (Petr Štetiar) [06f51e4a4e0c]
* sc16is7xx: missing unregister/delete driver on error in sc16is7xx_init() (Mao Wenan) [3be8ea7da64f]
* netfilter: bridge: set skb transport_header before entering NF_INET_PRE_ROUTING (Xin Long) [ca4adcc999a8]
* netfilter: nft_set_rbtree: check for inactive element after flag mismatch (Pablo Neira Ayuso) [b56221d3d4e8]
* qlcnic: Avoid potential NULL pointer dereference (Aditya Pakki) [dca9f3ec5ade]
* s390: limit brk randomization to 32MB (Martin Schwidefsky) [3ad81a6614eb]
* ARM: dts: bcm283x: Fix hdmi hpd gpio pull (Helen Koike) [97303e4b174f]
* media: vivid: check if the cec_adapter is valid (Hans Verkuil) [73589a905e05]
* usbnet: ipheth: fix potential null pointer dereference in ipheth_carrier_set (Gustavo A. R. Silva) [e85a583d836e]
* usbnet: ipheth: prevent TX queue timeouts when device not ready (Alexander Kappner) [a0d38498ea48]
03/05/2019
* version 1
* yarpiin_defconfig: enable gestures (Slawek) [a807fa2ec7a2]
* wake_gestures: fix unresponsiveness on sec_ts (Michael Benedict) [5010ec6377eb]
* wake_gestures: adjust sweep (flar2) [ced5e72f6b1d]
* wake_gestures: sweep2wake, doubletap2wake and sweep2sleep for Samsung Galaxy S9 (flar2) [65b88eabfdd8]
* UPSTREAM: binder: replace "%p" with "%pK" (Todd Kjos) [10ce5406fb68]
* UPSTREAM: binder: free memory on error (Christian Brauner) [8126463918b6]
* UPSTREAM: binder: fix proc->files use-after-free (Todd Kjos) [f7af5d6e9069]
* UPSTREAM: ANDROID: binder: change down_write to down_read (Minchan Kim) [1ed557a86679]
* UPSTREAM: ANDROID: binder: correct the cmd print for BINDER_WORK_RETURN_ERROR (宋金时) [1f01517e58f7]
* UPSTREAM: ANDROID: binder: remove 32-bit binder interface. (Martijn Coenen) [54736600e000]
* UPSTREAM: ANDROID: binder: re-order some conditions (Dan Carpenter) [7ffdbcff8c7f]
* UPSTREAM: android: binder: use VM_ALLOC to get vm area (Ganesh Mahendran) [c510d1e595c7]
* UPSTREAM: android: binder: Use true and false for boolean values (Gustavo A. R. Silva) [198eb859b005]
* UPSTREAM: android: binder: Prefer __func__ to using hardcoded function name (Elad Wexler) [4e5da46e6c8b]
* UPSTREAM: ANDROID: binder: prevent transactions into own process. (Martijn Coenen) [a57cf305f815]
* Silence workqueue (Erik Müller) [a880fa6a0d3a]
* kernel/workqueue.c: remove ifdefs over wq_power_efficient (Luis R. Rodriguez) [9efdd09e53a1]
* workqueue: Implement delayed_work_busy() (Alex Naidis) [b68521f14944]
* workqueue: move wq_numa_init() to workqueue_init() (Tejun Heo) [37ffe5ecf657]
* workqueue: remove keventd_up() (Tejun Heo) [2dfa40079c58]
* power, workqueue: remove keventd_up() usage (Tejun Heo) [1de48d82c2c8]
* workqueue: make workqueue available early during boot (Tejun Heo) [9e7717649755]
* workqueue: dump workqueue state on sanity check failures in destroy_workqueue() (Tejun Heo) [1ff6e217f566]
* workqueue: Schedule workers on CPU0 or CPU0/CPU1 by default (Sultanxda) [c64e2850b298]
* workqueue: Show the latest workqueue name in /proc/PID/{comm,stat,status} (Tejun Heo) [5a5efae622ae]
* workqueue: Set worker->desc to workqueue name by default (Tejun Heo) [e162aa414845]
* workqueue: Make worker_attach/detach_pool() update worker->pool (Tejun Heo) [79d215c8ae0c]
* workqueue: Replace pool->attach_mutex with global wq_pool_attach_mutex (Tejun Heo) [fc7a21e667f9]
* rcu: Don't kick unless grace period or request (Paul E. McKenney) [886a79a2c434]
* rcu: Make expedited grace periods recheck dyntick idle state (Paul E. McKenney) [7236e96e0e04]
* rcu: Speed up calling of RCU tasks callbacks (Steven Rostedt (VMware)) [2bba6ef5de4f]
* ANDROID: sched/fair: Make the EAS path aware of prefer-idle (Quentin Perret) [609db3c390f8]
* BACKPORT: sched/fair: Select an energy-efficient CPU on task wake-up (Quentin Perret) [18dde75f4be2]
* BACKPORT: sched/fair: Introduce an energy estimation helper function (Quentin Perret) [07da010d2b4f]
* BACKPORT: sched/topology: Add lowest CPU asymmetry sched_domain level pointer (Quentin Perret) [811e95ad7ec5]
* BACKPORT: sched/topology: Reference the Energy Model of CPUs when available (Quentin Perret) [97a1af128312]
* yarpiin_defconfig: update (Slawek) [ec92765159c9]
* ANDROID: legacy_em_driver: Add support for freq-power EMs (Quentin Perret) [016f7aaa1dbc]
* ANDROID: drivers: Introduce a legacy Energy Model loading driver (Quentin Perret) [abe38f867a0c]
* BACKPORT: PM: Introduce an Energy Model management framework (Quentin Perret) [263746947e38]
* decon: Adapt boost during frame changes (Diep Quynh) [16134682f51c]
* exynos-acme: undervolt CPU by 50 mV (Slawek) [ca8366690f57]
* Linux 4.9.172 (Greg Kroah-Hartman) [ff82c8adf5a9]
* Documentation: Add nospectre_v1 parameter (Diana Craciun) [eae7ee515567]
* powerpc/fsl: Add FSL_PPC_BOOK3E as supported arch for nospectre_v2 boot arg (Diana Craciun) [b95cde64598e]
* net: IP6 defrag: use rbtrees in nf_conntrack_reasm.c (Peter Oskolkov) [dcdcf371502b]
* net: IP6 defrag: use rbtrees for IPv6 defrag (Peter Oskolkov) [7007a824ef48]
* ipv6: remove dependency of nf_defrag_ipv6 on ipv6 module (Florian Westphal) [dacbc5585d0b]
* net: IP defrag: encapsulate rbtree defrag code into callable functions (Peter Oskolkov) [5b494b125a7d]
* ipv6: frags: fix a lockdep false positive (Eric Dumazet) [32aba7228b40]
* ipv4: set the tcp_min_rtt_wlen range from 0 to one day (ZhangXiaoxu) [aac3f3070693]
* net: stmmac: move stmmac_check_ether_addr() to driver probe (Vinod Koul) [63c8140ea614]
* team: fix possible recursive locking when add slaves (Hangbin Liu) [5f1858c97042]
* net: rds: exchange of 8K and 1M pool (Zhu Yanjun) [7146233d7e80]
* net/mlx5e: ethtool, Remove unsupported SFP EEPROM high pages query (Erez Alfasi) [f986201fc52c]
* mlxsw: spectrum: Fix autoneg status in ethtool (Amit Cohen) [95d18d445b1f]
* ipv4: add sanity checks in ipv4_link_failure() (Eric Dumazet) [9be73695ee25]
* Revert "block/loop: Use global lock for ioctl() operation." (Greg Kroah-Hartman) [735c8f4776b2]
* tipc: check link name with right length in tipc_nl_compat_link_set (Xin Long) [e27a499ffac4]
* tipc: check bearer name with right length in tipc_nl_compat_bearer_enable (Xin Long) [50a1877b512e]
* fm10k: Fix a potential NULL pointer dereference (Yue Haibing) [6287d118bafa]
* netfilter: ebtables: CONFIG_COMPAT: drop a bogus WARN_ON (Florian Westphal) [3b4f5b5b0672]
* NFS: Forbid setting AF_INET6 to "struct sockaddr_in"->sin_family. (Tetsuo Handa) [d6e328136568]
* fs/proc/proc_sysctl.c: Fix a NULL pointer dereference (YueHaibing) [78ec82b9b165]
* intel_th: gth: Fix an off-by-one in output unassigning (Alexander Shishkin) [c255387f34dc]
* slip: make slhc_free() silently accept an error pointer (Linus Torvalds) [e7d22076c71f]
* tipc: handle the err returned from cmd header function (Xin Long) [ea81248e4741]
* vsock/virtio: fix kernel panic from virtio_transport_reset_no_sock (Adalbert Lazăr) [236492e29cb4]
* USB: Consolidate LPM checks to avoid enabling LPM twice (Kai-Heng Feng) [0173e8c7f324]
* USB: Add new USB LPM helpers (Kai-Heng Feng) [8a3af33e92da]
* drm/vc4: Fix compilation error reported by kbuild test bot (Maarten Lankhorst) [92a498149398]
* drm/vc4: Fix memory leak during gpu reset. (Maarten Lankhorst) [04a52cc3f098]
* ARM: 8857/1: efi: enable CP15 DMB instructions before cleaning the cache (Ard Biesheuvel) [505409a71d8d]
* dmaengine: sh: rcar-dmac: With cyclic DMA residue 0 is valid (Dirk Behme) [1e2c539a17b8]
* Input: synaptics-rmi4 - write config register values to the right offset (Lucas Stach) [7119309c5e6d]
* sunrpc: don't mark uninitialised items as VALID. (NeilBrown) [3afab334a8fd]
* nfsd: Don't release the callback slot unless it was actually held (Trond Myklebust) [34695afce968]
* ceph: fix ci->i_head_snapc leak (Yan, Zheng) [1504de9ba356]
* ceph: ensure d_name stability in ceph_dentry_hash() (Jeff Layton) [20c1198a0a6b]
* sched/numa: Fix a possible divide-by-zero (Xie XiuQi) [30cbde58413d]
* IB/rdmavt: Fix frwr memory registration (Josh Collier) [bcc81dc8f78b]
* trace: Fix preempt_enable_no_resched() abuse (Peter Zijlstra) [ee587ec671ac]
* MIPS: scall64-o32: Fix indirect syscall number load (Aurelien Jarno) [292b44766d2c]
* tracing: Fix a memory leak by early error exit in trace_pid_write() (Wenwen Wang) [712fdfbde747]
* cifs: do not attempt cifs operation on smb2+ rename error (Frank Sorenson) [0cdb2ed58825]
* yarpiin_defconfig: Use 300 Hz timer (Slawek) [b4886d5e187a]
* cpu_boost: reduce boost times (Slawek) [d946af99edb6]
* kernel: Adjust top-app boost (Sultan Alsawaf) [63f9a08ff01e]
* kernel: Boost whenever a zygote-forked process becomes a top app (Sultan Alsawaf) [4735a9989070]
* mm: Boost when memory pressure becomes high (Sultan Alsawaf) [0f56352c40a7]
* yarpiin_defconfig: enable devfreq boost (Slawek) [0e855c96b114]
* devfreq_boost: Code style nitpicks (Sultan Alsawaf) [a23480a72abf]
* devfreq_boost: Simplify screen-awake check (Sultan Alsawaf) [23e7ce13668a]
* devfreq_boost: Remove unused devfreq_get_boost_dev function (Sultan Alsawaf) [f36d0ec4d91d]
* devfreq_boost: Clean up code style and update license header (Sultan Alsawaf) [eb9f12981fa4]
* devfreq_boost: Adapt to Exynos (Diep Quynh) [23c1ae7ea895]
* devfreq: Introduce devfreq boost driver (kerneltoast) [3f979e9fe22c]
* kernel: Force trivial, unbound kthreads onto low-power CPUs (Sultan Alsawaf) [59299501bf92]
* input: touchscreen: sec_ts: Mark IRQ as performance critical (Sultan Alsawaf) [66eab2e5679d]
* kernel: Improve performance critical IRQ framework (Sultan Alsawaf) [fe28cf92259b]
* kernel: Add API to mark IRQs and kthreads as performance critical (Sultan Alsawaf) [5408f6a28287]
* sched: features: Disable gentle fair sleepers (Chet Kener) [a8aa8fb48f70]
* yarpiin_defconfig: update (Slawek) [fdeb00256ad9]
* selinux: don't require auditing (kdrag0n) [b598eb711cf6]
* yarpiin_defconfig: update (Slawek) [672829dfdabe]
* Fix build when SDFAT_DEBUG unset. (ianmacd) [c85515e082e6]
* Fix build when CONFIG_SEC_DEBUG_TSP_LOG unset. (ianmacd) [6b9e3b8652f1]
* Fix build when CONFIG_SCHED_DEBUG is unset. (ianmacd) [f908970de2c7]
* yarpiin_defconfig: update (Slawek) [092784c81287]
* kernel: Boost all CPUs to the max when userspace launches an app (Sultan Alsawaf) [364d273ba6a1]
* cpu_boost_input: fix dynamic stune boost (Francisco Franco) [d9d47970606a]
* sched/tune: Switch Dynamic Schedtune Boost to a slot-based tracking system (joshuous) [6372824e0745]
* cpu_input_boost: Reset Dynamic SchedTune Boost only if it is currently active (joshuous) [5ca9d134f00e]
* cpu_input_boost: Implement Dynamic SchedTune Boost v3 (joshuous) [f200cf6020e9]
* sched/tune: Switch Dynamic Schedtune Boost to a slot-based tracking system (joshuous) [f5ef4fb9dcdf]
* sched/stune: Rename stune_boost() to do_stune_sched_boost() (joshuous) [348728280f65]
* sched/tune: Rename dynamic_boost parameter to sched_boost (joshuous) [3224ee853738]
* sched/tune: Track active boosts on a per-Schedtune basis (joshuous) [3b9259cdfd14]
* sched/tune: Reset Dynamic Schedtune Boost only if no more boosts running (joshuous) [4ec5284142ed]
* sched/tune: Introduce stune_boost() function (joshuous) [53fb49ab29d3]
* sched/tune: Refactor do_stune_boost() (joshuous) [378655e4a2bb]
* sched/tune: Create dynamic_boost SchedTune parameter (joshuous) [65e3d22cfc47]
* sched/tune: Rename dynamic_boost_write() to dynamic_boost() (joshuous) [e98e97d9eeb3]
* sched/tune: Add initial support for Dynamic SchedTune Boost (joshuous) [6db986fa0dc1]
* cpu_input_boost: Boost priority of notifier_block (Alex Naidis) [624cf4d3724a]
* cpu_input_boost: Clean up code style and update license header (Sultan Alsawaf) [925ee9de2dac]
* cpu_input_boost: make the userspace module param vars static (Francisco Franco) [026202f0e78b]
* cpu_input_boost: expose input freqs and duration to userspace (Francisco Franco) [9e6b9d6439e2]
* cpu_input_boost: Eliminate spin lock by using atomic cmpxchg loop (Sultan Alsawaf) [a7df4d08fcfe]
* cpu_input_boost: Simplify bitwise operations used to store boost state (Sultan Alsawaf) [cd3ecb282edf]
* cpu_input_boost: Destroy workqueue on error path in init (Sultan Alsawaf) [837b4bdee7b5]
* cpu_input_boost: Fix and refactor max boost logic (Sultan Alsawaf) [86ac8919c025]
* cpu_input_boost: Add API for boosting all CPUs to max frequency (Sultan Alsawaf) [150185a780f9]
* cpu_input_boost: Introduce driver for event-based CPU boosting (Sultan Alsawaf) [eab2750cfe8e]
* kernel: keep the cpumasks for cpu_input_boost (Francisco Franco) [1a89f78a4012]
* exynos9810: overclock (flar2) [812acba17265]
* backport: exynos pie scaling drivers (Slawek) [dba7edbe8492]
* exynos: gpu: r12p0: OC to 598MHz (Slawek) [b083611743b4]
* gpu/arm/tHEx/r12p0/platform/exynos: Enable GPU Controls and GPU Volage Control (EchoeGit) [de42594aaf31]
* linux: Add sysfs_helpers.h (djb77) [2862531d6506]
* block, bfq: improve and refactor throughput-boosting logic (Paolo Valente) [c9bb47925667]
* block, bfq: consider also in_service_entity to state whether an entity is active (Paolo Valente) [677be96cf184]
* block, bfq: reset in_service_entity if it becomes idle (Paolo Valente) [b6e7a9358be3]
* Add extra checks related to entity scheduling (Paolo Valente) [41e4baca4765]
* BFQ-v8r12 (Paolo Valente) [e32d5bd69efc]
* block, bfq: don't change ioprio class for a bfq_queue on a service tree (Paolo Valente) [84e0b1ca8171]
* Fix commit "don't dereference bic before null checking it" (Paolo Valente) [73810ad67083]
* block, bfq: stress that low_latency must be off to get max throughput (Paolo Valente) [2402a0ac0032]
* block, bfq: update wr_busy_queues if needed on a queue split (Paolo Valente) [55e832a1d966]
* BFQ-v8r11 (Paolo Valente) [abdae8befa08]
* block, bfq: don't dereference bic before null checking it (Colin Ian King) [7b48a143bd92]
* block, bfq: use pointer entity->sched_data only if set (Paolo Valente) [cfced2eedccc]
* mdnie: override RGB (flar2) [59968fa43afd]
* Never call max77705_rgb_ramp() when led_enable_fade disabled. (Ian Macdonald) [f4942de443d6]
* Multiple bug fixes to LED fader implementation: (Ian Macdonald) [8e23da7f0dbb]
* LED fade: fix sysfs entry (flar2) [f9200d315669]
* Adaptation: max77705: fade led Adaptation from Ktoonsez and @Noxxxious (Eamo5) [08da56df6169]
* yarpiin_defconfig: enable Boeffla wakelock blocker (Slawek) [a2b52831e1d8]
* boeffla_wl_blocker: update to a wakelock list (yarpiin) [3beaf6ca0e38]
* boeffla_wl_blocker: update to wakelock blocker driver v1.1.0 (andip71) [47d0b5b00cde]
* boeffla_wl_blocker: update to wakelock blocker driver v1.0.1 (andip71) [90e2113a74cf]
* boeffla_wl_blocker: add generic wakelock blocker driver v1.0.0 (andip71) [fcf4fb387f5f]
* yarpiin_defconfig: enable fp boost (Slawek) [51d9a8b7cd55]
* fp-boost.c: Use State Notifier for display query. (AyushR1) [4e8d987504a4]
* drivers:cpufreq:fp-boost: Make boost workqueue unbound (Harsh Shandilya) [36b8b8f26adb]
* drivers:cpufreq:fp-boost Add missing newline (Harsh Shandilya) [7dbf230d4f68]
* cpufreq:fp-boost: Fix checkpatch warnings (Harsh Shandilya) [eb11f3a1975c]
* fp-boost: Avoid unnecessory boost sequence (ShreyansLodha) [c584794f0a2a]
* fp-boost: Decrease duration to 2 seconds (Joe Maples) [d972612a1bac]
* fp-boost: Set priority to max (Joe Maples) [dda4ea5cb224]
* cpufreq: Introduce fingerprint boost driver (Joe Maples) [75e7054ed8b5]
* star: disable input boosting (Jesse Chan) [e71729e700e4]
* yarpiin_defconfig: update (Slawek) [e43907ad04d7]
* state_notifier: add related track into decon_core code. (yarpiin) [94a30423c4bc]
* state_notifier: fix cherrypick (Slawek) [755de5c602ed]
* drivers: Add state notifier driver (Pranav Vashi) [ae95607401c8]
* block: remove WQ_POWER_EFFICIENT from kblockd (Matias Bjørling) [72aaff5be7ae]
* block: queue work on power efficient wq (Viresh Kumar) [4826e5c9437c]
* BFQ-v8r10 (Paolo Valente) [51201ad299a7]
* BFQ-v8r10-rc1 (Paolo Valente) [7e056830be2f]
* BUGFIX: Remove problematic check on max service duration (Paolo Valente) [94351cb81250]
* BUGFIX: Handle failure of weight-counter allocation (Paolo Valente) [58d41ea858b8]
* BFQ-v8r9 (Paolo Valente) [d2e39e825372]
* BUGFIX: remove use of bfq queues after free (Paolo Valente) [b664126fbf22]
* BFQ-v8r8 (Paolo Valente) [35c7e5b0db8c]
* block/bfq-cgroup: fix bfq_bic_update_cgroup() API (Oleksandr Natalenko) [ad24e0b180c9]
* BFQ-v8r8-rc2 (Paolo Valente) [9649f9a1ef70]
* Avoid a second dispatch in case of budget exhaustion (Paolo Valente) [fab2f50d611c]
* BFQ-v8r8-rc1 (Paolo Valente) [8772af3967c9]
* Better tune weight-raising for slow flash-based devices (Luca Miccio) [8da29ff16ee1]
* Fix check of the percentage of sequential dispatches (Paolo Valente) [625dfb9ae9d3]
* BUGFIX: Put async queues on exit also without cgroups (Paolo Valente) [59e38200c6ed]
* Add a ton of forgotten static qualifiers (Paolo Valente) [fb96561af4c1]
* Turn into BFQ-v8r7 for 4.9.0 (Paolo Valente) [056e18276cb6]
* block, bfq: add Early Queue Merge (EQM) to BFQ-v7r11 for 4.5.0 (Mauro Andreolini) [b37e859d75b5]
* block: introduce the BFQ-v7r11 I/O sched for 4.5.0 (Paolo Valente) [8d2f78bbac71]
* block: cgroups, kconfig, build bits for BFQ-v7r11-4.5.0 (Paolo Valente) [be2ac7e1b7dc]
* block: maple: Convert to State Notifier (Joe Maples) [62ba5ff8b15f]
* maple-iosched: cast parameters to unsigned_long (flar2) [a8eee808c6ea]
* block: add MAPLE I/O scheduler and set it as default (frap129) [12852d370400]
* zen-iosched: change fifo_batch to 16 (flar2) [36736026ff37]
* zen-iosched: cast parameters to unsigned long (flar2) [e917c418ba58]
* block: add zen scheduler (andip71) [5a8b76879d9b]
* sio-iosched: cast parameters to unsigned long (flar2) [0cf51e9a7a5f]
* SIO: update for linux 3.18 (flar2) [c716e6bc1833]
* fiops-iosched: update for linux 4.9 (flar2) [512a14e51bbe]
* FIOPS: update for linux 3.18 (flar2) [a67c10fa204d]
* Add SIO and FIOPS i/o schedulers (flar2) [3fcc92be5bf2]
* yarpiin_defconfig: disable FREQVAR_TUNE (Slawek) [f7ef082b0ccc]
* cpufreq: Kconfig: Make FREQVAR_TUNE as an option (FAROVITUS) [de14ae69f0cb]
* arm64: strcmp: align to 64B cache line (Yuanyuan Zhong) [516dd09ac5fa]
* kernel: Fix potential refcount leak in su check (Tom Marshall) [0265f748e3fa]
* kernel: Only expose su when daemon is running (Tom Marshall) [de47fcb8ed19]
* Optimized Console FrameBuffer for upto 70% increase in Performance (gustavoss) [6932a1c43d1b]
* arm64: lib: memory utilities optimization (Hong-Mei Li) [41c7731e1351]
* proc: Remove additional SafetyNet flags from /proc/cmdline (Sultanxda) [78a8cb4be58a]
* proc: Remove verifiedbootstate flag from /proc/cmdline (Sultanxda) [4e2c9b7742ab]
* workqueue: change permissions to allow control of wq_power_efficient toggle (Slawek) [9537d1695179]
* block:sysfs: change permissions (Slawek) [9af7554f7442]
* disable crc check (flar2) [ca983862dbad]
* dts: build only 26 dtb (Slawek) [9662fa123d5b]
* yarpiin_defconfig: update (Slawek) [788c2bd5a451]
* Introduce Exynos dtbtool to the Linux build system (jcadduono) [e3d1a220e614]
* fix standalone compilation (Slawek) [ec4043dd6137]
* cpufreq: exynos-acme: Use struct kobj_attribute instead of struct global_attr (FAROVITUS) [82a10ac5c307]
* add yarpiin build stuff (Slawek) [934807da4bc2]
* Linux 4.9.171 (Greg Kroah-Hartman) [31cbc2bd928a]
* kernel/sysctl.c: fix out-of-bounds access when setting file-max (Will Deacon) [a098146847a2]
* Revert "locking/lockdep: Add debug_locks check in __lock_downgrade()" (Greg Kroah-Hartman) [319e08070f3a]
* i2c-hid: properly terminate i2c_hid_dmi_desc_override_table[] array (Linus Torvalds) [bc44ecce6d16]
* percpu: stop printing kernel addresses (Matteo Croce) [2447e2e75957]
* ALSA: info: Fix racy addition/deletion of nodes (Takashi Iwai) [2180a9bbbf88]
* mm/vmstat.c: fix /proc/vmstat format for CONFIG_DEBUG_TLBFLUSH=y CONFIG_SMP=n (Konstantin Khlebnikov) [c4fb90affd87]
* device_cgroup: fix RCU imbalance in error case (Jann Horn) [a5424cf7b0ee]
* sched/fair: Limit sched_cfs_period_timer() loop to avoid hard lockup (Phil Auld) [3136574cfd55]
* Revert "kbuild: use -Oz instead of -Os when using clang" (Matthias Kaehlcke) [1375a58f3a73]
* perf/x86/amd: Add event map for AMD Family 17h (Kim Phillips) [f82a436a415a]
* mac80211: do not call driver wake_tx_queue op during reconfig (Felix Fietkau) [c13e00893a38]
* rt2x00: do not increment sequence number while re-transmitting (Vijayakumar Durai) [9fd25cde8d9b]
* kprobes: Fix error check when reusing optimized probes (Masami Hiramatsu) [25ea8638350c]
* kprobes: Mark ftrace mcount handler functions nokprobe (Masami Hiramatsu) [c5444107a714]
* x86/kprobes: Verify stack frame on kretprobe (Masami Hiramatsu) [b1f17f73ca50]
* arm64: futex: Restore oldval initialization to work around buggy compilers (Nathan Chancellor) [b5251d6b043d]
* crypto: x86/poly1305 - fix overflow during partial reduction (Eric Biggers) [7291f69bf471]
* Revert "svm: Fix AVIC incomplete IPI emulation" (Suthikulpanit, Suravee) [78b60721ef5d]
* Revert "scsi: fcoe: clear FC_RP_STARTED flags when receiving a LOGO" (Saurav Kashyap) [e391fe02fa5a]
* ALSA: core: Fix card races between register and disconnect (Takashi Iwai) [2ab255eaa44b]
* staging: comedi: ni_usb6501: Fix possible double-free of ->usb_rx_buf (Ian Abbott) [fbf64dc48427]
* staging: comedi: ni_usb6501: Fix use of uninitialized mutex (Ian Abbott) [52e5ffb963fc]
* staging: comedi: vmk80xx: Fix possible double-free of ->usb_rx_buf (Ian Abbott) [3ab3eb1e5f85]
* staging: comedi: vmk80xx: Fix use of uninitialized semaphore (Ian Abbott) [5cbf553b52b1]
* io: accel: kxcjk1013: restore the range after resume. (he, bo) [11523fc6f800]
* iio: adc: at91: disable adc channel interrupt in timeout case (Georg Ottinger) [ecfafc120e0a]
* iio: ad_sigma_delta: select channel when reading register (Dragos Bogdan) [d6edf6f1bd2c]
* iio/gyro/bmg160: Use millidegrees for temperature scale (Mike Looijmans) [48522be364cb]
* staging: iio: ad7192: Fix ad7193 channel address (Mircea Caprioru) [43c1b886a958]
* KVM: x86: Don't clear EFER during SMM transitions for 32-bit vCPU (Sean Christopherson) [ce8086a51545]
* CIFS: keep FileInfo handle live during oplock break (Aurelien Aptel) [99ae37fe9bc9]
* tpm/tpm_i2c_atmel: Return -E2BIG when the transfer is incomplete (Jarkko Sakkinen) [2bcefb643dc6]
* modpost: file2alias: check prototype of handler (Masahiro Yamada) [a0a053818186]
* modpost: file2alias: go back to simple devtable lookup (Masahiro Yamada) [25633a2c6496]
* mmc: sdhci: Fix data command CRC error handling (Adrian Hunter) [8ec42baa53fd]
* crypto: crypto4xx - properly set IV after de- and encrypt (Christian Lamparter) [7853a0b9e40b]
* ipv4: ensure rcu_read_lock() in ipv4_link_failure() (Eric Dumazet) [78108ba6612c]
* ipv4: recompile ip options in ipv4_link_failure (Stephen Suryaputra) [66354e250b7c]
* vhost: reject zero size iova range (Jason Wang) [e0b3643b0e05]
* team: set slave to promisc if team is already in promisc mode (Hangbin Liu) [b9a95e871dc7]
* tcp: tcp_grow_window() needs to respect tcp_space() (Eric Dumazet) [0945549b49db]
* net: fou: do not use guehdr after iptunnel_pull_offloads in gue_udp_recv (Lorenzo Bianconi) [3d0398cf6cef]
* net: bridge: multicast: use rcu to access port list from br_multicast_start_querier (Nikolay Aleksandrov) [a8315902c038]
* net: bridge: fix per-port af_packet sockets (Nikolay Aleksandrov) [4c0941afdea4]
* net: atm: Fix potential Spectre v1 vulnerabilities (Gustavo A. R. Silva) [12832a0afbb2]
* bonding: fix event handling for stacked bonds (Sabrina Dubroca) [fb09c3025040]
* Linux 4.9.170 (Greg Kroah-Hartman) [1cc60c0aa6ce]
* appletalk: Fix compile regression (Arnd Bergmann) [9cea9b886590]
* net: stmmac: Set dma ring length before enabling the DMA (Lars Persson) [c8e197399567]
* tpm/tpm_crb: Avoid unaligned reads in crb_recv() (Jarkko Sakkinen) [3057c329618d]
* include/linux/swap.h: use offsetof() instead of custom __swapoffset macro (Pi-Hsun Shih) [b936b8c291f8]
* lib/div64.c: off by one in shift (Stanislaw Gruszka) [44550c923ddb]
* appletalk: Fix use-after-free in atalk_proc_exit (YueHaibing) [a24a537867c6]
* ARM: 8839/1: kprobe: make patch_lock a raw_spinlock_t (Yang Shi) [5538959aa6a1]
* lkdtm: Add tests for NULL pointer dereference (Christophe Leroy) [4670db298b81]
* soc/tegra: pmc: Drop locking from tegra_powergate_is_powered() (Dmitry Osipenko) [89cca4f6a2e0]
* iommu/dmar: Fix buffer overflow during PCI bus notification (Julia Cartwright) [e123ed1dd164]
* crypto: sha512/arm - fix crash bug in Thumb2 build (Ard Biesheuvel) [4cea7350e598]
* crypto: sha256/arm - fix crash bug in Thumb2 build (Ard Biesheuvel) [dc03e1797235]
* kernel: hung_task.c: disable on suspend (Vitaly Kuznetsov) [a46e51505682]
* cifs: fallback to older infolevels on findfirst queryinfo retry (Steve French) [603d44581f6f]
* ACPI / SBS: Fix GPE storm on recent MacBookPro's (Ronald Tschalär) [49eea922813b]
* ARM: samsung: Limit SAMSUNG_PM_CHECK config option to non-Exynos platforms (Bartlomiej Zolnierkiewicz) [006f58d828ec]
* HID: i2c-hid: override HID descriptors for certain devices (Julian Sax) [d1f6700ed886]
* serial: uartps: console_setup() can't be placed to init section (Michal Simek) [8a1c8128c5b8]
* f2fs: fix to do sanity check with current segment number (Chao Yu) [57a59987c607]
* 9p locks: add mount option for lock retry interval (Dinu-Razvan Chis-Serban) [182f17e1347c]
* 9p: do not trust pdu content for stat item size (Gertjan Halkes) [42a2249fee63]
* rsi: improve kernel thread handling to fix kernel panic (Siva Rebbagondla) [dd49b4fb68c6]
* gpio: pxa: handle corner case of unprobed device (Robert Jarzmik) [cb85279bac84]
* ext4: prohibit fstrim in norecovery mode (Darrick J. Wong) [d8fee3107e27]
* fix incorrect error code mapping for OBJECTID_NOT_FOUND (Steve French) [c2fad1b1693f]
* x86/hw_breakpoints: Make default case in hw_breakpoint_arch_parse() return an error (Nathan Chancellor) [97b660882b35]
* iommu/vt-d: Check capability before disabling protected memory (Lu Baolu) [c66eeacb225a]
* x86/cpu/cyrix: Use correct macros for Cyrix calls on Geode processors (Matthew Whitehead) [f201beb6f046]
* x86/hpet: Prevent potential NULL pointer dereference (Aditya Pakki) [43bffe92d01d]
* irqchip/mbigen: Don't clear eventid when freeing an MSI (Jianguo Chen) [b2c505ec2a72]
* perf tests: Fix a memory leak in test__perf_evsel__tp_sched_test() (Changbin Du) [9f627b09d132]
* perf tests: Fix a memory leak of cpu_map object in the openat_syscall_event_on_all_cpus test (Changbin Du) [1c2ef55f035e]
* perf evsel: Free evsel->counts in perf_evsel__exit() (Arnaldo Carvalho de Melo) [d317dd4cd853]
* perf hist: Add missing map__put() in error case (Changbin Du) [3766ffae2bc1]
* perf top: Fix error handling in cmd_top() (Changbin Du) [1cae4992fb5c]
* perf build-id: Fix memory leak in print_sdt_events() (Changbin Du) [18953993d252]
* perf config: Fix a memory leak in collect_config() (Changbin Du) [81750d9c4823]
* perf config: Fix an error in the config template documentation (Changbin Du) [b23739a40829]
* tools/power turbostat: return the exit status of a command (David Arcari) [2e7adf04f66f]
* thermal/int340x_thermal: fix mode setting (Matthew Garrett) [c74b1b114ac0]
* thermal/int340x_thermal: Add additional UUIDs (Matthew Garrett) [3d224febe2bc]
* ALSA: opl3: fix mismatch between snd_opl3_drum_switch definition and declaration (Colin Ian King) [4e5c736d5f0b]
* mmc: davinci: remove extraneous __init annotation (Arnd Bergmann) [6c387c91db3a]
* IB/mlx4: Fix race condition between catas error reset and aliasguid flows (Jack Morgenstein) [c66592be9f44]
* ALSA: sb8: add a check for request_region (Kangjie Lu) [61e3f2a2e47a]
* ALSA: echoaudio: add a check for ioremap_nocache (Kangjie Lu) [fbe233bdf14a]
* ext4: report real fs size after failed resize (Lukas Czerner) [491965ed40ab]
* ext4: add missing brelse() in add_new_gdb_meta_bg() (Lukas Czerner) [95ad0136655d]
* perf/core: Restore mmap record type correctly (Stephane Eranian) [3087f87138a9]
* ARC: u-boot args: check that magic number is correct (Eugeniy Paltsev) [58f5463379a8]
* Linux 4.9.169 (Greg Kroah-Hartman) [542150b299c6]
* PCI: Add function 1 DMA alias quirk for Marvell 9170 SATA controller (Andre Przywara) [56fdccac4faf]
* xtensa: fix return_address (Max Filippov) [a477034b7d08]
* sched/fair: Do not re-read ->h_load_next during hierarchical load calculation (Mel Gorman) [b6ec30194917]
* xen: Prevent buffer overflow in privcmd ioctl (Dan Carpenter) [a16996ff8239]
* parisc: Use cr16 interval timers unconditionally on qemu (Helge Deller) [40dfa6dc1693]
* arm64: futex: Fix FUTEX_WAKE_OP atomic ops with non-zero result value (Will Deacon) [c4533451025a]
* ARM: dts: at91: Fix typo in ISC_D0 on PC9 (David Engraf) [e8fb12e20bc6]
* virtio: Honour 'may_reduce_num' in vring_create_virtqueue (Cornelia Huck) [97d193b244d7]
* genirq: Respect IRQCHIP_SKIP_SET_WAKE in irq_chip_set_wake_parent() (Stephen Boyd) [5b642531448a]
* block: do not leak memory in bio_copy_user_iov() (Jérôme Glisse) [0e092b73aad9]
* Btrfs: do not allow trimming when a fs is mounted with the nologreplay option (Filipe Manana) [c4603eababbc]
* ASoC: fsl_esai: fix channel swap issue when stream starts (S.j. Wang) [adfff3bab229]
* include/linux/bitrev.h: fix constant bitrev (Arnd Bergmann) [ea1d8e7b1d9c]
* parisc: Detect QEMU earlier in boot process (Helge Deller) [6fd93a4540fb]
* ALSA: seq: Fix OOB-reads from strlcpy (Zubin Mithra) [d4ef91d9e6a3]
* ip6_tunnel: Match to ARPHRD_TUNNEL6 for dev type (Sheena Mira-ato) [71289464a248]
* net: ethtool: not call vzalloc for zero sized memory request (Li RongQing) [2d4bedcab766]
* netns: provide pure entropy for net_hash_mix() (Eric Dumazet) [4bc3717dbfd3]
* net/mlx5e: Add a lock on tir list (Yuval Avnery) [db17d99ff320]
* bnxt_en: Improve RX consumer index validity check. (Michael Chan) [9385986b8b3b]
* bnxt_en: Reset device on RX buffer errors. (Michael Chan) [3ec650ca3015]
* vrf: check accept_source_route on the original netdevice (Stephen Suryaputra) [3c6dea7240ba]
* tcp: Ensure DCTCP reacts to losses (Koen De Schepper) [921e776f8d83]
* sctp: initialize _pad of sockaddr_in before copying to user memory (Xin Long) [e591693b2445]
* qmi_wwan: add Olicard 600 (Bjørn Mork) [3dcb1e85a763]
* openvswitch: fix flow actions reallocation (Andrea Righi) [00608d311cfb]
* net: rds: force to destroy connection if t_sock is NULL in rds_tcp_kill_sock(). (Mao Wenan) [800a62abb798]
* kcm: switch order of device registration to fix a crash (Jiri Slaby) [74d08c9cb366]
* ipv6: sit: reset ip header pointer in ipip6_rcv (Lorenzo Bianconi) [ff4b5d129fd9]
* ipv6: Fix dangling pointer when ipv6 fragment (Junwei Hu) [f79e959b3759]
* tty: ldisc: add sysctl to prevent autoloading of ldiscs (Greg Kroah-Hartman) [4ffbdb43b182]
* tty: mark Siemens R3964 line discipline as BROKEN (Greg Kroah-Hartman) [da45bdf22c2e]
* arm64: kaslr: Reserve size of ARM64_MEMSTART_ALIGN in linear region (Yueyi Li) [fd4a714819f5]
* powerpc/security: Fix spectre_v2 reporting (Michael Ellerman) [48a02e8db963]
* powerpc/fsl: Fix the flush of branch predictor. (Christophe Leroy) [159383c9f68b]
* powerpc/fsl: Fixed warning: orphan section `__btb_flush_fixup' (Diana Craciun) [e7688f1778fa]
* powerpc/fsl: Update Spectre v2 reporting (Diana Craciun) [68e97a5a2d83]
* powerpc/fsl: Enable runtime patching if nospectre_v2 boot arg is used (Diana Craciun) [1207ff96a644]
* powerpc/fsl: Flush branch predictor when entering KVM (Diana Craciun) [0881ba1362f4]
* powerpc/fsl: Flush the branch predictor at each kernel entry (32 bit) (Diana Craciun) [457537287458]
* powerpc/fsl: Flush the branch predictor at each kernel entry (64bit) (Diana Craciun) [ffea9d1ad6d6]
* powerpc/fsl: Add nospectre_v2 command line argument (Diana Craciun) [c008e9d513fa]
* powerpc/fsl: Emulate SPRN_BUCSR register (Diana Craciun) [96fccec05ab9]
* powerpc/fsl: Fix spectre_v2 mitigations reporting (Diana Craciun) [cc24289a640c]
* powerpc/fsl: Add macro to flush the branch predictor (Diana Craciun) [4402cde04b07]
* powerpc/fsl: Add infrastructure to fixup branch predictor flush (Diana Craciun) [8028e83f5507]
* powerpc/powernv: Query firmware for count cache flush settings (Michael Ellerman) [99255bbb6380]
* powerpc/pseries: Query hypervisor for count cache flush settings (Michael Ellerman) [75c2dd493754]
* powerpc/64s: Add support for software count cache flush (Michael Ellerman) [9d48416177b0]
* powerpc/64s: Add new security feature flags for count cache flush (Michael Ellerman) [9f32b0117bef]
* powerpc/asm: Add a patch_site macro & helpers for patching instructions (Michael Ellerman) [95f30dd5d8cc]
* powerpc/fsl: Sanitize the syscall table for NXP PowerPC 32 bit platforms (Diana Craciun) [4208e1dbc71f]
* powerpc/fsl: Add barrier_nospec implementation for NXP PowerPC Book3E (Diana Craciun) [f4dec245aba0]
* powerpc/64: Make meltdown reporting Book3S 64 specific (Diana Craciun) [0efb407c411a]
* powerpc/64: Call setup_barrier_nospec() from setup_arch() (Michael Ellerman) [ddbe45489387]
* powerpc/64: Add CONFIG_PPC_BARRIER_NOSPEC (Michael Ellerman) [813bc95771ec]
* powerpc/64: Make stf barrier PPC_BOOK3S_64 specific. (Diana Craciun) [9bac046de666]
* powerpc/64: Disable the speculation barrier from the command line (Diana Craciun) [1103712633a5]
* powerpc64s: Show ori31 availability in spectre_v1 sysfs file not v2 (Michael Ellerman) [5a7c01506f99]
* powerpc/64s: Enhance the information in cpu_show_spectre_v1() (Michal Suchanek) [83ff8dd9f506]
* powerpc/64: Use barrier_nospec in syscall entry (Michael Ellerman) [53b335f144bd]
* powerpc: Use barrier_nospec in copy_from_user() (Michael Ellerman) [413f83980ff6]
* powerpc/64s: Enable barrier_nospec based on firmware settings (Michal Suchanek) [1cf4f215fcfa]
* powerpc/64s: Patch barrier_nospec in modules (Michal Suchanek) [d9b73f514d8c]
* powerpc: Avoid code patching freed init sections (Michael Neuling) [082d8d42ffa0]
* powerpc/64s: Add support for ori barrier_nospec patching (Michal Suchanek) [c287172d160d]
* powerpc/64s: Add barrier_nospec (Michal Suchanek) [99f6a44e58e1]
* powerpc: Fix invalid use of register expressions (Andreas Schwab) [64aeaba431e1]
* lib/string.c: implement a basic bcmp (Nick Desaulniers) [19e9de3ab93b]
* x86/vdso: Drop implicit common-page-size linker flag (Nick Desaulniers) [cc530ed53634]
* x86: vdso: Use $LD instead of $CC to link (Alistair Strachan) [4d01327f5eb5]
* kbuild: clang: choose GCC_TOOLCHAIN_DIR not on LD (Nick Desaulniers) [12fa47111bc3]
* powerpc/tm: Limit TM code inside PPC_TRANSACTIONAL_MEM (Breno Leitao) [7fed2d634275]
* x86/power: Make restore_processor_context() sane (Andy Lutomirski) [5f7d71175000]
* x86/power/32: Move SYSENTER MSR restoration to fix_processor_context() (Andy Lutomirski) [cb9869664a62]
* x86/power/64: Use struct desc_ptr for the IDT in struct saved_context (Andy Lutomirski) [ba73d731c091]
* x86/power: Fix some ordering bugs in __restore_processor_context() (Andy Lutomirski) [f4d7197d6f39]
* Linux 4.9.168 (Greg Kroah-Hartman) [66d64c09c09b]
* ACPI / video: Extend chassis-type detection with a "Lunch Box" check (Hans de Goede) [c2c7ad0aaee6]
* drm/dp/mst: Configure no_stop_bit correctly for remote i2c xfers (Ville Syrjälä) [e067c3772576]
* dmaengine: tegra: avoid overflow of byte tracking (Ben Dooks) [5d191cd14d9a]
* x86/build: Mark per-CPU symbols as absolute explicitly for LLD (Rafael Ávila de Espíndola) [3dfdeceb43f3]
* wlcore: Fix memory leak in case wl12xx_fetch_firmware failure (Zumeng Chen) [0847facbbb96]
* selinux: do not override context on context mounts (Ondrej Mosnacek) [4032a3b6a276]
* x86/build: Specify elf_i386 linker emulation explicitly for i386 objects (George Rimar) [9bba6ea2bf84]
* drm/nouveau: Stop using drm_crtc_force_disable (Daniel Vetter) [1e68fa012477]
* regulator: act8865: Fix act8600_sudcdc_voltage_ranges setting (Axel Lin) [bccadd0e8ca5]
* media: s5p-jpeg: Check for fmt_ver_flag when doing fmt enumeration (Pawe? Chmiel) [a742dc06118a]
* netfilter: physdev: relax br_netfilter dependency (Florian Westphal) [e3479aeade29]
* dmaengine: qcom_hidma: assign channel cookie correctly (Shunyong Yang) [f8d7aeeb9f28]
* dmaengine: imx-dma: fix warning comparison of distinct pointer types (Anders Roxell) [4dc774edc5a9]
* hpet: Fix missing '=' character in the __setup() code of hpet_mmap_enable (Buland Singh) [fe6adb3b8c34]
* HID: intel-ish: ipc: handle PIMR before ish_wakeup also clear PISR busy_clear bit (Song Hongyan) [1543e540aed6]
* soc/tegra: fuse: Fix illegal free of IO base address (Timo Alho) [f07feeb4f004]
* hwrng: virtio - Avoid repeated init of completion (David Tolnay) [d5ce99113c10]
* media: mt9m111: set initial frame size other than 0x0 (Akinobu Mita) [2f1474379cfb]
* powerpc/pseries: Perform full re-add of CPU for topology update post-migration (Nathan Fontenot) [da85a379c667]
* tty: increase the default flip buffer limit to 2*640K (Manfred Schlaegl) [b57b2a131afe]
* ARM: avoid Cortex-A9 livelock on tight dmb loops (Russell King) [5d540668fc1c]
* mt7601u: bump supported EEPROM version (Stanislaw Gruszka) [9ab9c5069abf]
* soc: qcom: gsbi: Fix error handling in gsbi_probe() (Alexey Khoroshilov) [ca25facac648]
* ARM: dts: lpc32xx: Remove leading 0x and 0s from bindings notation (Mathieu Malaterre) [7a19e968cd64]
* efi/memattr: Don't bail on zero VA if it equals the region's PA (Ard Biesheuvel) [961327d04f4f]
* ASoC: fsl-asoc-card: fix object reference leaks in fsl_asoc_card_probe (wen yang) [89b0d3bde381]
* e1000e: fix cyclic resets at link up with active tx (Konstantin Khlebnikov) [cced8cbd18b9]
* cdrom: Fix race condition in cdrom_sysctl_register (Guenter Roeck) [e33eebeecae2]
* fbdev: fbmem: fix memory access if logo is bigger than the screen (Manfred Schlaegl) [52fe7511ee03]
* iw_cxgb4: fix srqidx leak during connection abort (Raju Rangoju) [6186b5632ce7]
* genirq: Avoid summation loops for /proc/stat (Thomas Gleixner) [4185ec6fb15c]
* bcache: improve sysfs_strtoul_clamp() (Coly Li) [5e7ba5baa720]
* bcache: fix input overflow to sequential_cutoff (Coly Li) [06d29e3752b7]
* bcache: fix input overflow to cache set sysfs file io_error_halflife (Coly Li) [b0d5d03f407a]
* usb: f_fs: Avoid crash due to out-of-scope stack ptr access (John Stultz) [e5f0063db86f]
* ALSA: PCM: check if ops are defined before suspending PCM (Ranjani Sridharan) [c34d8d0af3e9]
* ARM: 8833/1: Ensure that NEON code always compiles with Clang (Nathan Chancellor) [b509acd443cf]
* kprobes: Prohibit probing on bsearch() (Andrea Righi) [c80059a24c9e]
* ACPI / video: Refactor and fix dmi_is_desktop() (Hans de Goede) [cf23a263e294]
* iwlwifi: pcie: fix emergency path (Sara Sharon) [f87a1b3220f0]
* leds: lp55xx: fix null deref on firmware load failure (Michal Kazior) [ec4efc062802]
* HID: intel-ish-hid: avoid binding wrong ishtp_cl_device (Hong Liu) [ca14dc3325cc]
* vfs: fix preadv64v2 and pwritev64v2 compat syscalls with offset == -1 (Aurelien Jarno) [11cd35c53f09]
* media: mx2_emmaprp: Correct return type for mem2mem buffer helpers (Ezequiel Garcia) [4fc58af89255]
* media: s5p-g2d: Correct return type for mem2mem buffer helpers (Ezequiel Garcia) [1cf27c0f7ed3]
* media: s5p-jpeg: Correct return type for mem2mem buffer helpers (Ezequiel Garcia) [6c04bc4dd09c]
* media: sh_veu: Correct return type for mem2mem buffer helpers (Ezequiel Garcia) [602a725ae34c]
* SoC: imx-sgtl5000: add missing put_device() (Wen Yang) [657b4a597950]
* perf test: Fix failure of 'evsel-tp-sched' test on s390 (Thomas Richter) [3777008e199a]
* scsi: megaraid_sas: return error when create DMA pool failed (Jason Yan) [659ac9abee39]
* IB/mlx4: Increase the timeout for CM cache (Håkon Bugge) [f9d313f22e19]
* mlxsw: spectrum: Avoid -Wformat-truncation warnings (Florian Fainelli) [aefa5763fedf]
* e1000e: Fix -Wformat-truncation warnings (Florian Fainelli) [d35feeb799c3]
* mmc: omap: fix the maximum timeout setting (Aaro Koskinen) [6680c984997c]
* iommu/io-pgtable-arm-v7s: Only kmemleak_ignore L2 tables (Nicolas Boichat) [6a963c41bea8]
* ARM: 8840/1: use a raw_spinlock_t in unwind (Sebastian Andrzej Siewior) [eda46a4200c4]
* coresight: etm4x: Add support to enable ETMv4.2 (Sai Prakash Ranjan) [7628bc6100d1]
* scsi: core: replace GFP_ATOMIC with GFP_KERNEL in scsi_scan.c (Benjamin Block) [185901bca2c5]
* usb: chipidea: Grab the (legacy) USB PHY by phandle first (Paul Kocialkowski) [21001bb4b399]
* crypto: crypto4xx - add missing of_node_put after of_device_is_available (Julia Lawall) [8f6fef8ecca6]
* wil6210: check null pointer in _wil_cfg80211_merge_extra_ies (Alexei Avshalom Lazar) [e14a99e80598]
* tools lib traceevent: Fix buffer overflow in arg_eval (Tony Jones) [93b85c120748]
* fs: fix guard_bio_eod to check for real EOD errors (Carlos Maiolino) [894da3e6e811]
* jbd2: fix invalid descriptor block checksum (luojiajun) [d22cb1ea31b1]
* cifs: Fix NULL pointer dereference of devname (Yao Liu) [3259abec4a7b]
* dm thin: add sanity checks to thin-pool and external snapshot creation (Jason Cai (Xiang Feng)) [e2718de276e3]
* cifs: use correct format characters (Louis Taylor) [57b287823174]
* f2fs: do not use mutex lock in atomic context (Sahitya Tummala) [89ea2a48c2ba]
* ocfs2: fix a panic problem caused by o2cb_ctl (Jia Guo) [9c3cb4c35ca5]
* mm/slab.c: kmemleak no scan alien caches (Qian Cai) [6925c08010dd]
* mm/vmalloc.c: fix kernel BUG at mm/vmalloc.c:512! (Uladzislau Rezki (Sony)) [eca6348f9a90]
* mm/page_ext.c: fix an imbalance with kmemleak (Qian Cai) [a94af9fc8c89]
* mm/cma.c: cma_declare_contiguous: correct err handling (Peng Fan) [dacc2dc9233d]
* scsi: hisi_sas: Set PHY linkrate when disconnected (John Garry) [3a63a49fc63d]
* enic: fix build warning without CONFIG_CPUMASK_OFFSTACK (Arnd Bergmann) [61d661a8188b]
* sysctl: handle overflow for file-max (Christian Brauner) [53bff3de5d38]
* include/linux/relay.h: fix percpu annotation in struct rchan (Luc Van Oostenryck) [b689e90262f2]
* gpio: gpio-omap: fix level interrupt idling (Russell King) [facb39c136e5]
* tracing: kdb: Fix ftdump to not sleep (Douglas Anderson) [e0fb37fdd234]
* h8300: use cc-cross-prefix instead of hardcoding h8300-unknown-linux- (Masahiro Yamada) [08e1e3c87c51]
* i2c: core-smbus: prevent stack corruption on read I2C_BLOCK_DATA (Jeremy Compostella) [374de8fd1498]
* mm: mempolicy: make mbind() return -EIO when MPOL_MF_STRICT is specified (Yang Shi) [c361924cfd99]
* tty/serial: atmel: RS485 HD w/DMA: enable RX after TX is stopped (Razvan Stefanescu) [3a71202062fa]
* tty/serial: atmel: Add is_half_duplex helper (Razvan Stefanescu) [0ff405d89ec0]
* lib/int_sqrt: optimize initial value compute (Peter Zijlstra) [57f60884a5c7]