forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.historical
4171 lines (3586 loc) · 169 KB
/
changelog.historical
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
linux (2.6.28-9.31) jaunty; urgency=low
[ Andy Whitcroft ]
* SAUCE: cpufreq-nforce2: probe failures are not errors
- LP: #332170
* SAUCE: mmc: add MODALIAS linkage for MMC/SD devices
- LP: #30335
* remove test-suspend script
- LP: #333856
[ Kees Cook ]
* handle relative paths in modules.dep
Fixes 2.6.28-9.30 FTBS.
[ Upstream Kernel Changes ]
* ricoh_mmc: Handle newer models of Ricoh controllers
-- Tim Gardner <tim.gardner@canonical.com> Wed, 11 Mar 2009 08:19:24 -0600
linux (2.6.28-9.30) jaunty; urgency=low
[ Amit Kucheria ]
* ARM:mx51 Add SoC and board support for mx51 platforms
* ARM:mx51 Add CONFIG_ARCH_MXC_CANONICAL to disable parts of Freescale's
code
* MMC: Add support for 8-bit cards
* Add ARM:MX51 SoC support to the build system
* ARM: Make ARM arch aware of ubuntu/ drivers
* ARM: Add imx51 configuration
* Disable d-i modules for imx51 and mv78xx0
* Disable Apparmor on boot for ARM
* Updating imx51 config
[ Jason Liu ]
* Do not use OOB with MLC NAND
[ Richard Zhu ]
* Support the eMMC4.3 card
[ Rob Herring ]
* ARM: Add more cache memory types macros
[ Tim Gardner ]
* Set CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y for i386/amd64/lpia
[ Manoj Iyer ]
* Enable CONFIG_RTL8187SE=m
[ Upstream Kernel Changes ]
* USB: EHCI: slow down ITD reuse
- LP: #329437
-- Tim Gardner <tim.gardner@canonical.com> Sun, 08 Mar 2009 14:14:15 -0600
linux (2.6.28-9.29) jaunty; urgency=low
[ Andy Whitcroft ]
* link-headers -- only link directories which do not already exist
- LP: #315252
[ Daniel Marjamäki ]
* SAUCE: (drop after 2.6.28) netxen: fix memory leak in
drivers/net/netxen_nic_init.c
- LP: #330813
[ Dhananjay Phadke ]
* SAUCE: (drop after 2.6.28) netxen: fix endianness in firmware commands
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: fix ipv6 offload and tx cleanup
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: fix link speed reporting for some
boards
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: firmware init fix
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: cleanup mac list on driver unload
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: hold tx lock while sending firmware
commands
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: handle dma mapping failures
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: avoid invalid iounmap
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: include ipv6.h (fixes build failure)
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: fix vlan tso/checksum offload
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: reduce memory footprint
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: revert jumbo ringsize
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: fix msi-x interrupt handling
- LP: #330813
* SAUCE: (drop after 2.6.28) netxen: remove pcie workaround
- LP: #330813
[ Hannes Eder ]
* SAUCE: (drop after 2.6.28) drivers/net/netxen: fix sparse warnings: use
NULL pointer instead of plain integer
- LP: #330813
[ Huaxu Wan ]
* SAUCE: report rfkill changes event if interface is down
- LP: #193970
[ Tim Gardner ]
* MV78XX0 must specify a target in the vars definition.
[ Upstream Kernel Changes ]
* Revert "ext4: wait on all pending commits in ext4_sync_fs()"
* jbd2: Fix return value of jbd2_journal_start_commit()
* jbd2: Avoid possible NULL dereference in
jbd2_journal_begin_ordered_truncate()
* ext4: Fix to read empty directory blocks correctly in 64k
* ext4: Fix lockdep warning
* ext4: Initialize preallocation list_head's properly
* ext4: Implement range_cyclic in ext4_da_writepages instead of
write_cache_pages
* ext4: Fix NULL dereference in ext4_ext_migrate()'s error handling
* ext4: Add fallback for find_group_flex
* ext4: Fix deadlock in ext4_write_begin() and ext4_da_write_begin()
* Added mv78xx0 flavor
-- Tim Gardner <tim.gardner@canonical.com> Fri, 06 Mar 2009 06:13:31 -0700
linux (2.6.28-8.28) jaunty; urgency=low
[ Alexey Starikovskiy ]
* SAUCE: ACPI: EC: Limit workaround for ASUS notebooks even more
- LP: #288385
[ Scott James Remnant ]
* SAUCE: Auto-load esp module when device opened.
* SAUCE: Auto-load bridge module when socket opened.
* SAUCE: Auto-load af_netlink module when socket opened.
* SAUCE: Auto-load wanrouter module when socket opened.
* SAUCE: Auto-load ip_queue module when socket opened.
* SAUCE: Auto-load ip6_queue module when socket opened.
* SAUCE: Auto-load cn module when socket opened.
* SAUCE: Auto-load scsi_transport_iscsi module when socket opened.
* SAUCE: Auto-load ftl module when device opened.
* SAUCE: Auto-load pcd module when device opened.
* SAUCE: Auto-load pf module when device opened.
* SAUCE: Auto-load nftl module when device opened.
* SAUCE: Auto-load mousedev module when psaux device opened.
* SAUCE: Auto-load mousedev module when /dev/input/mice opened.
* SAUCE: Auto-load rng-core module when device opened.
* SAUCE: Auto-load openprom module when device opened.
* SAUCE: Auto-load applicom module when device opened.
* SAUCE: Auto-load toshiba module when device opened.
* SAUCE: Auto-load cyclades module when device opened.
* SAUCE: Auto-load riscom8 module when device opened.
* SAUCE: Auto-load specialix module when device opened.
* SAUCE: Auto-load videodev module when device opened.
* SAUCE: Auto-load i2c_dev module when device opened.
* SAUCE: Auto-load mtdchar module when device opened.
* SAUCE: Auto-load pt module when device opened.
* SAUCE: Auto-load pg module when device opened.
* SAUCE: Auto-load cdc_acm module when device opened.
* SAUCE: Auto-load msr module when device opened.
* SAUCE: Auto-load cpuid module when device opened.
* SAUCE: quickcam: Enable double-buffering by default
* SAUCE: libata: Ignore HPA by default.
* SAUCE: hostap: Change initial operation mode to managed (infra)
* SAUCE: floppy: Provide a PnP device table in the module.
- LP: #255651
* SAUCE: Auto-load mwave module when device opened.
* Build CONFIG_FUSE_FS into kernel, not as module.
[ Stefan Bader ]
* Enable build of ext4 as a module on LPIA
- LP: #331848
[ Tim Gardner ]
* Update configs to fix LPIA FTBS
-- Tim Gardner <tim.gardner@canonical.com> Thu, 05 Mar 2009 10:43:24 -0700
linux (2.6.28-8.27) jaunty; urgency=low
[ Amit Kucheria ]
* Updating configs (arm:ixp4xx)
[ Andy Whitcroft ]
* SAUCE: enable Intel HDMI output
[ Manoj Iyer ]
* SAUCE: Added quirk for Linksys WUSB600N USB wifi-n networking adapter
- LP: #323473
[ Steve Beattie ]
* fix apparmor memory leak on unlinked file ops
- LP: #329489
[ Tim Gardner ]
* SAUCE: Dell XPS710 reboot quirk
- LP: #323592
* SAUCE: (drop after 2.6.28) ieee80211: Add infrastructure to obsolete
scan results
- LP: #336055
* Add modules.order to the linux-image package.
[ Upstream Kernel Changes ]
* iwlwifi: fix time interval misuse in iwl_poll_{direct_}bit
* x86: only scan the root bus in early PCI quirks
- LP: #267295
* ALSA: hda - Intel HDMI audio support
* ALSA: hda - Fix unused function in patch_intelhdmi.c
* ALSA: handle SiI1392 HDMI codec in patch_intelhdmi.c
* ALSA: hda-intel: reorder HDMI audio enabling sequence
* ALSA: introduce snd_print_pcm_rates()
* ALSA: create hda_eld.c for ELD routines and proc interface
* ALSA: ELD proc interface for HDMI sinks
* ALSA: hda: make standalone hdmi_fill_audio_infoframe()
* ALSA: hda: make global snd_print_channel_allocation()
* ALSA: hda: HDMI channel allocations for audio infoframe
* ALSA: hda: HDMI channel mapping cleanups
* ALSA: hda: minor code cleanups
* ALSA: hda: rename sink_eld to hdmi_eld
* ALSA: hda - Release ELD proc file
* ALSA: hda - minor HDMI code cleanups
* ALSA: hda - report selected CA index for Audio InfoFrame
* ALSA: hda - Add Intel vendor id string
-- Tim Gardner <tim.gardner@canonical.com> Wed, 25 Feb 2009 14:23:46 -0700
linux (2.6.28-8.26) jaunty; urgency=low
[ Amit Kucheria ]
* Updating configs (armel:ixp4xx)
- LP: #331510
[ Tim Gardner ]
* Add more missing modules
-- Tim Gardner <tim.gardner@canonical.com> Tue, 24 Feb 2009 06:58:53 -0700
linux (2.6.28-8.25) jaunty; urgency=low
[ Scott James Remnant ]
* SAUCE: Prefer powernow-k8 to acpi-cpufreq
* Change CONFIG_X86_P4_CLOCKMOD to be a module again.
[ Tim Gardner ]
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Initialize the new
group descriptor when resizing the filesystem"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add sanity check
to make_indexed_dir"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: only use
i_size_high for regular files"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add sanity checks
for the superblock before mounting the filesystem"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix
s_dirty_blocks_counter if block allocation failed with nodelalloc"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Init the complete
page while building buddy cache"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Don't allow new
groups to be added during block allocation"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: mark the
blocks/inode bitmap beyond end of group as used"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Use new
buffer_head flag to check uninit group bitmaps initialization"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix the race
between read_inode_bitmap() and ext4_new_inode()"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix race between
read_block_bitmap() and mark_diskspace_used()"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: don't use blocks
freed but not yet committed in buddy cache init"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: cleanup mballoc
header files"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Use
EXT4_GROUP_INFO_NEED_INIT_BIT during resize"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add blocks added
during resize to bitmap"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Don't overwrite
allocation_context ac_status"
* Revert "SAUCE: (revert before 2.6.28.y update) jbd2: Add barrier not
supported test to journal_wait_on_commit_record"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Widen type of
ext4_sb_info.s_mb_maxs[]"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: avoid ext4_error
when mounting a fs with a single bg"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix the delalloc
writepages to allocate blocks at the right offset."
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: tone down
ext4_da_writepages warnings"
* Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add support for
non-native signed/unsigned htree hash algorithms"
* Enabled X86_ACPI_CPUFREQ=y
[ Upstream Kernel Changes ]
* ath9k: quiet harmless ForceXPAon messages
- LP: #321474
* [WATCHDOG] iTCO_wdt: fix SMI_EN regression 2
- LP: #314050
* pid: implement ns_of_pid
* mqueue: fix si_pid value in mqueue do_notify()
* powerpc/vsx: Fix VSX alignment handler for regs 32-63
* sata_nv: give up hardreset on nf2
* Fix Intel IOMMU write-buffer flushing
* SCSI: libiscsi: fix iscsi pool leak
* x86/cpa: make sure cpa is safe to call in lazy mmu mode
* sched: SCHED_OTHER vs SCHED_IDLE isolation
* x86, vm86: fix preemption bug
* Add support for VT6415 PCIE PATA IDE Host Controller
* ext2/xip: refuse to change xip flag during remount with busy inodes
* 3c505: do not set pcb->data.raw beyond its size
* Bluetooth: Fix TX error path in btsdio driver
* ext4: Add support for non-native signed/unsigned htree hash algorithms
* ext4: tone down ext4_da_writepages warnings
* ext4: Fix the delalloc writepages to allocate blocks at the right
offset.
* ext4: avoid ext4_error when mounting a fs with a single bg
* ext4: Widen type of ext4_sb_info.s_mb_maxs[]
* jbd2: Add barrier not supported test to journal_wait_on_commit_record
* ext4: Don't overwrite allocation_context ac_status
* ext4: Add blocks added during resize to bitmap
* ext4: Use EXT4_GROUP_INFO_NEED_INIT_BIT during resize
* ext4: cleanup mballoc header files
* ext4: don't use blocks freed but not yet committed in buddy cache init
* ext4: Fix race between read_block_bitmap() and mark_diskspace_used()
* ext4: Fix the race between read_inode_bitmap() and ext4_new_inode()
* ext4: Use new buffer_head flag to check uninit group bitmaps
initialization
* ext4: mark the blocks/inode bitmap beyond end of group as used
* ext4: Don't allow new groups to be added during block allocation
* ext4: Init the complete page while building buddy cache
* ext4: Fix s_dirty_blocks_counter if block allocation failed with
nodelalloc
* ext4: Add sanity checks for the superblock before mounting the
filesystem
* ext4: only use i_size_high for regular files
* ext4: Add sanity check to make_indexed_dir
* ext4: Initialize the new group descriptor when resizing the filesystem
* Fix longstanding "error: storage size of '__mod_dmi_device_table' isn't
known"
* Linux 2.6.28.7
-- Tim Gardner <tim.gardner@canonical.com> Thu, 19 Feb 2009 06:45:55 -0700
linux (2.6.28-8.24) jaunty; urgency=low
[ Scott James Remnant ]
* Change CPU_FREQ_DEFAULT_GOV_ONDEMAND to y
* SAUCE: Link acpi-cpufreq.o first
[ Tim Gardner ]
* Build in CPU Frequency scaling drivers
-- Tim Gardner <tim.gardner@canonical.com> Wed, 18 Feb 2009 06:12:24 -0700
linux (2.6.28-8.23) jaunty; urgency=low
[ Andy Whitcroft ]
* include the kernel configuration in the sub-flavour images
- LP: #328859
[ Tim Gardner ]
* Revert "SAUCE: (drop after 2.6.28) [eCryptfs] Regression in unencrypted
filename symlinks" in favor of upstream commit.
* Fix compile issues with qc-usb
* SAUCE: (remove after 2.6.28) V4L/DVB (10216): saa7127: fix broken
S-Video with saa7129
- LP: #329267
[ Upstream Kernel Changes ]
* Subject:SAUCE: LP#193970 iwlagn: fix hw-rfkill while the interface is
down
- LP: #193970
* x86, vmi: put a missing paravirt_release_pmd in pgd_dtor
* nbd: fix I/O hang on disconnected nbds
* mac80211: restrict to AP in outgoing interface heuristic
* w1: w1 temp calculation overflow fix
* zd1211rw: adding 0ace:0xa211 as a ZD1211 device
* zd1211rw: treat MAXIM_NEW_RF(0x08) as UW2453_RF(0x09) for TP-Link
WN322/422G
* parport: parport_serial, don't bind netmos ibm 0299
* syscall define: fix uml compile bug
* kernel-doc: fix syscall wrapper processing
* Fix page writeback thinko, causing Berkeley DB slowdown
* write-back: fix nr_to_write counter
* writeback: fix break condition
* mm: rearrange exit_mmap() to unlock before arch_exit_mmap
* powerpc/fsl-booke: Fix mapping functions to use phys_addr_t
* lockd: fix regression in lockd's handling of blocked locks
* sctp: Fix crc32c calculations on big-endian arhes.
* sctp: Correctly start rtx timer on new packet transmissions.
* sctp: Properly timestamp outgoing data chunks for rtx purposes
* net: Fix frag_list handling in skb_seq_read
* net: Fix OOPS in skb_seq_read().
* drivers/net/skfp: if !capable(CAP_NET_ADMIN): inverted logic
* ipv4: fix infinite retry loop in IP-Config
* net: Fix userland breakage wrt. linux/if_tunnel.h
* net: packet socket packet_lookup_frame fix
* packet: Avoid lock_sock in mmap handler
* sungem: Soft lockup in sungem on Netra AC200 when switching interface
up
* udp: Fix UDP short packet false positive
* udp: increments sk_drops in __udp_queue_rcv_skb()
* ipv6: Disallow rediculious flowlabel option sizes.
* ipv6: Copy cork options in ip6_append_data
* net: 4 bytes kernel memory disclosure in SO_BSDCOMPAT gsopt try #2
* sky2: fix hard hang with netconsoling and iface going up
* tun: Add some missing TUN compat ioctl translations.
* tun: Fix unicast filter overflow
* virtio_net: Fix MAX_PACKET_LEN to support 802.1Q VLANs
* tcp: splice as many packets as possible at once
* tcp: Fix length tcp_splice_data_recv passes to skb_splice_bits.
* sparc: Enable syscall wrappers for 64-bit (CVE-2009-0029)
* sparc64: Annotate sparc64 specific syscalls with SYSCALL_DEFINEx()
* ALSA: hda - Add missing terminator in slave dig-out array
* ALSA: mtpav - Fix initial value for input hwport
* HID: adjust report descriptor fixup for MS 1028 receiver
* ide/libata: fix ata_id_is_cfa() (take 4)
* libata: fix EH device failure handling
* netfilter: fix tuple inversion for Node information request
* netfilter: xt_sctp: sctp chunk mapping doesn't work
* x86: microcode_amd: fix wrong handling of equivalent CPU id
* ide-cd: fix DMA for non bio-backed requests
* net: Fix data corruption when splicing from sockets.
* Linux 2.6.28.6
* eCryptfs: Regression in unencrypted filename symlinks
-- Tim Gardner <tim.gardner@canonical.com> Mon, 16 Feb 2009 06:43:51 -0700
linux (2.6.28-8.22) jaunty; urgency=low
[ Amit Kucheria ]
* Remove perm-blacklist
[ Andy Whitcroft ]
* SAUCE: psmouse/synaptics: ensure we reset the device on resume
- LP: #317270
[ Tim Gardner ]
* Add lpia to getabi script
* SAUCE: tracer for sreadahead
-- Amit Kucheria <amit.kucheria@ubuntu.com> Fri, 13 Feb 2009 15:23:21 +0200
linux (2.6.28-8.21) jaunty; urgency=low
[ Andy Whitcroft ]
* SAUCE: switch the Asus Pundit P1-AH2 to old acpi sleep ordering
- LP: #327267
[ Tim Gardner ]
* Added LPIA arch support
* Added libdrm-dev as a 'Replaces' to linux-libc-dev
* SAUCE: LPIA support for 9202 HDA Sigmatel codec
* SAUCE: Add an X86_LPIA Kconfig option
* SAUCE: UHCI USB quirk for resume
* SAUCE: LPIA Reboot fix for Intel Crownbeach development boards
* SAUCE: LPIA Logical reset of USB port on resume
* Set CONFIG_WIRELESS_OLD_REGULATORY=n, added wireless-crda
as an install dependency.
[ Upstream Kernel Changes ]
* Revert "Revert "x86, early_ioremap: fix fencepost error""
- LP: #312554
* drm/i915: capture last_vblank count at IRQ uninstall time too
- LP: #320813
* drm/i915: add get_vblank_counter function for GM45
- LP: #320813
* Staging: comedi: fix Kbuild
* Staging: meilhaus: fix Kbuild
* Staging: android: binder: fix arm build errors
* Staging: android: timed_gpio: Fix build to build on kernels after
2.6.25.
* Staging: android: fix build error on 64bit boxes
* Staging: android: Add lowmemorykiller documentation.
* Staging: android: task_get_unused_fd_flags: fix the wrong usage of
tsk->signal
* staging: agnx: drivers/staging/agnx/agnx.h needs <linux/io.h>
* Staging: usbip: usbip_start_threads(): handle kernel_thread failure
* Staging: poch: fix verification of memory area
* Documentation: move DMA-mapping.txt to Doc/PCI/
* sgi-xp: fix writing past the end of kzalloc()'d space
* do_wp_page: fix regression with execute in place
* wait: prevent exclusive waiter starvation
* shm: fix shmctl(SHM_INFO) lockup with !CONFIG_SHMEM
* revert "rlimit: permit setting RLIMIT_NOFILE to RLIM_INFINITY"
* prevent kprobes from catching spurious page faults
* sound: usb-audio: handle wMaxPacketSize for FIXED_ENDPOINT devices
* md: Ensure an md array never has too many devices.
* md: Fix a bug in linear.c causing which_dev() to return the wrong
device.
* ACPI: Enable bit 11 in _PDC to advertise hw coord
* ACPI: dock: Don't eval _STA on every show_docked sysfs read
* ieee1394: ohci1394: increase AT req. retries, fix ack_busy_X from
Panasonic camcorders and others
* firewire: ohci: increase AT req. retries, fix ack_busy_X from Panasonic
camcorders and others
* firewire: sbp2: fix DMA mapping leak on the failure path
* firewire: sbp2: add workarounds for 2nd and 3rd generation iPods
* ieee1394: sbp2: add workarounds for 2nd and 3rd generation iPods
* module: remove over-zealous check in __module_get()
* x86: APIC: enable workaround on AMD Fam10h CPUs
* eeepc-laptop: fix oops when changing backlight brightness during
eeepc-laptop init
* eeepc-laptop: Add support for extended hotkeys
* e1000: fix bug with shared interrupt during reset
* e1000: Fix PCI enable to honor the need_ioport flag
* agp/intel: Fix broken ® symbol in device name.
* ALSA: hda - Add quirk for FSC Amilo Xi2550
* ALSA: hda - Add missing COEF initialization for ALC887
* ALSA: hda - Add missing initialization for ALC272
* asus_acpi: Add R1F support
* panasonic-laptop: fix X[ ARRAY_SIZE(X) ]
* ACPI: Skip the first two elements in the _BCL package
* ACPI: proc_dir_entry 'video/VGA' already registered
* ACPI: disable ACPI cleanly when bad RSDP found
* ACPICA: Fix table entry truncation calculation
* PCI: properly clean up ASPM link state on device remove
* PCI: return error on failure to read PCI ROMs
* seq_file: move traverse so it can be used from seq_read
* seq_file: fix big-enough lseek() + read()
* serial: set correct baud_base for Oxford Semiconductor Ltd EXSYS
EX-41092 Dual 16950 Serial adapter
* Add support for '8-port RS-232 MIC-3620 from advantech'
* mm: fix error case in mlock downgrade reversion
* elf core dump: fix get_user use
* ACPI: video: Fix reversed brightness behavior on ThinkPad SL series
* ipw2200: fix scanning while associated
* XFS: set b_error from bio error in xfs_buf_bio_end_io
* Revert USB: option: add Pantech cards
* USB: option: New mobile broadband modems to be supported
* USB: new id for ti_usb_3410_5052 driver
* USB: two more usb ids for ti_usb_3410_5052
* USB: usb-storage: add Pentax to the bad-vendor list
* sata_via: Add VT8261 support
* nbd: do not allow two clients at the same time
* sctp: Fix another socket race during accept/peeloff
* Linux 2.6.28.5
-- Tim Gardner <tim.gardner@canonical.com> Mon, 09 Feb 2009 16:11:28 -0700
linux (2.6.28-7.20) jaunty; urgency=low
[ Tim Gardner ]
* SAUCE: Input: atkbd - Samsung NC10 key repeat fix
[ Upstream Kernel Changes ]
* Manually revert "mlock: downgrade mmap sem while populating mlocked
regions"
* xen: make sysfs files behave as their names suggest
* sata_mv: fix 8-port timeouts on 508x/6081 chips
* m68knommu: set NO_DMA
* PCI/MSI: bugfix/utilize for msi_capability_init()
* x86: use early clobbers in usercopy*.c
* netfilter: ctnetlink: fix scheduling while atomic
* orinoco: move kmalloc(..., GFP_KERNEL) outside spinlock in
orinoco_ioctl_set_genie
* fbdev/atyfb: Fix DSP config on some PowerMacs & PowerBooks
* kmalloc: return NULL instead of link failure
* sata_nv: rename nv_nf2_hardreset()
* sata_nv: fix MCP5x reset
* sata_nv: ck804 has borked hardreset too
* Fix memory corruption in console selection
* Add enable_ms to jsm driver
* nfsd: only set file_lock.fl_lmops in nfsd4_lockt if a stateowner is
found
* nfsd: Ensure nfsv4 calls the underlying filesystem on LOCKT
* iwlwifi: fix rs_get_rate WARN_ON()
* p54: fix lm87 checksum endianness
* p54: fix p54_read_eeprom to cope with tx_hdr_len
* p54usb: rewriting rx/tx routines to make use of usb_anchor's facilities
* minstrel: fix warning if lowest supported rate index is not 0
* PCI: irq and pci_ids patch for Intel Tigerpoint DeviceIDs
* cpuidle: Add decaying history logic to menu idle predictor
* ACPI: Avoid array address overflow when _CST MWAIT hint bits are set
* video: always update the brightness when poking "brightness"
* Newly inserted battery might differ from one just removed, so update of
battery info fields is required.
* ACPI: Do not modify SCI_EN directly
* dlm: initialize file_lock struct in GETLK before copying conflicting
lock
* sata_mv: Fix chip type for Hightpoint RocketRaid 1740/1742
* ACPICA: Allow multiple backslash prefix in namepaths
* Linux 2.6.28.4
-- Tim Gardner <tim.gardner@canonical.com> Sat, 07 Feb 2009 18:53:42 -0700
linux (2.6.28-7.19) jaunty; urgency=low
* Fix missing modules FTBS
-- Tim Gardner <tim.gardner@canonical.com> Thu, 05 Feb 2009 15:28:15 -0700
linux (2.6.28-7.18) jaunty; urgency=low
[ Alok Kataria ]
* SAUCE: (drop after 2.6.29) x86: add a synthetic TSC_RELIABLE feature
bit
- LP: #319945
* SAUCE: (drop after 2.6.29) x86: add X86_FEATURE_HYPERVISOR feature bit
- LP: #319945
* SAUCE: (drop after 2.6.29) x86: Hypervisor detection and get tsc_freq
from hypervisor
- LP: #319945
* SAUCE: (drop after 2.6.29) x86: Add a synthetic TSC_RELIABLE feature
bit.
- LP: #319945
* SAUCE: (drop after 2.6.29) x86: Skip verification by the watchdog for
TSC clocksource.
- LP: #319945
* SAUCE: (drop after 2.6.29) x86: VMware: Fix vmware_get_tsc code
- LP: #319945
* SAUCE: (drop after 2.6.29) x86: vmware: look for DMI string in the
product serial key
- LP: #319945
[ Andy Whitcroft ]
* SAUCE: toshiba_acpi -- pull in current -dev version of driver
- LP: #269831
* SAUCE: toshiba_acpi -- add acpi hotkey kernel thread
- LP: #269831
* move toshiba laptops back from tlsup to toshiba_acpi
- LP: #269831
[ Aneesh Kumar K.V ]
* SAUCE: (revert before 2.6.28.y update) ext4: Fix the delalloc
writepages to allocate blocks at the right offset.
* SAUCE: (revert before 2.6.28.y update) ext4: avoid ext4_error when
mounting a fs with a single bg
* SAUCE: (revert before 2.6.28.y update) ext4: Don't overwrite
allocation_context ac_status
* SAUCE: (revert before 2.6.28.y update) ext4: Add blocks added during
resize to bitmap
* SAUCE: (revert before 2.6.28.y update) ext4: Use
EXT4_GROUP_INFO_NEED_INIT_BIT during resize
* SAUCE: (revert before 2.6.28.y update) ext4: cleanup mballoc header
files
* SAUCE: (revert before 2.6.28.y update) ext4: don't use blocks freed but
not yet committed in buddy cache init
* SAUCE: (revert before 2.6.28.y update) ext4: Fix race between
read_block_bitmap() and mark_diskspace_used()
* SAUCE: (revert before 2.6.28.y update) ext4: Fix the race between
read_inode_bitmap() and ext4_new_inode()
* SAUCE: (revert before 2.6.28.y update) ext4: Use new buffer_head flag
to check uninit group bitmaps initialization
* SAUCE: (revert before 2.6.28.y update) ext4: mark the blocks/inode
bitmap beyond end of group as used
* SAUCE: (revert before 2.6.28.y update) ext4: Don't allow new groups to
be added during block allocation
* SAUCE: (revert before 2.6.28.y update) ext4: Init the complete page
while building buddy cache
* SAUCE: (revert before 2.6.28.y update) ext4: Fix s_dirty_blocks_counter
if block allocation failed with nodelalloc
[ Hannes Eder ]
* SAUCE: (drop after 2.6.29) x86: vmware - fix sparse warnings
- LP: #319945
[ Luke Yelavich ]
* hid modules have hyphens instead of underscores in their names
[ Mark Fasheh ]
* SAUCE: (revert before 2.6.28.y update) jbd2: Add BH_JBDPrivateStart
[ Theodore Ts'o ]
* SAUCE: (revert before 2.6.28.y update) ext4: Add support for non-native
signed/unsigned htree hash algorithms
* SAUCE: (revert before 2.6.28.y update) ext4: tone down
ext4_da_writepages warnings
* SAUCE: (revert before 2.6.28.y update) jbd2: Add barrier not supported
test to journal_wait_on_commit_record
* SAUCE: (revert before 2.6.28.y update) ext4: Add sanity checks for the
superblock before mounting the filesystem
* SAUCE: (revert before 2.6.28.y update) ext4: only use i_size_high for
regular files
* SAUCE: (revert before 2.6.28.y update) ext4: Add sanity check to
make_indexed_dir
* SAUCE: (revert before 2.6.28.y update) jbd2: On a __journal_expect()
assertion failure printk "JBD2", not "EXT3-fs"
* SAUCE: (revert before 2.6.28.y update) ext4: Initialize the new group
descriptor when resizing the filesystem
[ Tyler Hicks ]
* SAUCE: (drop after 2.6.28) [eCryptfs] Regression in unencrypted
filename symlinks
- LP: #322532
[ Upstream Kernel Changes ]
* Input: atkbd - broaden the Dell DMI signatures
- LP: #261721
* ti_usb_3410_5052: support alternate firmware
* ath5k: fix mesh point operation
* mac80211: decrement ref count to netdev after launching mesh discovery
* inotify: clean up inotify_read and fix locking problems
* fuse: destroy bdi on umount
* fuse: fix missing fput on error
* fuse: fix NULL deref in fuse_file_alloc()
* x86, mm: fix pte_free()
* klist.c: bit 0 in pointer can't be used as flag
* sysfs: fix problems with binary files
* x86: fix page attribute corruption with cpa()
* USB: fix toggle mismatch in disable_endpoint paths
* sound: virtuoso: enable UART on Xonar HDAV1.3
* USB: usbmon: Implement compat_ioctl
* USB: fix char-device disconnect handling
* USB: storage: add unusual devs entry
* alpha: nautilus - fix compile failure with gcc-4.3
* alpha: fix vmalloc breakage
* resources: skip sanity check of busy resources
* rtl8187: Add termination packet to prevent stall
* it821x: Add ultra_mask quirk for Vortex86SX
* libata: pata_via: support VX855, future chips whose IDE controller use
0x0571
* serial_8250: support for Sealevel Systems Model 7803 COMM+8
* drm: stash AGP include under the do-we-have-AGP ifdef
* Fix OOPS in mmap_region() when merging adjacent VM_LOCKED file segments
* bnx2x: Block nvram access when the device is inactive
* ext3: Add sanity check to make_indexed_dir
* rtl8187: Fix error in setting OFDM power settings for RTL8187L
* epoll: drop max_user_instances and rely only on max_user_watches
* gpiolib: fix request related issue
* sgi-xpc: Remove NULL pointer dereference.
* sgi-xpc: ensure flags are updated before bte_copy
* include/linux: Add bsg.h to the Kernel exported headers
* ALSA: hda - Fix PCM reference NID for STAC/IDT analog outputs
* ALSA: hda - add another MacBook Pro 4, 1 subsystem ID
* ALSA: hda - Add quirk for HP DV6700 laptop
* crypto: authenc - Fix zero-length IV crash
* crypto: ccm - Fix handling of null assoc data
* x86, pat: fix reserve_memtype() for legacy 1MB range
* x86, pat: fix PTE corruption issue while mapping RAM using /dev/mem
* PCI hotplug: fix lock imbalance in pciehp
* dmaengine: fix dependency chaining
* NET: net_namespace, fix lock imbalance
* relay: fix lock imbalance in relay_late_setup_files
* Linux 2.6.28.3
* ALSA: Enable SPDIF output on ALC655
* ALSA: hda - Add ASUS V1Sn support
* ALSA: hda - support detecting HD Audio devices with PCI class code
* ALSA: hda: alc883 model for ASUS P5Q-EM boards
* ALSA: hda - Add quirk for MSI 7260 mobo
* ALSA: hda - Add quirk for Sony VAIO VGN-SR19XN
* ALSA: oxygen: add Claro halo support
* ALSA: hda - Add a new function to seek for a codec ID
* ALSA: patch_sigmatel: Add missing Gateway entries and autodetection
* ALSA: hda - More fixes on Gateway entries
* ALSA: hda - Add MCP67 HDMI support
* ALSA: hda - fix name for ALC1200
* LSA: hda - Add HP Acacia detection
* ALSA: hda - Add quirk for HP 2230s
* ALSA: hda - Add quirk for Dell Inspiron Mini9
* ALSA: hda - add support for Intel DX58SO board
* ALSA: hda - Fix silent headphone output on Panasonic CF-74
* ALSA: USB quirk for Logitech Quickcam Pro 9000 name
* ALSA: hda - add quirks for some 82801H variants to use ALC883_MITAC
[ Yasunori Goto ]
* SAUCE: (revert before 2.6.28.y update) ext4: Widen type of
ext4_sb_info.s_mb_maxs[]
-- Tim Gardner <tim.gardner@canonical.com> Mon, 02 Feb 2009 23:07:13 -0700
linux (2.6.28-6.17) jaunty; urgency=low
[ Amit Kucheria ]
* Updating configs: ARMEL/versatile
-- Amit Kucheria <amit.kucheria@ubuntu.com> Fri, 30 Jan 2009 13:36:59 +0200
linux (2.6.28-6.16) jaunty; urgency=low
[ Luke Yelavich ]
* Add hid quirks to input-modules udeb
[ Tim Gardner ]
* Revert "[arm] Fix kexec on ARM by properly calling the relocation
function". This patch was deemed 'bogus' by Russell King on the
ARM mailing list.
[ Upstream Kernel Changes ]
* PCI: keep ASPM link state consistent throughout PCIe hierarchy
* security: introduce missing kfree
* rt2x00: add USB ID for the Linksys WUSB200.
* p54usb: Add USB ID for Thomson Speedtouch 121g
* lib/idr.c: use kmem_cache_zalloc() for the idr_layer cache
* sgi-xp: eliminate false detection of no heartbeat
* sched: fix update_min_vruntime
* IA64: Turn on CONFIG_HAVE_UNSTABLE_CLOCK
* sound: virtuoso: do not overwrite EEPROM on Xonar D2/D2X
* ALSA: hda - Add quirk for another HP dv5
* ALSA: hda - Fix HP dv5 mic input
* ALSA: hda - Don't reset HP pinctl in patch_sigmatel.c
* ALSA: hda - make laptop-eapd model back for AD1986A
* drivers/net/irda/irda-usb.c: fix buffer overflow
* usb-storage: add last-sector hacks
* usb-storage: set CAPACITY_HEURISTICS flag for bad vendors
* pkt_sched: sch_htb: Fix deadlock in hrtimers triggered by HTB
* ipv6: Fix fib6_dump_table walker leak
* sctp: Avoid memory overflow while FWD-TSN chunk is received with bad
stream ID
* pkt_sched: cls_u32: Fix locking in u32_change()
* r6040: fix wrong logic in mdio code
* r6040: save and restore MIER correctly in the interrupt routine
* r6040: bump release number to 0.19
* tcp: don't mask EOF and socket errors on nonblocking splice receive
* p54usb: fix traffic stalls / packet drop
* netfilter: x_tables: fix match/target revision lookup
* netfilter: ebtables: fix inversion in match code
* netfilter: nf_conntrack: fix ICMP/ICMPv6 timeout sysctls on big-endian
* dell_rbu: use scnprintf() instead of less secure sprintf()
* powerpc: is_hugepage_only_range() must account for both 4kB and 64kB
slices
* hwmon: (abituguru3) Fix CONFIG_DMI=n fallback to probe
* mm: write_cache_pages cyclic fix
* mm: write_cache_pages early loop termination
* mm: write_cache_pages writepage error fix
* mm: write_cache_pages integrity fix
* mm: write_cache_pages cleanups
* mm: write_cache_pages optimise page cleaning
* mm: write_cache_pages terminate quickly
* mm: write_cache_pages more terminate quickly
* mm: do_sync_mapping_range integrity fix
* mm: direct IO starvation improvement
* fs: remove WB_SYNC_HOLD
* fs: sync_sb_inodes fix
* fs: sys_sync fix
* Linux 2.6.28.2
-- Tim Gardner <tim.gardner@canonical.com> Sun, 25 Jan 2009 13:36:16 -0700
linux (2.6.28-5.15) jaunty; urgency=low
[ Tim Gardner ]
* Revert "Enabled CONFIG_PID_NS=y for i386/amd64"
Somehow this commit also reverted the 7 prior commits (which is bad).
* Enabled CONFIG_PID_NS=y for i386/amd64 (version 2)
-- Tim Gardner <tim.gardner@canonical.com> Thu, 22 Jan 2009 13:48:34 -0700
linux (2.6.28-5.14) jaunty; urgency=low
[ Ben Collins ]
* lirc_gpio: Forward ported to current kernel (jaunty)
* configs: Enable LIRC_GPIO on 64-bit/32-bit x86
- LP: #298791
[ Jeff Layton ]
* SAUCE: cifs: make sure we allocate enough storage for socket address
- LP: #318565
[ Tim Gardner ]
* check-abi: Return success when ABI skip is requested and no ABI files exist.
This ought to fix the armel FTBS.
-- Tim Gardner <tim.gardner@canonical.com> Thu, 22 Jan 2009 06:42:49 -0700
linux (2.6.28-5.13) jaunty; urgency=low
[ Andy Whitcroft ]
* Revert "SAUCE: don't use buggy _BCL/_BCM/_BQC for backlight control"
[ Tim Gardner ]
* Fix udeb generation breakage caused by the previous armel versatile
flavour config update.
-- Tim Gardner <tim.gardner@canonical.com> Wed, 21 Jan 2009 12:38:35 -0700
linux (2.6.28-5.12) jaunty; urgency=low
[ Ante ]
* Update drbd to 8.3.0
[ Dave Airlie ]
* i915/drm: provide compat defines for userspace for certain struct
[ Eric Anholt ]
* drm/i915: Don't double-unpin buffers if we take a signal in
* drm/i915: Don't complain when interrupted while pinning in execbuffers.
* drm/i915: Don't allow objects to get bound while VT switched.
[ Jani Monoses ]
* Fix webcam having USB ID 0ac8:303b
- LP: #292086
[ Jesse Barnes ]
* drm/i915: set vblank enabled flag correctly across IRQ
* drm/i915: don't enable vblanks on disabled pipes
[ Michael Casadevall ]
* [arm] Fix kexec on ARM by properly calling the relocation function
[ Tim Gardner ]
* Enabled CONFIG_PID_NS=y for i386/amd64
* SAUCE: Increase ATA_TMOUT_PMP_SRST_WAIT to 5 seconds.
- LP: #318978
* Update armel versatile config
- LP: #314789
* Enabled CONFIG_RT2860=m for i386/amd64
* Enabled CONFIG_RT2870=m for i386/amd64
[ Upstream Kernel Changes ]
* Input: atkbd - add keyboard quirk for HP Pavilion ZV6100 laptop
- LP: #291878
* ALSA: hda - Add quirk for another HP dv7
* ALSA: hda - Add quirk for HP6730B laptop
* ALSA: caiaq - Fix Oops with MIDI
* ALSA: hda - Fix typos for AD1882 codecs
* x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies
* x86: default to SWIOTLB=y on x86_64
* CIFS: make sure that DFS pathnames are properly formed
* ring-buffer: prevent false positive warning
* ring-buffer: fix dangling commit race
* iwlwifi: use GFP_KERNEL to allocate Rx SKB memory
* tx493[89]ide: Fix length for __ide_flush_dcache_range
* tx4939ide: Do not use zero count PRD entry
* SCSI: eata: fix the data buffer accessors conversion regression
* USB: emi26: fix oops on load
* x86, UV: remove erroneous BAU initialization
* x86: fix incorrect __read_mostly on _boot_cpu_pda
* vmalloc.c: fix flushing in vmap_page_range()
* fs: symlink write_begin allocation context fix
* cgroups: fix a race between cgroup_clone and umount
* dm raid1: fix error count
* dm log: fix dm_io_client leak on error paths
* minix: fix add link's wrong position calculation
* md: fix bitmap-on-external-file bug.
* sched_clock: prevent scd->clock from moving backwards, take #2
* devices cgroup: allow mkfifo
* SCSI: aha152x_cs: Fix regression that keeps driver from using shared