-
Notifications
You must be signed in to change notification settings - Fork 19
/
kernel-source.changes
5960 lines (5260 loc) · 317 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 Dec 14 10:47:17 CST 2012 - sanbai@taobao.com
Fix deadlock bug (case http://code.taobao.org/svn/dirbench/trunk/flashcache/deadlock_case/try.sh)
which caused by calling mempool_create_node() from blk_init_rl() with GFP_KERNEL and holding queue_lock.
- patches.taobao/flashcache-0008-mempool-add-gfp_mask-to-mempool_create_node.patch:
block: prepare for multiple request_lists.
- patches.taobao/flashcache-0009-block-prepare-for-multiple-request_lists.patch:
block: prepare for multiple request_lists.
- patches.taobao/flashcache-0010-blkcg-implement-per-blkg-request-allocation.patch:
blkcg: implement per-blkg request allocation.
- patches.taobao/flashcache-0008-block-prepare-for-multiple-request_lists.patch:
Delete.
- patches.taobao/flashcache-0009-blkcg-implement-per-blkg-request-allocation.patch:
Delete.
-------------------------------------------------------------------
Fri Nov 30 00:04:28 CST 2012 - boyu.mt@taobao.com
revet the stable page writeback as it may cause some problem
for appending write which has already complained by Google.
- patches.taobao/revert-stable-write-page.patch:
-------------------------------------------------------------------
Fri Nov 30 00:02:55 CST 2012 - boyu.mt@taobao.com
activate page according to vm_enable_legacy_mm.
- patches.taobao/activate-mapped-page-in-inactive-list.patch:
-------------------------------------------------------------------
Thu Nov 29 23:56:56 CST 2012 - boyu.mt@taobao.com
Fix a bug for ksoftirqd high cpu usage.
sched: Add irq_{enter,exit}() to scheduler_ipi()
- patches.taobao/sched-fix-ksoftirqd-high-usage.patch:
-------------------------------------------------------------------
Thu Nov 29 14:23:11 CST 2012 - boyu.mt@taobao.com
Upgrade to to RHEL6U3 2.6.32-279.14.1.
- redhat-kernel-changelog:
- redhat-kernel-source/Module.kabi_i686:
- redhat-kernel-source/Module.kabi_ppc64:
- redhat-kernel-source/Module.kabi_s390x:
- redhat-kernel-source/Module.kabi_x86_64:
- redhat-kernel-source/kernel.spec:
- redhat-kernel-source/linux-2.6.32/Documentation/networking/ip-sysctl.txt:
- redhat-kernel-source/linux-2.6.32/arch/ia64/mm/hugetlbpage.c:
- redhat-kernel-source/linux-2.6.32/arch/mips/mm/hugetlbpage.c:
- redhat-kernel-source/linux-2.6.32/arch/powerpc/kernel/prom_init.c:
- redhat-kernel-source/linux-2.6.32/arch/powerpc/mm/hugetlbpage.c:
- redhat-kernel-source/linux-2.6.32/arch/s390/mm/hugetlbpage.c:
- redhat-kernel-source/linux-2.6.32/arch/sh/mm/hugetlbpage.c:
- redhat-kernel-source/linux-2.6.32/arch/sparc/mm/hugetlbpage.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/mm/hugetlbpage.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/mm/mmap.c:
- redhat-kernel-source/linux-2.6.32/block/blk-exec.c:
- redhat-kernel-source/linux-2.6.32/crypto/algapi.c:
- redhat-kernel-source/linux-2.6.32/crypto/algboss.c:
- redhat-kernel-source/linux-2.6.32/crypto/internal.h:
- redhat-kernel-source/linux-2.6.32/drivers/base/dd.c:
- redhat-kernel-source/linux-2.6.32/drivers/hid/hidraw.c:
- redhat-kernel-source/linux-2.6.32/drivers/hid/usbhid/hid-core.c:
- redhat-kernel-source/linux-2.6.32/drivers/hid/usbhid/hiddev.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/benet/be_cmds.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/benet/be_main.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/bnx2x/bnx2x_link.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/bnx2x/bnx2x_link.h:
- redhat-kernel-source/linux-2.6.32/drivers/net/bonding/bond_main.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/bonding/bonding.h:
- redhat-kernel-source/linux-2.6.32/drivers/net/e1000e/82571.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/mlx4/en_netdev.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/mlx4/mcg.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/mlx4/port.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/sfc/efx.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/sfc/efx.h:
- redhat-kernel-source/linux-2.6.32/drivers/net/sfc/ethtool.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/sfc/nic.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/sfc/nic.h:
- redhat-kernel-source/linux-2.6.32/drivers/net/sfc/tx.c:
- redhat-kernel-source/linux-2.6.32/drivers/s390/scsi/zfcp_ccw.c:
- redhat-kernel-source/linux-2.6.32/drivers/s390/scsi/zfcp_erp.c:
- redhat-kernel-source/linux-2.6.32/drivers/s390/scsi/zfcp_ext.h:
- redhat-kernel-source/linux-2.6.32/drivers/s390/scsi/zfcp_fc.c:
- redhat-kernel-source/linux-2.6.32/drivers/s390/scsi/zfcp_fsf.c:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/be2iscsi/be_iscsi.c:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/hosts.c:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/lpfc/lpfc_scsi.c:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/scsi_lib.c:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/scsi_priv.h:
- redhat-kernel-source/linux-2.6.32/drivers/scsi/scsi_sysfs.c:
- redhat-kernel-source/linux-2.6.32/drivers/usb/core/devices.c:
- redhat-kernel-source/linux-2.6.32/drivers/usb/core/devio.c:
- redhat-kernel-source/linux-2.6.32/drivers/usb/core/hcd.c:
- redhat-kernel-source/linux-2.6.32/drivers/usb/host/ehci-hcd.c:
- redhat-kernel-source/linux-2.6.32/drivers/usb/host/ehci-pci.c:
- redhat-kernel-source/linux-2.6.32/drivers/usb/host/ehci.h:
- redhat-kernel-source/linux-2.6.32/drivers/usb/host/xhci.c:
- redhat-kernel-source/linux-2.6.32/fs/block_dev.c:
- redhat-kernel-source/linux-2.6.32/fs/gfs2/super.c:
- redhat-kernel-source/linux-2.6.32/fs/hugetlbfs/inode.c:
- redhat-kernel-source/linux-2.6.32/fs/udf/super.c:
- redhat-kernel-source/linux-2.6.32/fs/xfs/linux-2.6/xfs_sync.c:
- redhat-kernel-source/linux-2.6.32/fs/xfs/linux-2.6/xfs_trace.h:
- redhat-kernel-source/linux-2.6.32/fs/xfs/quota/xfs_dquot_item.c:
- redhat-kernel-source/linux-2.6.32/fs/xfs/xfs_buf_item.c:
- redhat-kernel-source/linux-2.6.32/fs/xfs/xfs_inode_item.c:
- redhat-kernel-source/linux-2.6.32/fs/xfs/xfs_log.c:
- redhat-kernel-source/linux-2.6.32/fs/xfs/xfs_trans.h:
- redhat-kernel-source/linux-2.6.32/fs/xfs/xfs_trans_ail.c:
- redhat-kernel-source/linux-2.6.32/fs/xfs/xfs_trans_priv.h:
- redhat-kernel-source/linux-2.6.32/include/linux/hugetlb.h:
- redhat-kernel-source/linux-2.6.32/include/linux/mm_types.h:
- redhat-kernel-source/linux-2.6.32/include/linux/mmzone.h:
- redhat-kernel-source/linux-2.6.32/include/linux/usb.h:
- redhat-kernel-source/linux-2.6.32/include/linux/usbdevice_fs.h:
- redhat-kernel-source/linux-2.6.32/include/net/ip6_fib.h:
- redhat-kernel-source/linux-2.6.32/include/net/ip6_route.h:
- redhat-kernel-source/linux-2.6.32/include/net/sctp/constants.h:
- redhat-kernel-source/linux-2.6.32/include/net/sctp/structs.h:
- redhat-kernel-source/linux-2.6.32/include/net/sctp/tsnmap.h:
- redhat-kernel-source/linux-2.6.32/include/net/sctp/user.h:
- redhat-kernel-source/linux-2.6.32/kernel/cgroup.c:
- redhat-kernel-source/linux-2.6.32/kernel/sched.c:
- redhat-kernel-source/linux-2.6.32/mm/huge_memory.c:
- redhat-kernel-source/linux-2.6.32/mm/hugetlb.c:
- redhat-kernel-source/linux-2.6.32/mm/madvise.c:
- redhat-kernel-source/linux-2.6.32/mm/memory.c:
- redhat-kernel-source/linux-2.6.32/mm/mmap.c:
- redhat-kernel-source/linux-2.6.32/mm/vmscan.c:
- redhat-kernel-source/linux-2.6.32/mm/vmstat.c:
- redhat-kernel-source/linux-2.6.32/net/core/dev.c:
- redhat-kernel-source/linux-2.6.32/net/ipv6/addrconf.c:
- redhat-kernel-source/linux-2.6.32/net/ipv6/ip6_output.c:
- redhat-kernel-source/linux-2.6.32/net/ipv6/route.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/associola.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/ipv6.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/output.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/outqueue.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/protocol.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/sm_make_chunk.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/sm_sideeffect.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/socket.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/sysctl.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/transport.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/tsnmap.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/ulpevent.c:
- redhat-kernel-source/linux-2.6.32/net/sctp/ulpqueue.c:
- redhat-kernel-source/linux-2.6.32/net/sunrpc/svc_xprt.c:
- redhat-kernel-source/linux-2.6.32/net/sunrpc/svcsock.c:
- redhat-kernel-version:
- patches.taobao/thp-memcg-split-hugepage-for-memcg-oom-on-cow.patch:
Delete.
-------------------------------------------------------------------
Thu Oct 25 01:08:28 CST 2012 - boyu.mt@taobao.com
Perf: Add ability to support JIT symbol annotation.
- patches.taobao/perf-jit-symbol-annotation.patch:
-------------------------------------------------------------------
Wed Oct 24 11:30:23 CST 2012 - sanbai@taobao.com
Update flashcache and change it to request-based.
- patches.taobao/flashcache-0001-flashcache.patch: flashcache:
backport updated flashcache source code to taobao-kernel.
- patches.taobao/flashcache-0002-modify-dm_io-to-reserve-bio.patch:
md: modify dm_io() so it could return bios instead of
submitting it.
- patches.taobao/flashcache-0003-add-mk_rq-to-target_type.patch:
md: add new interface 'mk_rq' in target_type.
- patches.taobao/flashcache-0004-export-__make_request.patch:
block: export symbol __make_request().
- patches.taobao/flashcache-0005-change_flashcache_to_request_based.patch:
flashcache: add option for flashcache to change to
request-based.
- patches.taobao/flashcache-0006-make-sync-write-works-for-cgroup.patch:
flashcache: make sync write works for cgroup.
- patches.taobao/flashcache-0007-blkcg-use-q-and-plid-instead-of-opaque-void-for-blkio_group-association.patch:
blkcg: use q and plid instead of opague void * for blkio_group
association.
- patches.taobao/flashcache-0008-block-prepare-for-multiple-request_lists.patch:
block: prepare for multiple request_lists.
- patches.taobao/flashcache-0009-blkcg-implement-per-blkg-request-allocation.patch:
blkcg: implement per-blkg request allocation.
-------------------------------------------------------------------
Sat Sep 29 11:28:38 CST 2012 - boyu.mt@taobao.com
Upgrade to to RHEL6U3 2.6.32-279.9.1.
- patches.driver/drbd-8.3.10.patch:
- patches.taobao/0001-accouting-L7-networking-traffic-for-TCP-UDP-Raw-IP.patch:
- patches.taobao/0001-dioread-nolock-backport.patch:
- patches.taobao/0002-dioread-nolock-backport.patch:
- patches.taobao/0004-dioread-nolock-backport.patch:
- patches.taobao/0019-ext4-Let-fiemap-work-with-inline-data.patch:
- patches.taobao/bigalloc-001-change-block-and-max_blocks-to-map.patch:
- patches.taobao/bigalloc-011-teach-ext4_ext_map_blocks-about-the-bigalloc-feature.patch:
- patches.taobao/bigalloc-017-Fix-bigalloc-quota-accounting-and-i_blocks-value.patch:
- patches.taobao/bigalloc-024-add-some-tracepoints-in-ext4-extents-c.patch:
- patches.taobao/bigalloc-025-attempt-to-fix-race-in-bigalloc-code-path.patch:
- patches.taobao/bigalloc-026-convert-ext4_ext_handle_uninitialized_extents-to-map.patch:
- patches.taobao/context_switch_per_cpu_stat.patch:
- patches.taobao/export-necessary-kernel-symbols-for-kernel-modules.patch:
- patches.taobao/ext4-free-allocated-and-pre-allocated-blocks-when-ch.patch:
- patches.taobao/fallocate-expose-stale-data-0002-add-in-ext4.patch:
- patches.taobao/fallocate-expose-stale-data-0003-add-sysfs.patch:
- patches.taobao/net-SyncAck-rt_stat-per-IP-address.patch:
- patches.taobao/netoops_002_netconsole_remove_unneeded_reference_counter.patch:
- patches.taobao/netoops_005_netconsole_call_netpoll_cleanup_in_process_context.patch:
- patches.taobao/pagecache_hit_accounting_004_add_readpages_accounting.patch:
- redhat-kernel-changelog:
- redhat-kernel-source/config-generic-rhel:
- redhat-kernel-source/kernel.spec:
- redhat-kernel-source/linux-2.6.32/arch/powerpc/include/asm/cputime.h:
- redhat-kernel-source/linux-2.6.32/arch/powerpc/kernel/time.c:
- redhat-kernel-source/linux-2.6.32/arch/s390/include/asm/cputime.h:
- redhat-kernel-source/linux-2.6.32/arch/x86/include/asm/hw_irq.h:
- redhat-kernel-source/linux-2.6.32/arch/x86/kernel/amd_iommu.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/kernel/apic/io_apic.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/kernel/crash.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/kernel/machine_kexec_32.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/kernel/machine_kexec_64.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/kernel/reboot.c:
- redhat-kernel-source/linux-2.6.32/arch/x86/kvm/vmx.c:
- redhat-kernel-source/linux-2.6.32/drivers/ata/libata-core.c:
- redhat-kernel-source/linux-2.6.32/drivers/gpu/drm/i915/i915_gem_execbuffer.c:
- redhat-kernel-source/linux-2.6.32/drivers/md/dm-raid1.c:
- redhat-kernel-source/linux-2.6.32/drivers/md/dm-region-hash.c:
- redhat-kernel-source/linux-2.6.32/drivers/md/raid1.c:
- redhat-kernel-source/linux-2.6.32/drivers/md/raid10.c:
- redhat-kernel-source/linux-2.6.32/drivers/md/raid5.c:
- redhat-kernel-source/linux-2.6.32/drivers/md/raid5.h:
- redhat-kernel-source/linux-2.6.32/drivers/net/benet/be_main.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/bonding/bond_alb.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/dl2k.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/dl2k.h:
- redhat-kernel-source/linux-2.6.32/drivers/net/e1000e/e1000.h:
- redhat-kernel-source/linux-2.6.32/drivers/net/e1000e/netdev.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/ixgbe/ixgbe.h:
- redhat-kernel-source/linux-2.6.32/drivers/net/ixgbe/ixgbe_dcb_nl.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/ixgbe/ixgbe_main.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/netconsole.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/tun.c:
- redhat-kernel-source/linux-2.6.32/drivers/net/wireless/ipw2x00/Kconfig:
- redhat-kernel-source/linux-2.6.32/drivers/usb/core/devio.c:
- redhat-kernel-source/linux-2.6.32/fs/dlm/config.c:
- redhat-kernel-source/linux-2.6.32/fs/dlm/config.h:
- redhat-kernel-source/linux-2.6.32/fs/dlm/lowcomms.c:
- redhat-kernel-source/linux-2.6.32/fs/dlm/lowcomms.h:
- redhat-kernel-source/linux-2.6.32/fs/dlm/main.c:
- redhat-kernel-source/linux-2.6.32/fs/ext4/extents.c:
- redhat-kernel-source/linux-2.6.32/fs/fs-writeback.c:
- redhat-kernel-source/linux-2.6.32/fs/gfs2/aops.c:
- redhat-kernel-source/linux-2.6.32/fs/nfs/internal.h:
- redhat-kernel-source/linux-2.6.32/fs/proc/stat.c:
- redhat-kernel-source/linux-2.6.32/include/asm-generic/cputime.h:
- redhat-kernel-source/linux-2.6.32/include/linux/hrtimer.h:
- redhat-kernel-source/linux-2.6.32/include/linux/jiffies.h:
- redhat-kernel-source/linux-2.6.32/include/net/inet_sock.h:
- redhat-kernel-source/linux-2.6.32/include/net/tc_act/tc_mirred.h:
- redhat-kernel-source/linux-2.6.32/include/net/tcp.h:
- redhat-kernel-source/linux-2.6.32/kernel/hrtimer.c:
- redhat-kernel-source/linux-2.6.32/kernel/sched_fair.c:
- redhat-kernel-source/linux-2.6.32/kernel/time.c:
- redhat-kernel-source/linux-2.6.32/kernel/time/ntp.c:
- redhat-kernel-source/linux-2.6.32/kernel/time/timekeeping.c:
- redhat-kernel-source/linux-2.6.32/mm/hugetlb.c:
- redhat-kernel-source/linux-2.6.32/net/8021q/vlan.c:
- redhat-kernel-source/linux-2.6.32/net/bluetooth/sco.c:
- redhat-kernel-source/linux-2.6.32/net/bridge/br_multicast.c:
- redhat-kernel-source/linux-2.6.32/net/dccp/ipv4.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/af_inet.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/cipso_ipv4.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/ip_options.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/ip_output.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/ip_sockglue.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/raw.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/syncookies.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/tcp_ipv4.c:
- redhat-kernel-source/linux-2.6.32/net/ipv4/udp.c:
- redhat-kernel-source/linux-2.6.32/net/rds/recv.c:
- redhat-kernel-source/linux-2.6.32/net/sched/act_api.c:
- redhat-kernel-source/linux-2.6.32/net/sched/act_gact.c:
- redhat-kernel-source/linux-2.6.32/net/sched/act_ipt.c:
- redhat-kernel-source/linux-2.6.32/net/sched/act_mirred.c:
- redhat-kernel-source/linux-2.6.32/net/sched/act_pedit.c:
- redhat-kernel-source/linux-2.6.32/net/sched/act_simple.c:
- redhat-kernel-source/linux-2.6.32/net/sched/cls_u32.c:
- redhat-kernel-source/linux-2.6.32/net/sched/ematch.c:
- redhat-kernel-source/linux-2.6.32/net/wireless/nl80211.c:
- redhat-kernel-source/linux-2.6.32/virt/kvm/kvm_main.c:
- redhat-kernel-version:
-------------------------------------------------------------------
Thu Sep 27 23:50:14 CST 2012 - boyu.mt@taobao.com
update kgtp to v20120920.
- patches.taobao/kernel-gdb-trace-point.patch:
-------------------------------------------------------------------
Wed Sep 26 21:55:47 CST 2012 - boyu.mt@taobao.com
add drbd back to taobao kernel since aliyun use it.
- Update config files.
-------------------------------------------------------------------
Fri Sep 14 21:32:13 CST 2012 - boyu.mt@taobao.com
Fix a wrong oom when we CoW a huge page.
- patches.taobao/thp-memcg-split-hugepage-for-memcg-oom-on-cow.patch:
-------------------------------------------------------------------
Fri Sep 14 01:58:05 CST 2012 - boyu.mt@taobao.com
Update the perf build fix with the new patch.
- patches.taobao/perf-builtin-test-compile-warning.patch:
-------------------------------------------------------------------
Tue Sep 4 23:00:22 CST 2012 - boyu.mt@taobao.com
Enable TOA for ipv6.
- patches.taobao/toa.patch:
-------------------------------------------------------------------
Tue Sep 4 11:17:58 CST 2012 - gaoyang.zyh@taobao.com
add a rpmbuild wrapper
- rpm/README:
- rpm/fullbuild.sh:
- scripts/package.py:
-------------------------------------------------------------------
Sat Aug 25 00:40:02 CST 2012 - boyu.mt@taobao.com
Fix a build error in kgtp.
- patches.taobao/kernel-gdb-trace-point.patch:
-------------------------------------------------------------------
Fri Aug 24 23:29:22 CST 2012 - boyu.mt@taobao.com
Add the feature dio overwrite and network accounting.
- patches.taobao/0001-accouting-L7-networking-traffic-for-TCP-UDP-Raw-IP.patch:
- patches.taobao/0001-dio-overwrite-nolock-backport.patch:
- patches.taobao/0001-dioread-nolock-backport.patch:
- patches.taobao/0002-Feed-net-accounting-data-into-TASKSTATS-interface-t.patch:
- patches.taobao/0002-dio-overwrite-nolock-backport.patch:
- patches.taobao/0002-dioread-nolock-backport.patch:
- patches.taobao/0003-dio-overwrite-nolock-backport.patch:
- patches.taobao/0003-dioread-nolock-backport.patch:
- patches.taobao/0004-dioread-nolock-backport.patch:
- patches.taobao/0005-dioread-nolock-backport.patch:
- patches.taobao/0006-dioread-nolock-backport.patch:
- patches.taobao/0007-dioread-nolock-backport.patch:
- patches.taobao/0008-dioread-nolock-backport.patch:
-------------------------------------------------------------------
Thu Aug 9 00:45:38 CST 2012 - boyu.mt@taobao.com
Get the new kgtp and rebase it to 2.6.32-279.2.1
- patches.taobao/kernel-gdb-trace-point.patch:
- patches.taobao/kernel-gdb-trace-point-20120131.patch: Delete.
-------------------------------------------------------------------
Fri Aug 3 13:35:50 CST 2012 - boyu.mt@taobao.com
Fix a build error after rebasing to 2.6.32-279.2.1
- patches.taobao/perf-builtin-test-compile-warning.patch:
-------------------------------------------------------------------
Thu Aug 2 15:02:04 CST 2012 - boyu.mt@taobao.com
Upgrade to to RHEL6U3 2.6.32-279.2.1.
- Update config files.
- patches.driver/bnx2-disable-msi-when-no-per-vector-masking.patch:
Refresh.
- patches.taobao/0001-ext4-Move-extra-inode-read-to-a-new-function.patch:
Refresh.
- patches.taobao/0002-ext4-export-inline-xattr-functions.patch:
Refresh.
- patches.taobao/0003-ext4-Add-the-basic-function-for-inline-data-support.patch:
Refresh.
- patches.taobao/0004-ext4-Add-read-support-for-inline-data.patch:
Refresh.
-------------------------------------------------------------------
Wed Aug 1 19:30:02 CST 2012 - boyu.mt@taobao.com
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 - boyu.mt@taobao.com
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 - boyu.mt@taobao.com
Fix a patch generation error.
- patches.taobao/net-rt-stat-skip-retransmitted-connections.patch:
-------------------------------------------------------------------
Wed Jun 20 18:52:46 CST 2012 - boyu.mt@taobao.com
net:rt stat skip retransmitted connections.
- patches.taobao/net-rt-stat-skip-retransmitted-connections.patch:
-------------------------------------------------------------------
Wed Jun 20 00:18:18 CST 2012 - bosong.ly@taobao.com
- 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 - boyu.mt@taobao.com
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:08:27 CST 2012 - gaoyang.zyh@taobao.com
Remove this one since it has been merged in RHEL kernel.
- patches.driver/e1000e-1.3.10a.patch: Delete.
-------------------------------------------------------------------
Fri Jun 8 12:04:45 CST 2012 - gaoyang.zyh@taobao.com
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 - bingtian.ly@taobao.com
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:41:27 CST 2012 - boyu.mt@taobao.com
Fix a build error.
- patches.taobao/loadavg-bug-fix-003.patch:
-------------------------------------------------------------------
Tue Jun 5 07:08:19 CST 2012 - boyu.mt@taobao.com
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 - boyu.mt@taobao.com
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:53:07 CST 2012 - bosong.ly@taobao.com
- patches.taobao/nohz-0006-procfs-do-not-overflow-get_idle-iowait_time-for-nohz.patch:
update commit log which is modified by Bosong.
-------------------------------------------------------------------
Thu May 24 00:09:06 CST 2012 - boyu.mt@taobao.com
- patches.taobao/block-throttle-Add-IO-throttled-information-in-blkcg.patch:
-------------------------------------------------------------------
Thu May 17 02:26:47 CST 2012 - bosong.ly@taobao.com
- Upgrade to RHEL6.2 2.6.32-220.17.1 kernel
- 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 - boyu.mt@taobao.com
- patches.taobao/ext4-allocate-delalloc-blocks-before-changing-journa.patch:
-------------------------------------------------------------------
Fri May 11 01:35:46 CST 2012 - boyu.mt@taobao.com
- patches.taobao/net-SyncAck-rt_stat-per-IP-address.patch:
dos2unix for the patch.
-------------------------------------------------------------------
Thu May 10 18:57:20 CST 2012 - boyu.mt@taobao.com
- 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 16:47:02 CST 2012 - bosong.ly@taobao.com
- patches.taobao/net-SyncAck-rt_stat-per-IP-address.patch:
fix NULL pointer deference on inet6_sk().
-------------------------------------------------------------------
Tue May 8 17:40:51 CST 2012 - bosong.ly@taobao.com
- 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:45:14 CST 2012 - bosong.ly@taobao.com
- Correct patch format, add missing module_exit() lines,
- patches.taobao/overlayfs-0006-overlay-filesystem.patch: Refresh.
- patches.taobao/toa.patch: Refresh.
-------------------------------------------------------------------
Mon May 7 17:19:12 CST 2012 - bosong.ly@taobao.com
- 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:52:49 CST 2012 - bosong.ly@taobao.com
- Update kernel configs:
- configs/
- patches.taobao/kernel-hookers-service.patch
-------------------------------------------------------------------
Mon May 7 15:18:45 CST 2012 - bosong.ly@taobao.com
- patches.taobao/export-necessary-kernel-symbols-for-kernel-modules.patch:
export symbols needed for external kernel module. (renamed and updated from
patches.taobao/lvs-toa-rs-export-symbols.patch)
- 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.
- patches.taobao/toa.patch: TOA: Tcp Option Address for IPv4.
-------------------------------------------------------------------
Wed May 2 21:07:29 CST 2012 - bosong.ly@taobao.com
- patches.taobao/nohz-0007-procfs-do-not-confuse-jiffies-with-cputime64_t.patch:
Deleted since we don't need this fix currently, it makes code more confused.
-------------------------------------------------------------------
Wed May 2 20:59:49 CST 2012 - bosong.ly@taobao.com
- patches.taobao/sched_x86-Fix-overflow-in-cyc2ns_offset.patch:
Fix a minor TSC overflow when booting a kernel by kexec.
-------------------------------------------------------------------
Fri Apr 20 13:43:40 CST 2012 - bosong.ly@taobao.com
- Update to RHEL6 2.6.32-220.13.1
- redhat-kernel-changelog:
- redhat-kernel-source/
- redhat-kernel-version:
- Rebase patches to RHEL6 2.6.32-220.13.1
- patches.taobao/acridafs.patch:
- patches.taobao/block-Make-cfq_target_latency-tunable-through-sysfs.patch:
- 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/nohz-0007-procfs-do-not-confuse-jiffies-with-cputime64_t.patch:
- patches.taobao/tlock.patch: Refresh.
-------------------------------------------------------------------
Fri Apr 13 17:15:21 CST 2012 - hao.bigrat@gmail.com
- Update config files.
- patches.taobao/acridafs.patch:
port acridafs kernel module to 2.6.32 version.
-------------------------------------------------------------------
Fri Apr 13 17:11:56 CST 2012 - sanbai@taobao.com
- patches.taobao/tlock.patch: Refresh.
fix tlock deadlock bug at Toabao-Ads-Hadoop-Cluster #158256
-------------------------------------------------------------------
Wed Mar 28 18:28:57 CST 2012 - bosong.ly@taobao.com
- patches.taobao/mm-sysctl-mlock-flush-pagevec.patch:
set sysctl_mlock_flush_pagevec default to 0 (disable).
-------------------------------------------------------------------
Wed Mar 28 13:49:13 CST 2012 - bosong.ly@taobao.com
- series.conf: add patches.driver/igb-fix-default-behavior-of-RSS-parameter-to-automatically-detect-number-of-Rx-Tx-queues.patch
-------------------------------------------------------------------
Wed Mar 28 00:47:42 CST 2012 - boyu.mt@taobao.com
- patches.taobao/block-Make-cfq_target_latency-tunable-through-sysfs.patch:
-------------------------------------------------------------------
Tue Mar 20 16:16:28 CST 2012 - bosong.ly@taobao.com
- series.conf: add patches.taobao/nohz-0004-add-nsecs_to_jiffies64.patch
- patches.taobao/nohz-0004-sched-Cure-nr_iowait_cpu-users.patch: Delete.
-------------------------------------------------------------------
Tue Mar 20 16:00:01 CST 2012 - bosong.ly@taobao.com
- Add nsecs_to_jiffies64() implementation for nohz fixes:
- patches.taobao/nohz-0004-add-nsecs_to_jiffies64.patch: backport:
add nsecs_to_jiffies64() and nsecs_to_jiffies() (BF#152721).
- Rebase nohz fixes deu to a new patch added:
- patches.taobao/nohz-0001-fix-update_ts_time_stat-idle-accouting.patch: Refresh.
- patches.taobao/nohz-0002-make-idle-iowait-counter-update-conditional.patch: Refresh.
- patches.taobao/nohz-0003-proc-consider-nohz-when-printing-idle-and-iowait-times.patch: Refresh.
- patches.taobao/nohz-0005-sched-Cure-nr_iowait_cpu-users.patch: sched: Cure nr_iowait_cpu() users (BF#152721).
- patches.taobao/nohz-0005-procfs-do-not-overflow-get_idle-iowait_time-for-nohz.patch: Delete.
- patches.taobao/nohz-0006-procfs-do-not-overflow-get_idle-iowait_time-for-nohz.patch:
- patches.taobao/nohz-0006-procfs-do-not-confuse-jiffies-with-cputime64_t.patch: Delete.
- patches.taobao/nohz-0007-procfs-do-not-confuse-jiffies-with-cputime64_t.patch:
-------------------------------------------------------------------
Tue Mar 20 15:57:04 CST 2012 - bosong.ly@taobao.com
- patches.taobao/nohz-0001-fix-update_ts_time_stat-idle-accouting.patch:
Refresh.
- patches.taobao/nohz-0002-make-idle-iowait-counter-update-conditional.patch:
Refresh.
- patches.taobao/nohz-0003-proc-consider-nohz-when-printing-idle-and-iowait-times.patch:
Refresh.
- 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:
-------------------------------------------------------------------
Tue Mar 20 15:56:11 CST 2012 - bosong.ly@taobao.com
- patches.taobao/nohz-0001-fix-update_ts_time_stat-idle-accouting.patch:
Refresh.
- patches.taobao/nohz-0002-make-idle-iowait-counter-update-conditional.patch:
Refresh.
- patches.taobao/nohz-0003-proc-consider-nohz-when-printing-idle-and-iowait-times.patch:
Refresh.
-------------------------------------------------------------------
Tue Mar 20 14:41:22 CST 2012 - bosong.ly@taobao.com
- Update patch format for existing nohz fixes:
- 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).
- Add more fixes related to nohz:
- patches.taobao/nohz-0004-sched-Cure-nr_iowait_cpu-users.patch:
sched: Cure nr_iowait_cpu() users (BF#152721).
- patches.taobao/nohz-0005-procfs-do-not-overflow-get_idle-iowait_time-for-nohz.patch:
- patches.taobao/nohz-0006-procfs-do-not-confuse-jiffies-with-cputime64_t.patch:
- Remove combined nohz fix patch:
- patches.taobao/nohz-idle-time-accounting-fix.patch: Delete.
-------------------------------------------------------------------
Thu Mar 15 19:46:44 CST 2012 - bosong.ly@taobao.com
- patches.taobao/nohz-idle-time-accounting-fix.patch: nohz idle
time accounting fix.
-------------------------------------------------------------------
Fri Mar 9 16:18:54 CST 2012 - bosong.ly@taobao.com
- Add patch-mainline or references in patch header,
- patches.taobao/0001-ext4-Move-extra-inode-read-to-a-new-function.patch:
- patches.taobao/0002-ext4-export-inline-xattr-functions.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/0008-ext4-Create-a-new-function-ext4_init_new_dir.patch:
- patches.taobao/0009-ext4-Refactor-__ext4_check_dir_entry-to-accepts-star.patch:
- patches.taobao/0010-ext4-Create-__ext4_insert_dentry-for-dir-entry-inser.patch:
- patches.taobao/0011-ext4-let-add_dir_entry-handle-inline-data-properly.patch:
- patches.taobao/0012-ext4-Let-ext4_readdir-handle-inline-data.patch:
- patches.taobao/0013-ext4-Create-a-new-function-search_dir.patch:
- patches.taobao/0014-ext4-let-ext4_find_entry-handle-inline-data.patch:
- patches.taobao/0015-ext4-make-ext4_delete_entry-generic.patch:
- patches.taobao/0016-ext4-let-ext4_delete_entry-handle-inline-data.patch:
- patches.taobao/0017-ext4-let-empty_dir-handle-inline-dir.patch:
- patches.taobao/0018-ext4-let-ext4_rename-handle-inline-dir.patch:
- patches.taobao/0019-ext4-Let-fiemap-work-with-inline-data.patch:
- patches.taobao/0020-ext4-Evict-inline-data-out-if-we-needs-to-strore-xat.patch:
- patches.taobao/0021-ext4-Enable-ext4-inline-support.patch:
- patches.taobao/0022-ext4-Fix-ext4_read_inline_page-bug.patch: Update references (in house).
- patches.taobao/0023-ext4-add-truncate-supoort-with-inline-data.patch: Update references (in house).
- patches.taobao/bigalloc-001-change-block-and-max_blocks-to-map.patch:
- patches.taobao/bigalloc-002-ext4-read-only-support-for-bigalloc-file-systems.patch:
- patches.taobao/bigalloc-003-enforce-bigalloc-restrictions-e.g.-no-online.patch:
- patches.taobao/bigalloc-004-convert-instances-of-EXT4_BLOCKS_PER_GROUP-to-EXT4_CLUSTERS_PER_GROUP.patch:
- patches.taobao/bigalloc-005-factor-out-block-group-accounting-into-functions.patch:
- patches.taobao/bigalloc-006-split-out-ext4_free_blocks_after_init.patch:
- patches.taobao/bigalloc-007-bigalloc-changes-to-block-bitmap-initialization-functions.patch:
- patches.taobao/bigalloc-008-convert-block-group-relative-offsets-to-use-clusters.patch:
- patches.taobao/bigalloc-009-teach-mballoc-preallocation-code-about-bigalloc-clusters.patch:
- patches.taobao/bigalloc-010-teach-ext4_free_blocks-about-bigalloc-and-clusters.patch:
- patches.taobao/bigalloc-011-teach-ext4_ext_map_blocks-about-the-bigalloc-feature.patch:
- patches.taobao/bigalloc-012-teach-ext4_ext_truncate-about-the-bigalloc-feature.patch:
- patches.taobao/bigalloc-013-convert-s_-dirty-free-blocks_counter-to-s_-dirty-free-clusters_counter.patch:
- patches.taobao/bigalloc-014-convert-the-free_blocks-field-in-s_flex_groups-to-be-free_clusters.patch:
- patches.taobao/bigalloc-015-teach-ext4_statfs-to-deal-with-clusters-if-bigalloc-is-enabled.patch:
- patches.taobao/bigalloc-016-tune-mballoc-s-default-group-prealloc-size-for-bigalloc-file-systems.patch:
- patches.taobao/bigalloc-017-Fix-bigalloc-quota-accounting-and-i_blocks-value.patch:
- patches.taobao/bigalloc-018-enable-mounting-bigalloc-as-read-write.patch:
- patches.taobao/bigalloc-019-Rename-ext4_free_blks_-count-set-to-refer-to-clusters.patch:
- patches.taobao/bigalloc-020-rename-ext4_count_free_blocks-to-ext4_count_free_clusters.patch:
- patches.taobao/bigalloc-021-rename-ext4_free_blocks_after_init-to-ext4_free_clusters_after_init.patch:
- patches.taobao/bigalloc-022-rename-ext4_claim_free_blocks-to-ext4_claim_free_clusters.patch:
- patches.taobao/bigalloc-023-rename-ext4_has_free_blocks-to-ext4_has_free_clusters.patch:
- patches.taobao/bigalloc-024-add-some-tracepoints-in-ext4-extents-c.patch:
- patches.taobao/bigalloc-025-attempt-to-fix-race-in-bigalloc-code-path.patch:
- patches.taobao/bigalloc-026-convert-ext4_ext_handle_uninitialized_extents-to-map.patch:
- patches.taobao/bio-0001-ext4-call-mpage_da_submit_io-from-mpage_da_map_block.patch:
- patches.taobao/bio-0002-ext4-simplify-ext4_writepage.patch:
- patches.taobao/bio-0003-ext4-inline-ext4_writepage-into-mpage_da_submit_io.patch:
- patches.taobao/bio-0004-ext4-inline-walk_page_buffers-into-mpage_da_submit_i.patch:
- 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/writeback-improve-001-stop-on-wrap-linux_mm_page-writeback.patch:
- patches.taobao/writeback-improve-002-relax-busy-overwrites.patch:
- rpm/kernel.spec.in:
- Delete already dead-patches which are not in series.conf and merged
into RHEL kernel 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:
- patches.taobao/process-life-cycle-resource-accounting.patch:
-------------------------------------------------------------------
Fri Mar 9 12:18:23 CST 2012 - bosong.ly@taobao.com
- Update to RHEL6 2.6.32-220.7.1 kernel
- patches.taobao/cfq_avoid_async_write_starve.patch: Refresh.
- patches.taobao/cfq_request_deadline_policy.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.
- redhat-kernel-changelog:
- redhat-kernel-version:
- redhat-kernel-source/
-------------------------------------------------------------------
Tue Mar 6 17:04:58 CST 2012 - boyu.mt@taobao.com
rebase to the latest 220.
- patches.taobao/ext4-0001-iostat-add-counters-and-functions.patch:
Refresh.
- patches.taobao/ext4-0002-iostat-define-wrapper-functions-for-buffer-layer.patch:
Refresh.
- patches.taobao/ext4-0003-iostat-account-read-metadata-requests-in-buffered-io.patch:
Refresh.
- patches.taobao/ext4-0004-iostat-account-read-data-requests-in-buffered-io.patch:
Refresh.
- patches.taobao/ext4-0005-iostat-account-write-metadata-requests-in-buffered-io.patch:
Refresh.
- patches.taobao/ext4-0006-iostat-account-write-data-requests-in-buffered-io.patch:
Refresh.
- patches.taobao/ext4-0007-iostat-account-requests-in-direct-io.patch:
Refresh.
- patches.taobao/ext4-0008-iostat-show-the-result-of-accouting.patch:
Refresh.
-------------------------------------------------------------------
Tue Mar 6 15:42:58 CST 2012 - boyu.mt@taobao.com
Add ext4 i/o stat.
- patches.taobao/ext4-0001-iostat-add-counters-and-functions.patch:
ext4: add percpu counters and related functions to account
io types.
- patches.taobao/ext4-0002-iostat-define-wrapper-functions-for-buffer-layer.patch:
ext4: add wrapper functions for buffer layer.
- patches.taobao/ext4-0003-iostat-account-read-metadata-requests-in-buffered-io.patch:
ext4: account the metadata request of read operations in
buffered io.
- patches.taobao/ext4-0004-iostat-account-read-data-requests-in-buffered-io.patch:
ext4: account the data request of read operations in buffered
io.
- patches.taobao/ext4-0005-iostat-account-write-metadata-requests-in-buffered-io.patch:
ext4: account the metadata request of write operations in
buffered io.
- patches.taobao/ext4-0006-iostat-account-write-data-requests-in-buffered-io.patch:
ext4: account the data request of write operations in
buffered io.
- patches.taobao/ext4-0007-iostat-account-requests-in-direct-io.patch:
ext4: request accouting in direct io.
- patches.taobao/ext4-0008-iostat-show-the-result-of-accouting.patch:
ext4: show the result of io types accouting.
-------------------------------------------------------------------
Thu Mar 1 11:47:47 CST 2012 - bosong.ly@taobao.com
- patches.taobao/kvm-set-KSM_RUN_STOP-by-default.patch: kvm:
set KSM_RUN_STOP by default.
-------------------------------------------------------------------
Tue Feb 28 19:02:41 CST 2012 - bosong.ly@taobao.com
- patches.taobao/toa.patch: remove compiling error.
-------------------------------------------------------------------
Mon Feb 27 15:47:08 CST 2012 - bosong.ly@taobao.com
- Update config files: modify ACPI_APEI_GHES from m to y in -debug.config
-------------------------------------------------------------------
Fri Feb 24 17:35:00 CST 2012 - bosong.ly@taobao.com
- Update to RHEL6.2 linux-2.6.32-220.4.2 kernel.
- Update config files.
- patches.taobao/context_switch_per_cpu_stat.patch: Refresh.
- patches.taobao/tlock.patch: Refresh.
- 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 13:25:43 CST 2012 - bosong.ly@taobao.com
- Update config files.
- rpm/kernel.spec.in:
- scripts/install-git-hooks:
-------------------------------------------------------------------
Fri Feb 24 12:32:58 CST 2012 - bosong.ly@taobao.com
- Two patches for writeback performance improvement:
- 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.
- rebase patches to remove offset warning,
- patches.taobao/0005-ext4-Add-normal-write-support-for-inline-data.patch: Refresh.
- patches.taobao/bigalloc-002-ext4-read-only-support-for-bigalloc-file-systems.patch: Refresh.
- patches.taobao/bigalloc-003-enforce-bigalloc-restrictions-e.g.-no-online.patch: Refresh.
- patches.taobao/bigalloc-013-convert-s_-dirty-free-blocks_counter-to-s_-dirty-free-clusters_counter.patch: Refresh.
- patches.taobao/bigalloc-014-convert-the-free_blocks-field-in-s_flex_groups-to-be-free_clusters.patch: Refresh.
- patches.taobao/bigalloc-015-teach-ext4_statfs-to-deal-with-clusters-if-bigalloc-is-enabled.patch: Refresh.
- patches.taobao/bigalloc-017-Fix-bigalloc-quota-accounting-and-i_blocks-value.patch: Refresh.
- patches.taobao/bigalloc-019-Rename-ext4_free_blks_-count-set-to-refer-to-clusters.patch: Refresh.
- patches.taobao/bigalloc-020-rename-ext4_count_free_blocks-to-ext4_count_free_clusters.patch: Refresh.
- patches.taobao/context_switch_per_cpu_stat.patch: Refresh.
- patches.taobao/ext4-dont-warn-about-mnt_count-if-it-has-been-disabled.patch: Refresh.
- patches.taobao/ext4-io-error-guard-add-netoops-support.patch: Refresh.
- patches.taobao/list-remove-prefetching-from-regular-list-iterators.patch: Refresh.
-------------------------------------------------------------------
Thu Feb 23 13:18:03 CST 2012 - bosong.ly@taobao.com
- 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:03:33 CST 2012 - bosong.ly@taobao.com
- patches.taobao/ext4-io-error-guard-for-file-system-protection-on-broken-storage-device.patch:
fix quite a few NULL dereference bugs.
- patches.taobao/toa.patch: Refresh.
-------------------------------------------------------------------
Mon Feb 20 13:30:22 CST 2012 - bosong.ly@taobao.com
- scripts/find-provides: add "import getpass" to get user name,
which is needed when inserting user-name into kapideps file name.
-------------------------------------------------------------------
Fri Feb 17 19:19:49 CST 2012 - bosong.ly@taobao.com
- patches.taobao/0004-ext4-Add-read-support-for-inline-data.patch:
fix a NULL dereference by replacing file->f_mapping->host by
page->mapping->host.
- patches.taobao/0022-ext4-Fix-ext4_read_inline_page-bug.patch:
refresh because this patch depends on
0004-ext4-Add-read-support-for-inline-data.patch
-------------------------------------------------------------------
Fri Feb 17 18:59:59 CST 2012 - bosong.ly@taobao.com
- patches.taobao/toa.patch: solve net/Kconfig merging confliction.