-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathkernel-source.changes
2651 lines (2058 loc) · 117 KB
/
kernel-source.changes
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
-------------------------------------------------------------------
Fri Jan 4 22:38:59 CST 2013 - [email protected]
Fix a bug in ext4 when inode free races with dirty page writing.
- patches.taobao/ext4-handle-writeback-of-inodes-which-are-being-reed.patch:
-------------------------------------------------------------------
Wed Dec 26 00:16:45 CST 2012 - [email protected]
Fix a bug in ext4 when tid is too much large.
- patches.taobao/ext4-initialize-fsync-transaction-ids-in-ext4_new_inode.patch:
-------------------------------------------------------------------
Sat Dec 8 02:02:47 CST 2012 - [email protected]
Add support in perf to diagnose java jit.
- patches.taobao/perf-jit-symbol-annotation-220.patch:
-------------------------------------------------------------------
Sat Dec 8 01:17:47 CST 2012 - [email protected]
Let netoops skip the lock check as we will oops soon.
- patches.taobao/netoops_025_continue_to_dump_without_get_lock_when_panic.patch:
-------------------------------------------------------------------
Sat Dec 8 01:11:29 CST 2012 - [email protected]
Turn of delalloc for ext4 by default since we met with many
regressions in search, mysql.
- patches.taobao/turn-off-delalloc-by-default.patch:
-------------------------------------------------------------------
Thu Nov 29 23:56:56 CST 2012 - [email protected]
Fix a bug for ksoftirqd high cpu usage.
sched: Add irq_{enter,exit}() to scheduler_ipi()
- patches.taobao/sched-fix-ksoftirqd-high-usage.patch:
-------------------------------------------------------------------
Fri Nov 30 00:02:55 CST 2012 - [email protected]
activate page according to vm_enable_legacy_mm.
- patches.taobao/activate-mapped-page-in-inactive-list.patch:
-------------------------------------------------------------------
Thu Dec 6 23:30:16 CST 2012 - [email protected]
Let writeback not agressively like what 18 does.
- patches.taobao/fixup-bdi-writeback-task-burn-cpu-cycles.patch:
-------------------------------------------------------------------
Mon Oct 8 19:17:36 CST 2012 - [email protected]
Add SO_REUSEPORT to fix load imbalance in listening.
- patches.taobao/net_backport_SO_REUSEPORT_patch_to_fix_load_imbalance.patch:
-------------------------------------------------------------------
Tue Sep 4 11:08:35 CST 2012 - [email protected]
add rpmbuild wrapper.
- rpm/README: for most useful options
- rpm/fullbuild.sh: a full build script
- scripts/package.py:
-------------------------------------------------------------------
Fri Aug 24 01:59:11 CST 2012 - [email protected]
Add a new loadavg fix from Peter.
- Add it back in series.conf.
-------------------------------------------------------------------
Fri Aug 24 00:39:05 CST 2012 - [email protected]
Build a version for PE team, so remove the loadavg patch first.
-
-------------------------------------------------------------------
Fri Aug 24 00:09:48 CST 2012 - [email protected]
Add a new loadavg fix from Peter.
- patches.taobao/loadavg-bug-fix-004.patch:
-------------------------------------------------------------------
Tue Aug 21 15:52:38 CST 2012 - [email protected]
Add a Epoch in kernel spec.
Add a Epoch in kernel spec so that taobao's kernel can have a precedence
than redhat's kernel.
- rpm/kernel.spec.in:
-------------------------------------------------------------------
Tue Aug 14 23:58:59 CST 2012 - [email protected]
Fix a bug reported by hadoop.
http://bugfree.corp.taobao.com/bug/186626
- patches.taobao/ext4-mark-mutli-page-io-complete-on-mapping-failure-backport.patch:
-------------------------------------------------------------------
Wed Aug 1 19:30:02 CST 2012 - [email protected]
netoops: Add a sysctl fs.bio_netoops so that we can enable/disable
io error netoops online.
- patches.taobao/add-sysctl-to-control-netoops-in-bio-error.patch:
-------------------------------------------------------------------
Fri Jul 6 02:48:47 CST 2012 - [email protected]
mm: forward port 2.6.18 memory management algorithm.
- patches.taobao/mm_forward_port_18_memory_management_algorithm.patch:
-------------------------------------------------------------------
Wed Jun 20 19:04:25 CST 2012 - [email protected]
Fix a patch generation error.
- patches.taobao/net-rt-stat-skip-retransmitted-connections.patch:
-------------------------------------------------------------------
Wed Jun 20 18:52:46 CST 2012 - [email protected]
net:rt stat skip retransmitted connections.
- patches.taobao/net-rt-stat-skip-retransmitted-connections.patch:
-------------------------------------------------------------------
Wed Jun 20 00:18:18 CST 2012 - [email protected]
- Upgrade to RHEL6.2 2.6.32-220.23.1 kernel,
- redhat-kernel-changelog:
- redhat-kernel-source/*
- redhat-kernel-version:
- Rebase patches by 2.6.32-220.23.1 kernel,
- patches.taobao/0001-ext4-Move-extra-inode-read-to-a-new-function.patch:
- patches.taobao/0003-ext4-Add-the-basic-function-for-inline-data-support.patch:
- patches.taobao/0004-ext4-Add-read-support-for-inline-data.patch:
- patches.taobao/0005-ext4-Add-normal-write-support-for-inline-data.patch:
- patches.taobao/0006-ext4-Add-journalled-write-support-for-inline-data.patch:
- patches.taobao/0007-ext4-Add-delalloc-support-for-inline-data.patch:
- patches.taobao/0022-ext4-Fix-ext4_read_inline_page-bug.patch:
- patches.taobao/0023-ext4-add-truncate-supoort-with-inline-data.patch:
- patches.taobao/bigalloc-025-attempt-to-fix-race-in-bigalloc-code-path.patch:
- patches.taobao/ext4-0003-iostat-account-read-metadata-requests-in-buffered-io.patch:
- patches.taobao/ext4-0004-iostat-account-read-data-requests-in-buffered-io.patch:
- patches.taobao/ext4-0005-iostat-account-write-metadata-requests-in-buffered-io.patch:
- patches.taobao/ext4-0006-iostat-account-write-data-requests-in-buffered-io.patch:
- patches.taobao/ext4-0007-iostat-account-requests-in-direct-io.patch:
- patches.taobao/ext4-allocate-delalloc-blocks-before-changing-journa.patch:
- patches.taobao/loadavg-bug-fix-001.patch:
- patches.taobao/loadavg-bug-fix-002.patch:
- patches.taobao/loadavg-bug-fix-003.patch:
-------------------------------------------------------------------
Tue Jun 19 01:47:25 CST 2012 - [email protected]
mm: fix wrong order of operations in __lru_cache_add.
- patches.taobao/mm_fix_wrong_order_of_operations_in__lru_cache_add.patch:
-------------------------------------------------------------------
Fri Jun 8 12:12:13 CST 2012 - [email protected]
Remove this one since it has been merged in RHEL kernel.
- patches.driver/e1000e-1.3.10a.patch: Delete.
-------------------------------------------------------------------
Fri Jun 8 12:11:29 CST 2012 - [email protected]
Update to igb 3.2.10 driver.
Enable igb-fix-default-behavior-of-RSS-parameter-to-automatically-detect-number-of-Rx-Tx-queues.patch
which was comment out before.
- patches.driver/igb-3.2.10.patch:
-------------------------------------------------------------------
Wed Jun 6 15:33:20 CST 2012 - [email protected]
rt-stat: Export sum and total of RT samples in procfs instead of computing average in kernel.
- patches.taobao/net-rt-stat-just-only-export-sum-and-count-RT-samples-in-procfs.patch:
rt-stat: Export sum and total of RT samples in procfs instead
of computing average in kernel.
-------------------------------------------------------------------
Wed Jun 6 06:40:03 CST 2012 - [email protected]
Fix a build error.
- patches.taobao/loadavg-bug-fix-003.patch:
-------------------------------------------------------------------
Tue Jun 5 07:08:19 CST 2012 - [email protected]
Backported bug fixes for the loadavg calculation.
- patches.taobao/loadavg-bug-fix-001.patch:
- patches.taobao/loadavg-bug-fix-002.patch:
- patches.taobao/loadavg-bug-fix-003.patch:
-------------------------------------------------------------------
Wed May 30 01:45:04 CST 2012 - [email protected]
fix a ^extent ext4 file system bug caused by the porting.
- patches.taobao/bigalloc-025-attempt-to-fix-race-in-bigalloc-code-path.patch:
- patches.taobao/bio-0004-ext4-inline-walk_page_buffers-into-mpage_da_submit_i.patch:
-------------------------------------------------------------------
Fri May 25 11:23:08 CST 2012 - [email protected]
- patches.taobao/block-throttle-Add-IO-throttled-information-in-blkcg.patch:
block/throttle: Add IO throttled information in blkcg.
- Update to RHEL6.2 2.6.32-220.17.1 kernel
- patches.taobao/acridafs.patch: Refresh.
- patches.taobao/block-strict-rq_affinity-0001.patch: Refresh.
- patches.taobao/buffer-aio.patch: Refresh.
- patches.taobao/context_switch_per_cpu_stat.patch: Refresh.
- patches.taobao/nohz-0005-sched-Cure-nr_iowait_cpu-users.patch: Refresh.
- patches.taobao/tlock.patch: Refresh.
- redhat-kernel-changelog:
- redhat-kernel-source/
- redhat-kernel-version:
-------------------------------------------------------------------
Sat May 12 02:47:11 CST 2012 - [email protected]
- patches.taobao/ext4-allocate-delalloc-blocks-before-changing-journa.patch:
-------------------------------------------------------------------
Thu May 10 18:57:20 CST 2012 - [email protected]
- patches.taobao/fallocate-expose-stale-data-0001-add-new-flag.patch:
- patches.taobao/fallocate-expose-stale-data-0002-add-in-ext4.patch:
- patches.taobao/fallocate-expose-stale-data-0003-add-sysfs.patch:
- patches.taobao/vmscan-activate-executable-pages-after-first-usage.patch:
-------------------------------------------------------------------
Wed May 9 17:19:05 CST 2012 - [email protected]
- patches.taobao/net-SyncAck-rt_stat-per-IP-address.patch:
fix a NULL pointer deference on calling inet6_sk().
-------------------------------------------------------------------
Tue May 8 18:08:33 CST 2012 - [email protected]
- patches.taobao/exception-trace-always-printk-segfault-info.patch:
exception-trace: always show segfault info in dmesg if
/proc/sys/debug/exception-trace set to 2.
-------------------------------------------------------------------
Mon May 7 21:43:38 CST 2012 - [email protected]
- Correct patch format, add missing module_exit() lines,
- patches.taobao/overlayfs-0006-overlay-filesystem.patch: Refresh.
-------------------------------------------------------------------
Mon May 7 17:25:21 CST 2012 - [email protected]
- Merge overlay file system,
- Update config files.
- patches.taobao/overlayfs-0001-fix-open-umount-race.patch: fix open/umount race.
- patches.taobao/overlayfs-0002-vfs-pass-struct-path-to-__dentry_open.patch:
vfs: pass struct path to __dentry_open().
- patches.taobao/overlayfs-0003-vfs-add-i_op-open.patch: vfs: add i_op->open().
- patches.taobao/overlayfs-0004-vfs-export-do_splice_direct-to-modules.patch:
vfs: export do_splice_direct() to modules.
- patches.taobao/overlayfs-0005-vfs-introduce-clone_private_mount.patch:
vfs: introduce clone_private_mount().
- patches.taobao/overlayfs-0006-overlay-filesystem.patch: overlay filesystem.
- patches.taobao/overlayfs-0007-overlayfs-add-statfs-support.patch:
overlayfs: add statfs support.
- patches.taobao/overlayfs-0008-overlayfs-implement-show_options.patch:
overlayfs: implement show_options.
- patches.taobao/overlayfs-0009-overlay-filesystem-documentation.patch:
overlay: overlay filesystem documentation.
- patches.taobao/overlayfs-0010-fs-limit-filesystem-stacking-depth.patch:
fs: limit filesystem stacking depth.
- patches.taobao/overlayfs-0011-fix-d_count-zero-problem-in-dget-of-ovl_permission.patch:
ovlayfs: fix d_count zero problem in ovl_permission.
- Rebase due to overlayfs get merged.
- patches.taobao/acridafs.patch: Refresh.
-------------------------------------------------------------------
Mon May 7 15:55:30 CST 2012 - [email protected]
- Update config files.
- config/
- patches.taobao/kernel-hookers-service.patch
-------------------------------------------------------------------
Mon May 7 15:26:19 CST 2012 - [email protected]
- patches.taobao/export-necessary-kernel-symbols-for-kernel-modules.patch:
export symbols needed for external kernel module (renamed and updated from
- patches.taobao/kernel-hookers-service.patch: kernel hookers service.
- patches.taobao/net-SyncAck-rt_stat-per-IP-address.patch: net:
SyncAck rt_stat per IP address statistic.
-------------------------------------------------------------------
Mon May 7 15:25:26 CST 2012 - [email protected]
- patches.taobao/export-necessary-kernel-symbols-for-kernel-modules.patch:
export symbols needed for external kernel module.
- patches.taobao/kernel-hookers-service.patch: kernel hookers
service.
- patches.taobao/net-SyncAck-rt_stat-per-IP-address.patch: net:
SyncAck rt_stat per IP address statistic.
-------------------------------------------------------------------
Wed May 2 21:05:20 CST 2012 - [email protected]
- patches.taobao/sched_x86-Fix-overflow-in-cyc2ns_offset.patch:
Fix a minor TSC overflow when booting a kernel by kexec.
-------------------------------------------------------------------
Fri Apr 20 14:06:31 CST 2012 - [email protected]
- Update to RHEL6 2.6.32-220.13.1
- Update config files.
- redhat-kernel-changelog:
- redhat-kernel-source/:
- redhat-kernel-version:
- Rebase patches to RHEL6 2.6.32-220.13.1
- patches.taobao/buffer-aio.patch:
- patches.taobao/ext4-io-error-guard-for-file-system-protection-on-broken-storage-device.patch:
- patches.taobao/mm-0001-compaction-checks-correct-fragmentation-index.patch:
- patches.taobao/mm-0003-compaction-abort-compaction-if-too-many-pages-are.patch:
- patches.taobao/mm-0006-compaction.c-avoid-double-mem_cgroup_del_lru.patch:
- patches.taobao/mm-add-a-sysctl-to-decide-whether-to-do-context-readahead-or-not.patch:
- patches.taobao/mm-sysctl-mlock-flush-pagevec.patch: Refresh.
- patches.taobao/net-tcp-timewait-dynamic-config.patch: Refresh.
- patches.taobao/nohz-0006-procfs-do-not-overflow-get_idle-iowait_time-for-nohz.patch:
- patches.taobao/tlock.patch:
- Delete patch due to we don't need it for s390 and ia64
- patches.taobao/nohz-0007-procfs-do-not-confuse-jiffies-with-cputime64_t.patch: Delete.
- Merge patches from master branch
- patches.taobao/acridafs.patch: acridafs: port acridafs kernel module to 2.6.32 version.
- patches.taobao/block-Make-cfq_target_latency-tunable-through-sysfs.patch:
block: Make cfq_target_latency tunable through sysfs.
-------------------------------------------------------------------
Wed Mar 28 18:29:46 CST 2012 - [email protected]
- patches.taobao/mm-sysctl-mlock-flush-pagevec.patch:
set sysctl_mlock_flush_pagevec default to 0 (disable)
-------------------------------------------------------------------
Wed Mar 28 13:50:04 CST 2012 - [email protected]
- series.conf: add patches.driver/igb-fix-default-behavior-of-RSS-parameter-to-automatically-detect-number-of-Rx-Tx-queues.patch
-------------------------------------------------------------------
Wed Mar 21 12:10:41 CST 2012 - [email protected]
- More fixes for bugfree#152721 (idle & iowait counter overflow)
- patches.taobao/nohz-0001-fix-update_ts_time_stat-idle-accouting.patch:
Update references (BF#152721).
- patches.taobao/nohz-0002-make-idle-iowait-counter-update-conditional.patch:
Update references (BF#152721).
- patches.taobao/nohz-0003-proc-consider-nohz-when-printing-idle-and-iowait-times.patch:
Update references (BF#152721).
- patches.taobao/nohz-0004-add-nsecs_to_jiffies64.patch: backport:
add nsecs_to_jiffies64() and nsecs_to_jiffies() (BF#152721).
- patches.taobao/nohz-0005-sched-Cure-nr_iowait_cpu-users.patch:
sched: Cure nr_iowait_cpu() users (BF#152721).
- patches.taobao/nohz-0006-procfs-do-not-overflow-get_idle-iowait_time-for-nohz.patch:
- patches.taobao/nohz-0007-procfs-do-not-confuse-jiffies-with-cputime64_t.patch:
-------------------------------------------------------------------
Fri Mar 9 17:00:50 CST 2012 - [email protected]
- Update to RHEL6 2.6.32-220.7.1 kernel
- Update config files.
- patches.taobao/cfq_avoid_async_write_starve.patch: Refresh.
- patches.taobao/cfq_request_deadline_policy.patch: Refresh.
- patches.taobao/context_switch_per_cpu_stat.patch: Refresh.
- patches.taobao/pagecache_hit_accounting_003_mm_add_accouting_for_pagecache.patch: Refresh.
- patches.taobao/pagecache_hit_accounting_004_add_readpages_accounting.patch: Refresh.
- patches.taobao/tlock.patch: Refresh.
- patches.taobao/writeback-improve-001-stop-on-wrap-linux_mm_page-writeback.patch:
writeback: quit on wrap for .range_cyclic (write_cache_pages).
- patches.taobao/writeback-improve-002-relax-busy-overwrites.patch:
writeback: delay periodic work on wrap.
- redhat-kernel-changelog:
- redhat-kernel-version:
- redhat-kernel-source/
-------------------------------------------------------------------
Fri Mar 9 01:32:23 CST 2012 - [email protected]
Add i/o stat for ext4.
- patches.taobao/ext4-0001-iostat-add-counters-and-functions.patch:
- patches.taobao/ext4-0002-iostat-define-wrapper-functions-for-buffer-layer.patch:
- patches.taobao/ext4-0003-iostat-account-read-metadata-requests-in-buffered-io.patch:
- patches.taobao/ext4-0004-iostat-account-read-data-requests-in-buffered-io.patch:
- patches.taobao/ext4-0005-iostat-account-write-metadata-requests-in-buffered-io.patch:
- patches.taobao/ext4-0006-iostat-account-write-data-requests-in-buffered-io.patch:
- patches.taobao/ext4-0007-iostat-account-requests-in-direct-io.patch:
- patches.taobao/ext4-0008-iostat-show-the-result-of-accouting.patch:
-------------------------------------------------------------------
Thu Mar 1 15:42:59 CST 2012 - [email protected]
- patches.taobao/kvm-set-KSM_RUN_STOP-by-default.patch: kvm:
set KSM_RUN_STOP by default.
-------------------------------------------------------------------
Mon Feb 27 16:11:09 CST 2012 - [email protected]
- patches.taobao/context_switch_per_cpu_stat.patch: Refresh.
- patches.taobao/tlock.patch: Refresh.
- enable patches.taobao/fix-type-of-cputime_to_usecs-in-asm-generic-cputime.h.patch
-------------------------------------------------------------------
Mon Feb 27 15:45:25 CST 2012 - [email protected]
- Update config files: modify ACPI_APET_GHES from m to y in -debug.config
-------------------------------------------------------------------
Fri Feb 24 19:00:43 CST 2012 - [email protected]
- Update to RHEL 6.2 linux-2.6.32-220.4.2 kernel
- Update config files.
- redhat-kernel-source/kabitool:
- redhat-kernel-source/kernel.spec:
- redhat-kernel-source/linux-2.6.32/Documentation/kernel-parameters.txt:
- redhat-kernel-source/linux-2.6.32/arch/x86/include/asm/timer.h:
- redhat-kernel-source/linux-2.6.32/arch/x86/kernel/module.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/kernel/tsc.c:
- redhat-kernel-source/linux-2.6.32/fs/proc/base.c:
- redhat-kernel-source/linux-2.6.32/kabitool:
- redhat-kernel-source/linux-2.6.32/kernel/sched.c:
- redhat-kernel-version:
-------------------------------------------------------------------
Fri Feb 24 16:40:35 CST 2012 - [email protected]
- Add Patch-mainline header to some patches.
-------------------------------------------------------------------
Fri Feb 24 13:24:52 CST 2012 - [email protected]
- Update config files.
-------------------------------------------------------------------
Fri Feb 24 13:16:35 CST 2012 - [email protected]
- delete patches which are merged by redhat already:
- patches.taobao/block-eliminate-potential-for-infinite-loop-in-blkde.patch:
- patches.taobao/block-fix-patch-import-error-in-max_discard_sectors-.patch:
- patches.taobao/ext4-Fix-possible-lost-inode-write-in-no-journal-mode.diff:
- patches.taobao/jbd2_Fix_forever_sleeping_process_in_do_get_write_access.patch:
- patches.taobao/jbd_Fix_forever_sleeping_process_in_do_get_write_access.patch:
- patches.taobao/kgdb-0001-repair-gdbstub-to-match-the-gdbserial-protocol-speci.patch:
- patches.taobao/mm-0005-compaction-ensure-that-the-compaction-free-scanne.patch:
- patches.taobao/perf-Find_get_context-fix-the-per-cpu-counter-check.patch:
- patches.taobao/perf-Validate-cpu-early-in-perf_event_alloc.patch:
-------------------------------------------------------------------
Fri Feb 24 12:55:51 CST 2012 - [email protected]
- Update to Redhat RHEL6.2 linux-2.6.32-220.2.1 kernel.
- Update config files.
- patches.driver/bnx2-disable-msi-when-no-per-vector-masking.patch: Refresh.
- patches.driver/igb-3.2.10.patch: Refresh.
- patches.driver/igb-fix-default-behavior-of-RSS-parameter-to-automatically-detect-number-of-Rx-Tx-queues.patch:
igb: fix default behavior of RSS parameter to automatically detect number of Rx/Tx queues.
- patches.taobao/0001-ext4-Move-extra-inode-read-to-a-new-function.patch: ext4: Move extra inode read to a new function.
- patches.taobao/0002-ext4-export-inline-xattr-functions.patch: ext4: export inline xattr functions.
- patches.taobao/0003-ext4-Add-the-basic-function-for-inline-data-support.patch: ext4: Add the basic function for inline data support.
- patches.taobao/0004-ext4-Add-read-support-for-inline-data.patch: ext4: Add read support for inline data.
- patches.taobao/0005-ext4-Add-normal-write-support-for-inline-data.patch: ext4: Add normal write support for inline data.
- patches.taobao/0006-ext4-Add-journalled-write-support-for-inline-data.patch: ext4: Add journalled write support for inline data.
- patches.taobao/0007-ext4-Add-delalloc-support-for-inline-data.patch: ext4: Add delalloc support for inline data.
- patches.taobao/0008-ext4-Create-a-new-function-ext4_init_new_dir.patch: ext4: Create a new function ext4_init_new_dir.
- patches.taobao/0009-ext4-Refactor-__ext4_check_dir_entry-to-accepts-star.patch: ext4: Refactor __ext4_check_dir_entry to accepts start and size.
- patches.taobao/0010-ext4-Create-__ext4_insert_dentry-for-dir-entry-inser.patch: ext4: Create __ext4_insert_dentry for dir entry insertion.
- patches.taobao/0011-ext4-let-add_dir_entry-handle-inline-data-properly.patch: ext4: let add_dir_entry handle inline data properly.
- patches.taobao/0012-ext4-Let-ext4_readdir-handle-inline-data.patch: ext4: Let ext4_readdir handle inline data.
- patches.taobao/0013-ext4-Create-a-new-function-search_dir.patch: ext4: Create a new function search_dir.
- patches.taobao/0014-ext4-let-ext4_find_entry-handle-inline-data.patch: ext4: let ext4_find_entry handle inline data.
- patches.taobao/0015-ext4-make-ext4_delete_entry-generic.patch: ext4: make ext4_delete_entry generic.
- patches.taobao/0016-ext4-let-ext4_delete_entry-handle-inline-data.patch: ext4: let ext4_delete_entry handle inline data.
- patches.taobao/0017-ext4-let-empty_dir-handle-inline-dir.patch: ext4: let empty_dir handle inline dir.
- patches.taobao/0018-ext4-let-ext4_rename-handle-inline-dir.patch: ext4: let ext4_rename handle inline dir.
- patches.taobao/0019-ext4-Let-fiemap-work-with-inline-data.patch: ext4: Let fiemap work with inline data.
- patches.taobao/0020-ext4-Evict-inline-data-out-if-we-needs-to-strore-xat.patch: ext4: Evict inline data out if we needs to strore xattr
in inode.
- patches.taobao/0021-ext4-Enable-ext4-inline-support.patch: ext4: Enable ext4 inline support.
- patches.taobao/0022-ext4-Fix-ext4_read_inline_page-bug.patch: ext4: Enable ext4 inline support.
- patches.taobao/0023-ext4-add-truncate-supoort-with-inline-data.patch: ext4: add truncate support with inline_data.
- patches.taobao/Makefile_fix_CPP_PATCH_number_assignment_error.patch: - patches.taobao/bigalloc-001-change-block-and-max_blocks-to-map.patch:
ext4: change "block" and "max_blocks" to struct ext4_map_blocks.
- patches.taobao/bigalloc-002-ext4-read-only-support-for-bigalloc-file-systems.patch: ext4: read-only support for bigalloc file systems.
- patches.taobao/bigalloc-003-enforce-bigalloc-restrictions-e.g.-no-online.patch: ext4: enforce bigalloc restrictions (e.g., no online resizing,
etc.).
- patches.taobao/bigalloc-004-convert-instances-of-EXT4_BLOCKS_PER_GROUP-to-EXT4_CLUSTERS_PER_GROUP.patch: ext4: convert instances of EXT4_BLOCKS_PER_GROUP to
EXT4_CLUSTERS_PER_GROUP.
- patches.taobao/bigalloc-005-factor-out-block-group-accounting-into-functions.patch: ext4: factor out block group accounting into functions.
- patches.taobao/bigalloc-006-split-out-ext4_free_blocks_after_init.patch: ext4: split out ext4_free_blocks_after_init().
- patches.taobao/bigalloc-007-bigalloc-changes-to-block-bitmap-initialization-functions.patch: ext4: bigalloc changes to block bitmap initialization functions.
- patches.taobao/bigalloc-008-convert-block-group-relative-offsets-to-use-clusters.patch: ext4: convert block group-relative offsets to use clusters.
- patches.taobao/bigalloc-009-teach-mballoc-preallocation-code-about-bigalloc-clusters.patch: ext4: teach mballoc preallocation code about bigalloc clusters.
- patches.taobao/bigalloc-010-teach-ext4_free_blocks-about-bigalloc-and-clusters.patch: ext4: teach ext4_free_blocks() about bigalloc and clusters.
- patches.taobao/bigalloc-011-teach-ext4_ext_map_blocks-about-the-bigalloc-feature.patch: ext4: teach ext4_ext_map_blocks() about the bigalloc feature.
- patches.taobao/bigalloc-012-teach-ext4_ext_truncate-about-the-bigalloc-feature.patch: ext4: teach ext4_ext_truncate() about the bigalloc feature.
- patches.taobao/bigalloc-013-convert-s_-dirty-free-blocks_counter-to-s_-dirty-free-clusters_counter.patch: ext4: convert s_{dirty,free}blocks_counter to
s_{dirty,free}clusters_counter.
- patches.taobao/bigalloc-014-convert-the-free_blocks-field-in-s_flex_groups-to-be-free_clusters.patch: ext4: convert the free_blocks field in s_flex_groups to be
free_clusters.
- patches.taobao/bigalloc-015-teach-ext4_statfs-to-deal-with-clusters-if-bigalloc-is-enabled.patch: ext4: teach ext4_statfs() to deal with clusters if bigalloc
is enabled.
- patches.taobao/bigalloc-016-tune-mballoc-s-default-group-prealloc-size-for-bigalloc-file-systems.patch: ext4: tune mballoc's default group prealloc size for bigalloc
file systems.
- patches.taobao/bigalloc-017-Fix-bigalloc-quota-accounting-and-i_blocks-value.patch: ext4: Fix bigalloc quota accounting and i_blocks value.
- patches.taobao/bigalloc-018-enable-mounting-bigalloc-as-read-write.patch: ext4: enable mounting bigalloc as read/write.
- patches.taobao/bigalloc-019-Rename-ext4_free_blks_-count-set-to-refer-to-clusters.patch: ext4: Rename ext4_free_blks_{count,set}() to refer to clusters.
- patches.taobao/bigalloc-020-rename-ext4_count_free_blocks-to-ext4_count_free_clusters.patch: ext4: rename ext4_count_free_blocks() to
ext4_count_free_clusters().
- patches.taobao/bigalloc-021-rename-ext4_free_blocks_after_init-to-ext4_free_clusters_after_init.patch: ext4: rename ext4_free_blocks_after_init() to
ext4_free_clusters_after_init().
- patches.taobao/bigalloc-022-rename-ext4_claim_free_blocks-to-ext4_claim_free_clusters.patch: ext4: rename ext4_claim_free_blocks() to
ext4_claim_free_clusters().
- patches.taobao/bigalloc-023-rename-ext4_has_free_blocks-to-ext4_has_free_clusters.patch: ext4: rename ext4_has_free_blocks() to ext4_has_free_clusters().
- patches.taobao/bigalloc-024-add-some-tracepoints-in-ext4-extents-c.patch: ext4: add some tracepoints in ext4/extents.c.
- patches.taobao/bigalloc-025-attempt-to-fix-race-in-bigalloc-code-path.patch: ext4: attempt to fix race in bigalloc code path.
- patches.taobao/bigalloc-026-convert-ext4_ext_handle_uninitialized_extents-to-map.patch: ext4: change "block" and "max_blocks" to struct ext4_map_blocks
for ext4_ext_handle_uninitialized_extents.
- patches.taobao/bio-0001-ext4-call-mpage_da_submit_io-from-mpage_da_map_block.patch: ext4: call mpage_da_submit_io() from mpage_da_map_blocks().
- patches.taobao/bio-0002-ext4-simplify-ext4_writepage.patch: ext4: simplify ext4_writepage().
- patches.taobao/bio-0003-ext4-inline-ext4_writepage-into-mpage_da_submit_io.patch: ext4: inline ext4_writepage() into mpage_da_submit_io().
- patches.taobao/bio-0004-ext4-inline-walk_page_buffers-into-mpage_da_submit_i.patch: ext4: inline walk_page_buffers() into mpage_da_submit_io.
- patches.taobao/block-strict-rq_affinity-0001.patch: Refresh. - patches.taobao/buffer-aio.patch: A readahead complete notify
approach to implement buffer aio.
- patches.taobao/cfq_avoid_async_write_starve.patch: Refresh.
- patches.taobao/cfq_request_deadline_policy.patch: Refresh.
- patches.taobao/context_switch_per_cpu_stat.patch: Refresh.
- patches.taobao/ext4-Adding-error-check-after-calling-ext4_mb_regular_allocator.patch: Refresh.
- patches.taobao/ext4-Fix-buffer-head-leaks-after-calls-to-ext4_get_inode_loc.diff:
- patches.taobao/ext4-Fix-overflow-caused-by-missing-cast-in-ext4_fal.patch: Refresh.
- patches.taobao/ext4-Make-fsync-sync-new-parent-directories-in-no-jo.patch: Refresh.
- patches.taobao/ext4-Remove-extraneous-newlines-in-ext4_msg-calls.diff:
- patches.taobao/ext4-add-tracepoint-for-ext4_journal_start.patch: Refresh.
- patches.taobao/ext4-don-t-show-mount-options-in-proc-mounts-if-ther.patch: Refresh.
- patches.taobao/ext4-dont-warn-about-mnt_count-if-it-has-been-disabled.patch: ext4: don't warn about mnt_count if it has been disabled .
- patches.taobao/ext4-fix-kernel-oops-if-the-journal-superblock-has-a-non-zero-j_errno.diff:
- patches.taobao/ext4-free-allocated-and-pre-allocated-blocks-when-ch.patch: Refresh.
- patches.taobao/ext4-init-statistics-after-journal-recovery.patch: Refresh.
- patches.taobao/ext4-io-error-guard-add-netoops-support.patch: Refresh.
- patches.taobao/ext4-io-error-guard-for-file-system-protection-on-broken-storage-device.patch: Refresh.
- patches.taobao/ext4-remove-ext4_mb_return_to_preallocation.patch: Refresh.
- patches.taobao/ext4-use-dedicated-slab-caches-for-group_info-structures.patch: Refresh.
- patches.taobao/fix-type-of-cputime_to_usecs-in-asm-generic-cputime.h.patch: fix type of cputime_to_usecs in asm-generic/cputime.h.
- patches.taobao/flashcache.patch: Refresh.
- patches.taobao/kernel-gdb-trace-point-20120131.patch: Kernel Gdb Trace Point v20120131.
- patches.taobao/list-remove-prefetching-from-regular-list-iterators.patch: Refresh.
- patches.taobao/mm-0001-compaction-checks-correct-fragmentation-index.patch: Refresh.
- patches.taobao/mm-0002-batch-free-pcp-list-if-possible.patch: Refresh.
- patches.taobao/mm-0003-compaction-abort-compaction-if-too-many-pages-are.patch: Refresh.
- patches.taobao/mm-0008-page-allocator-reduce-fragmentation-in-buddy-allocat.patch: Refresh.
- patches.taobao/mm-0009-Fix-section-mismatch-for-setup_zone_pageset.patch: Refresh.
- patches.taobao/mm-0010-page_alloc.c-prevent-unending-loop-in-__alloc_pag.patch: Refresh.
- patches.taobao/mm-add-a-sysctl-to-decide-whether-to-do-context-readahead-or-not.patch: Refresh.
- patches.taobao/mm-sysctl-mlock-flush-pagevec.patch: mm: add a sysctl interface to enable/disable lru pagevec flush
in mlock/mlockall.
- patches.taobao/net-tcp-timewait-dynamic-config.patch: Refresh.
- patches.taobao/netoops_002_netconsole_remove_unneeded_reference_counter.patch: Refresh.
- patches.taobao/netoops_003_netconsole_introduce_locking_over_the_netpoll_fields.patch: Refresh.
- patches.taobao/netoops_004_netconsole_introduce_enabled_state_machine.patch: Refresh.
- patches.taobao/netoops_005_netconsole_call_netpoll_cleanup_in_process_context.patch: Refresh.
- patches.taobao/netoops_006_netconsole_wrap_the_list_and_locking_in_a_structure.patch: Refresh.
- patches.taobao/netoops_007_netconsole_push_configfs_subsystem_into_netpoll_targets.patch: Refresh.
- patches.taobao/netoops_008_netconsole_move_netdev_notifier_into_netpoll_targets.patch: Refresh.
- patches.taobao/netoops_009_netconsole_split_out_netpoll_targets_init_exit.patch: Refresh.
- patches.taobao/netoops_010_netconsole_add_pointer_to_netpoll_targets.patch: Refresh.
- patches.taobao/netoops_011_netconsole_rename_netconsole_target_to_netpoll_target.patch: Refresh.
- patches.taobao/netoops_012_netconsole_abstract_away_the_subsystem_name.patch: Refresh.
- patches.taobao/netoops_013_netconsole_move_setting_of_default_ports.patch: Refresh.
- patches.taobao/netoops_014_netpoll_introduce_netpoll_target_configs.patch: Refresh.
- patches.taobao/netoops_015_netpoll_move_target_code_into_netpoll_targets.patch: Refresh.
- patches.taobao/netoops_016_oops_pass_regs_to_oops_exit.patch: Refresh.
- patches.taobao/netoops_017_kmsg_dumper_pass_pt_regs_along_to_dumpers.patch: Refresh.
- patches.taobao/netoops_018_kmsg_dumper_introduce_a_new_soft_dump_reason.patch: Refresh.
- patches.taobao/netoops_019_sysrq_add_option_to_soft_dump.patch: Refresh.
- patches.taobao/netoops_020_add_core_functionality.patch: Refresh.
- patches.taobao/netoops_021_add_x86_specific_bits_to_packet_headers.patch: Refresh.
- patches.taobao/netoops_022_add_user_programmable_boot_id.patch: Refresh.
- patches.taobao/netoops_023_add_a_user_programmable_blob_to_the_netoops_packet.patch: Refresh.
- patches.taobao/netoops_024_add_oom_event.patch: Refresh.
- patches.taobao/nohz-0003-proc-consider-nohz-when-printing-idle-and-iowait-times.patch: Refresh.
- patches.taobao/pagecache_hit_accounting_002_add_func_and_structures.patch: Refresh.
- patches.taobao/pcie_aspm_disable_on_default.patch: Refresh.
- patches.taobao/perf-Find_get_context-fix-the-per-cpu-counter-check.patch: Refresh.
- patches.taobao/perf-Validate-cpu-early-in-perf_event_alloc.patch: Refresh.
- patches.taobao/tlock.patch: Refresh.
- patches.taobao/writeback-improve-001-stop-on-wrap-linux_mm_page-writeback.patch:
writeback: quit on wrap for .range_cyclic (write_cache_pages).
- patches.taobao/writeback-improve-002-relax-busy-overwrites.patch: writeback: delay periodic work on wrap.
- redhat-kernel-source/
-------------------------------------------------------------------
Thu Feb 23 13:32:20 CST 2012 - [email protected]
- patches.taobao/ext4-io-error-guard-for-file-system-protection-on-broken-storage-device.patch:
Refresh to remove merge confliction.
-------------------------------------------------------------------
Thu Feb 23 13:19:28 CST 2012 - [email protected]
- patches.taobao/ext4-io-error-guard-for-file-system-protection-on-broken-storage-device.patch:
do not call ext4_sync_fs() before setting MS_RDONLY flag.
-------------------------------------------------------------------
Tue Feb 21 19:18:18 CST 2012 - [email protected]
- patches.taobao/ext4-io-error-guard-add-netoops-support.patch:
fix several NULL dereference bugs.
- patches.taobao/ext4-io-error-guard-for-file-system-protection-on-broken-storage-device.patch:
Refresh.
- patches.taobao/fix-typo-of-do_hypervisor_callback-in-entry_64.S.patch:
fix typo of do_hypervisor_callback in entry_64.S.
- patches.taobao/remove-redundant-variable-in-struct-pmcraid_cmd.patch:
remove redundant sense_buffer member in pmcraid_cmd.
- patches.taobao/x86-gcc-4.6-Use-gcc--m-options-when-building-vdso.patch:
fix compiling warning.
-------------------------------------------------------------------
Fri Feb 3 11:52:48 CST 2012 - [email protected]
- rpm/kernel.spec.in: add dependence to mkinitrd >= 5.1.19.6-61.tb345.
this modification only on 5u branch, on 6u system we don't need to
update mkinitrd.
-------------------------------------------------------------------
Tue Jan 31 17:36:32 CST 2012 - [email protected]
- Update debug config files.
- remove drbd since no-body uses it currently.
- add tlock kernel module from master branch.
-------------------------------------------------------------------
Tue Jan 31 16:51:50 CST 2012 - [email protected]
- Update config files:
- remove drbd since no-body uses it currently.
- add tlock kernel module from master branch.
-------------------------------------------------------------------
Tue Jan 31 16:43:41 CST 2012 - [email protected]
- patches.taobao/ext4-set-file-system-to-read-only-by-io-error-threshold.patch: Delete.
- patches.taobao/ext4-io-error-guard-for-file-system-protection-on-broken-storage-device.patch:
Ext4: io error guard for file system protection on broken storage device.
- patches.taobao/ext4-io-error-guard-add-netoops-support.patch:
writeback: quit on wrap for .range_cyclic (write_cache_pages).
- patches.taobao/pcie_aspm_disable_on_default.patch: power
management: disable pcie_aspm on default.
- patches.taobao/perf-Validate-cpu-early-in-perf_event_alloc.patch: Refresh.
- patches.taobao/tlock.patch: tlock: port tlock_kern kernel module to 2.6.32 version.
-------------------------------------------------------------------
Thu Jan 19 14:22:21 CST 2012 - [email protected]
- Update config files: We did testing ourselves, for haproxy disable
NO_HZ isn't that much faster as people reported. We don't gain any
benifit from having a different config item from RHEL6 kernel,
therefore re-enable it.
-------------------------------------------------------------------
Mon Dec 26 17:32:59 CST 2011 - [email protected]
- patches.taobao/nohz-0002-make-idle-iowait-counter-update-conditional.patch:
Refresh.
Fix a build bug with no_hz disbled.
-------------------------------------------------------------------
Thu Dec 22 18:31:05 CST 2011 - [email protected]
- Update config files: disable NO_HZ.
- Fix incorrect bash interpreter header to #!/bin/bash
- scripts/abs-post-receive:
- scripts/add-timestamp.sh:
- scripts/apply-patches.sh:
- scripts/check-cvs-add:
- scripts/check-patch:
- scripts/cvs-touched-files:
- scripts/git-pre-commit:
- scripts/install-git-hooks:
- scripts/log:
- scripts/perf:
- scripts/refresh_patch.sh:
- scripts/vc:
-------------------------------------------------------------------
Thu Dec 8 18:27:23 CST 2011 - [email protected]
This patch series can solve cpu idle and iowait time calculation incorret
problem.
- patches.taobao/nohz-0001-fix-update_ts_time_stat-idle-accouting.patch:
nohz: Fix update_ts_time_stat idle accounting.
- patches.taobao/nohz-0002-make-idle-iowait-counter-update-conditional.patch:
nohz: Make idle/iowait counter update conditional.
- patches.taobao/nohz-0003-proc-consider-nohz-when-printing-idle-and-iowait-times.patch:
Consider NO_HZ when printing idle and iowait times.
-------------------------------------------------------------------
Mon Dec 5 11:27:00 CST 2011 - [email protected]
- The build experiment failed, so we fall back to build the rhel5 kernel on
rhel5, exactly as before. The relevant commits are reverted now.
Also we turned off kernel-debug building, we will turn it on after seperating
the build of kernel-debug and kernel-debug-debuginfo.
-------------------------------------------------------------------
Wed Nov 30 21:26:15 CST 2011 - [email protected]
- patches.taobao/mm-add-a-sysctl-to-decide-whether-to-do-context-readahead-or-not.patch:
mm: add a sysctl to decide whether to do context readahead
or not.
-------------------------------------------------------------------
Wed Nov 30 11:12:29 CST 2011 - [email protected]
- differentiate the building release from the target running release.
Since Nov 29 we build the kernels for both RHEL5 and RHEL6 on RHEL6, for better fancy
debuginfo and the debuginfo package for debug kernel (well I know it's a bit confusing,
the rpmbuild module on old RHEL5 has a bug, which makes it unable to build the too large
debuginfo packages, e.g. the one for kernel-debug).
And we use the same build platform from now on, that I can't assume the build platform
is the same with the target platform anymore, so I made this change.
***************************************************************************************
** From now on, to build for RHEL5, you have to append a '--with rhel5' option to the *
** rpmbuild command line. *
***************************************************************************************
- rpm/kernel.spec.in:
- rpm/taobao-kernel-build.sh:
-------------------------------------------------------------------
Tue Nov 29 12:11:23 CST 2011 - [email protected]
- rpm/kernel.spec.in: consolidate lsb_release version judgement.
-------------------------------------------------------------------
Tue Nov 29 11:42:12 CST 2011 - [email protected]
- rpm/taobao-kernel-build.sh: turn on debug kernel build.
-------------------------------------------------------------------
Tue Nov 29 01:56:50 CST 2011 - [email protected]
- MAINTAINERS: add [email protected] into maintainers.
-------------------------------------------------------------------
Tue Nov 29 01:03:04 CST 2011 - [email protected]
- patches.driver/igb-3.2.10.patch: backport igb 3.2.10 driver
to RHEL6 2.6.32 kernel.
- rebase patches to remove chunk offset warning in patches applying:
- patches.taobao/netoops_016_oops_pass_regs_to_oops_exit.patch
- patches.taobao/netoops_017_kmsg_dumper_pass_pt_regs_along_to_dumpers.patch
- patches.taobao/tcp_v4_err.lock-fix.patch: tcp: Don't change unlocked socket state in tcp_v4_err().
-------------------------------------------------------------------
Tue Nov 29 01:00:35 CST 2011 - [email protected]
- patches.driver/igb-3.2.10.patch: backport igb 3.2.10 driver
to RHEL6 2.6.32 kernel.
- rebase patches to remove chunk offset warning in patches applying:
- patches.taobao/netoops_016_oops_pass_regs_to_oops_exit.patch
- patches.taobao/netoops_017_kmsg_dumper_pass_pt_regs_along_to_dumpers.patch
- patches.taobao/tcp_v4_err.lock-fix.patch:
-------------------------------------------------------------------
Thu Nov 24 17:55:55 CST 2011 - [email protected]
- patches.driver/bnx2-disable-msi-when-no-per-vector-masking.patch:
Disable bnx2 MSI support when no per-vector masking capability
(BF#131606).
-------------------------------------------------------------------
Thu Nov 24 17:54:50 CST 2011 - [email protected]
- Update to RHEL6 kernel 2.6.32-131.21.1
- redhat-kernel-changelog:
- redhat-kernel-source/kernel.spec:
- redhat-kernel-source/linux-2.6.32/arch/x86/include/asm/pgtable-3level.h:
- redhat-kernel-source/linux-2.6.32/arch/x86/include/asm/pgtable.h:
- redhat-kernel-source/linux-2.6.32/arch/x86/mm/fault.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/mm/init_64.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/mm/pageattr.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/mm/pgtable.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/xen/mmu.c:
- redhat-kernel-source/linux-2.6.32/crypto/md5.c:
- redhat-kernel-source/linux-2.6.32/drivers/acpi/osl.c:
- redhat-kernel-source/linux-2.6.32/drivers/char/random.c:
- redhat-kernel-source/linux-2.6.32/drivers/char/tpm/tpm.c:
- redhat-kernel-source/linux-2.6.32/drivers/misc/enclosure.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/igb/igb_main.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/wireless/b43/dma.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/wireless/b43/dma.h:
- redhat-kernel-source/linux-2.6.32/drivers/pci/hotplug/acpiphp_glue.c:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/iscsi_tcp.c:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/megaraid/megaraid_sas_base.c:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/scsi_error.c:
- redhat-kernel-source/linux-2.6.32/fs/cifs/cifssmb.c:
- redhat-kernel-source/linux-2.6.32/fs/cifs/connect.c:
- redhat-kernel-source/linux-2.6.32/fs/fuse/dev.c:
- redhat-kernel-source/linux-2.6.32/fs/nfs/nfs4xdr.c:
- redhat-kernel-source/linux-2.6.32/fs/partitions/efi.c:
- redhat-kernel-source/linux-2.6.32/include/acpi/acpiosxf.h:
- redhat-kernel-source/linux-2.6.32/include/linux/cryptohash.h:
- redhat-kernel-source/linux-2.6.32/include/linux/kvm_host.h:
- redhat-kernel-source/linux-2.6.32/include/linux/random.h:
- redhat-kernel-source/linux-2.6.32/include/linux/rcutree.h:
- redhat-kernel-source/linux-2.6.32/include/net/ipv6.h:
- redhat-kernel-source/linux-2.6.32/include/net/sctp/command.h:
- redhat-kernel-source/linux-2.6.32/include/net/secure_seq.h:
- redhat-kernel-source/linux-2.6.32/include/net/transp_v6.h:
- redhat-kernel-source/linux-2.6.32/include/scsi/scsi_host.h:
- redhat-kernel-source/linux-2.6.32/kernel/rcutree.c:
- redhat-kernel-source/linux-2.6.32/kernel/taskstats.c:
- redhat-kernel-source/linux-2.6.32/lib/Makefile:
- redhat-kernel-source/linux-2.6.32/lib/md5.c:
- redhat-kernel-source/linux-2.6.32/mm/rmap.c:
- redhat-kernel-source/linux-2.6.32/net/8021q/vlan_core.c:
- redhat-kernel-source/linux-2.6.32/net/core/Makefile:
- redhat-kernel-source/linux-2.6.32/net/core/secure_seq.c:
- redhat-kernel-source/linux-2.6.32/net/dccp/ipv4.c:
- redhat-kernel-source/linux-2.6.32/net/dccp/ipv6.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/inet_hashtables.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/inetpeer.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/netfilter/nf_nat_proto_common.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/route.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/tcp_ipv4.c:
- redhat-kernel-source/linux-2.6.32/net/ipv6/af_inet6.c:
- redhat-kernel-source/linux-2.6.32/net/ipv6/inet6_hashtables.c:
- redhat-kernel-source/linux-2.6.32/net/ipv6/ip6_output.c:
- redhat-kernel-source/linux-2.6.32/net/ipv6/tcp_ipv6.c:
- redhat-kernel-source/linux-2.6.32/net/ipv6/udp.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/sm_sideeffect.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/sm_statefuns.c:
- redhat-kernel-source/linux-2.6.32/net/sunrpc/cache.c:
- redhat-kernel-source/linux-2.6.32/net/sunrpc/rpcb_clnt.c:
- redhat-kernel-source/linux-2.6.32/net/sunrpc/sched.c:
- redhat-kernel-source/linux-2.6.32/tools/perf/util/config.c:
- redhat-kernel-source/linux-kernel-test.patch:
- redhat-kernel-version:
- redhat-kernel-source/.gitignore: Delete.
-------------------------------------------------------------------
Wed Nov 23 13:05:50 CST 2011 - [email protected]
- Rebase the patches to remove hunk offset warning in patche applying:
- patches.taobao/ext4-fix-races-in-ext4_sync_parent.patch
- patches.taobao/ext4-set-file-system-to-read-only-by-io-error-threshold.patch
- patches.taobao/mm-increase-RECLAIM_DISTANCE-to-30.patch
-------------------------------------------------------------------
Tue Nov 22 11:15:11 CST 2011 - [email protected]
- Forgot to add the entry in series.conf, for mm-increase-RECLAIM_DISTANCE-to-30.patch
-------------------------------------------------------------------
Tue Nov 22 11:00:43 CST 2011 - [email protected]
Add these patches to support upstream strict rq_affinity feature,
which can make the softirqs run on every cores.
- patches.taobao/block-strict-rq_affinity-0001.patch: block:
strict rq_affinity.
- patches.taobao/block-strict-rq_affinity-0002.patch: block:
Make rq_affinity = 1 work as expected.
- patches.taobao/block-strict-rq_affinity-0003.patch: block:
improve rq_affinity placement.
-------------------------------------------------------------------
Tue Nov 1 00:41:38 CST 2011 - [email protected]
- patches.taobao/ext4-fix-no-dirty-buffer-in-convert-to-initialized.patch:
ext4: fix no mark dirty in ext4_ext_convert_to_initialized().
This fix the redhat bugzilla 742091.
-------------------------------------------------------------------
Mon Sep 5 17:38:21 CST 2011 - [email protected]
By introducing this fix we can alleviate the phenomemon that kernel
enables zone_reclaim_mode during boot by mistake on some NUMA servers.
- patches.taobao/mm-increase-RECLAIM_DISTANCE-to-30.patch
-------------------------------------------------------------------
Wed Aug 31 15:47:57 CST 2011 - [email protected]
- Update to RHEL6 2.6.32-131.12.1.el6
- MAINTAINERS:
- patches.taobao/ext4-Fix-buffer-head-leaks-after-calls-to-ext4_get_inode_loc.diff:
- patches.taobao/ext4-Make-fsync-sync-new-parent-directories-in-no-jo.patch: Refresh.
- patches.taobao/ext4-Remove-extraneous-newlines-in-ext4_msg-calls.diff:
- patches.taobao/ext4-don-t-show-mount-options-in-proc-mounts-if-ther.patch: Refresh.
- patches.taobao/ext4-fix-kernel-oops-if-the-journal-superblock-has-a-non-zero-j_errno.diff:
- patches.taobao/ext4-init-statistics-after-journal-recovery.patch: Refresh.
- patches.taobao/ext4-set-file-system-to-read-only-by-io-error-threshold.patch: Refresh.
- patches.taobao/rhel6-add-missing-key.h: Add cropt/signature/key.h which is missing in rhel6 2.6.32-131.12.1.
- redhat-kernel-source/config-generic-rhel:
- redhat-kernel-source/config-x86_64-generic-rhel:
- redhat-kernel-source/linux-2.6.32/arch/x86/include/asm/pvclock.h:
- redhat-kernel-source/linux-2.6.32/drivers/block/cciss.c:
- redhat-kernel-source/linux-2.6.32/drivers/block/cciss.h:
- redhat-kernel-source/linux-2.6.32/drivers/block/cciss_cmd.h:
- redhat-kernel-source/linux-2.6.32/drivers/md/md.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/benet/be.h:
- redhat-kernel-source/linux-2.6.32/drivers/net/benet/be_cmds.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/benet/be_cmds.h:
- redhat-kernel-source/linux-2.6.32/drivers/net/benet/be_hw.h:
- redhat-kernel-source/linux-2.6.32/drivers/net/benet/be_main.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/ehea/ehea_main.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/r8169.c:
- redhat-kernel-source/linux-2.6.32/drivers/pci/intel-iommu.c:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/hpsa.c:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/hpsa.h:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/hpsa_cmd.h:
- redhat-kernel-source/linux-2.6.32/fs/ext4/ext4_extents.h:
- redhat-kernel-source/linux-2.6.32/fs/ext4/extents.c:
- redhat-kernel-source/linux-2.6.32/fs/ext4/move_extent.c:
- redhat-kernel-source/linux-2.6.32/fs/ext4/super.c:
- redhat-kernel-source/linux-2.6.32/fs/gfs2/glops.c:
- redhat-kernel-source/linux-2.6.32/fs/gfs2/ops_inode.c:
- redhat-kernel-source/linux-2.6.32/fs/gfs2/super.c:
- redhat-kernel-source/linux-2.6.32/fs/lockd/clntproc.c:
- redhat-kernel-source/linux-2.6.32/fs/nfs/dir.c:
- redhat-kernel-source/linux-2.6.32/fs/partitions/efi.c:
- redhat-kernel-source/linux-2.6.32/fs/proc/base.c:
- redhat-kernel-source/linux-2.6.32/include/linux/iommu.h:
- redhat-kernel-source/linux-2.6.32/include/linux/pid.h:
- redhat-kernel-source/linux-2.6.32/include/linux/sunrpc/sched.h:
- redhat-kernel-source/linux-2.6.32/kernel/pid.c:
- redhat-kernel-source/linux-2.6.32/kernel/signal.c:
- redhat-kernel-source/linux-2.6.32/mm/ksm.c:
- redhat-kernel-source/linux-2.6.32/net/bluetooth/l2cap.c:
- redhat-kernel-source/linux-2.6.32/net/bluetooth/rfcomm/sock.c:
- redhat-kernel-source/linux-2.6.32/net/core/dev.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/inet_diag.c:
- redhat-kernel-source/linux-2.6.32/net/sunrpc/clnt.c:
- redhat-kernel-source/linux-2.6.32/net/sunrpc/sched.c:
- redhat-kernel-source/linux-2.6.32/net/wireless/nl80211.c:
- redhat-kernel-source/linux-2.6.32/virt/kvm/iommu.c:
- redhat-kernel-version:
- redhat-kernel-source/linux-2.6.32/.gitignore: Delete.
- redhat-kernel-source/linux-2.6.32/check-kabi: Delete.
- redhat-kernel-source/linux-2.6.32/crypto/signature/key.h: Delete.
- redhat-kernel-source/linux-2.6.32/extract.pub: Delete.
- redhat-kernel-source/linux-2.6.32/extrakeys.pub: Delete.
- redhat-kernel-source/linux-2.6.32/kernel.pub: Delete.
- redhat-kernel-source/linux-2.6.32/kernel.sec: Delete.
- redhat-kernel-source/linux-2.6.32/merge.pl: Delete.
- redhat-kernel-source/linux-2.6.32/pubring.gpg: Delete.
- redhat-kernel-source/linux-2.6.32/random_seed: Delete.
- redhat-kernel-source/linux-2.6.32/secring.gpg: Delete.
- redhat-kernel-source/linux-2.6.32/temp-i686-debug-final: Delete.
- redhat-kernel-source/linux-2.6.32/temp-i686-final: Delete.
- redhat-kernel-source/linux-2.6.32/trustdb.gpg: Delete.
-------------------------------------------------------------------
Fri Aug 19 21:47:31 CST 2011 - [email protected]
Backported some ext4 fixes from Ted's 3.1 pull request.
- patches.taobao/ext4-Fix-overflow-caused-by-missing-cast-in-ext4_fal.patch: