From: Andi Kleen <andi@firstfloor.org>
To: venki@google.com, a.p.zijlstra@chello.nl, ak@linux.intel.com,
mingo@elte.hu, efault@gmx.de, gregkh@suse.de,
linux-kernel@vger.kernel.org, stable@kernel.org,
tim.bird@am.sony.com
Subject: [PATCH] [89/275] sched: Increment cache_nice_tries only on periodic lb
Date: Wed, 30 Mar 2011 14:05:27 -0700 (PDT) [thread overview]
Message-ID: <20110330210527.632863E1A05@tassilo.jf.intel.com> (raw)
In-Reply-To: <20110330203.501921634@firstfloor.org>
2.6.35-longterm review patch. If anyone has any objections, please let me know.
------------------
Commit: 58b26c4c025778c09c7a1438ff185080e11b7d0a upstream
scheduler uses cache_nice_tries as an indicator to do cache_hot and
active load balance, when normal load balance fails. Currently,
this value is changed on any failed load balance attempt. That ends
up being not so nice to workloads that enter/exit idle often, as
they do more frequent new_idle balance and that pretty soon results
in cache hot tasks being pulled in.
Making the cache_nice_tries ignore failed new_idle balance seems to
make better sense. With that only the failed load balance in
periodic load balance gets accounted and the rate of accumulation
of cache_nice_tries will not depend on idle entry/exit (short
running sleep-wakeup kind of tasks). This reduces movement of
cache_hot tasks.
schedstat diff (after-before) excerpt from a workload that has
frequent and short wakeup-idle pattern (:2 in cpu col below refers
to NEWIDLE idx) This snapshot was across ~400 seconds.
Without this change:
domainstats: domain0
cpu cnt bln fld imb gain hgain nobusyq nobusyg
0:2 306487 219575 73167 110069413 44583 19070 1172 218403
1:2 292139 194853 81421 120893383 50745 21902 1259 193594
2:2 283166 174607 91359 129699642 54931 23688 1287 173320
3:2 273998 161788 93991 132757146 57122 24351 1366 160422
4:2 289851 215692 62190 83398383 36377 13680 851 214841
5:2 316312 222146 77605 117582154 49948 20281 988 221158
6:2 297172 195596 83623 122133390 52801 21301 929 194667
7:2 283391 178078 86378 126622761 55122 22239 928 177150
8:2 297655 210359 72995 110246694 45798 19777 1125 209234
9:2 297357 202011 79363 119753474 50953 22088 1089 200922
10:2 278797 178703 83180 122514385 52969 22726 1128 177575
11:2 272661 167669 86978 127342327 55857 24342 1195 166474
12:2 293039 204031 73211 110282059 47285 19651 948 203083
13:2 289502 196762 76803 114712942 49339 20547 1016 195746
14:2 264446 169609 78292 115715605 50459 21017 982 168627
15:2 260968 163660 80142 116811793 51483 21281 1064 162596
With this change:
domainstats: domain0
cpu cnt bln fld imb gain hgain nobusyq nobusyg
0:2 272347 187380 77455 105420270 24975 1 953 186427
1:2 267276 172360 86234 116242264 28087 6 1028 171332
2:2 259769 156777 93281 123243134 30555 1 1043 155734
3:2 250870 143129 97627 127370868 32026 6 1188 141941
4:2 248422 177116 64096 78261112 22202 2 757 176359
5:2 275595 180683 84950 116075022 29400 6 778 179905
6:2 262418 162609 88944 119256898 31056 4 817 161792
7:2 252204 147946 92646 122388300 32879 4 824 147122
8:2 262335 172239 81631 110477214 26599 4 864 171375
9:2 261563 164775 88016 117203621 28331 3 849 163926
10:2 243389 140949 93379 121353071 29585 2 909 140040
11:2 242795 134651 98310 124768957 30895 2 1016 133635
12:2 255234 166622 79843 104696912 26483 4 746 165876
13:2 244944 151595 83855 109808099 27787 3 801 150794
14:2 241301 140982 89935 116954383 30403 6 845 140137
15:2 232271 128564 92821 119185207 31207 4 1416 127148
Signed-off-by: Venkatesh Pallipadi <venki@google.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
LKML-Reference: <1284167957-3675-1-git-send-email-venki@google.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Mike Galbraith <efault@gmx.de>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
---
kernel/sched_fair.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
Index: linux-2.6.35.y/kernel/sched_fair.c
===================================================================
--- linux-2.6.35.y.orig/kernel/sched_fair.c 2011-03-29 23:02:59.969300955 -0700
+++ linux-2.6.35.y/kernel/sched_fair.c 2011-03-29 23:55:04.726346241 -0700
@@ -2894,7 +2894,14 @@
if (!ld_moved) {
schedstat_inc(sd, lb_failed[idle]);
- sd->nr_balance_failed++;
+ /*
+ * Increment the failure counter only on periodic balance.
+ * We do not want newidle balance, which can be very
+ * frequent, pollute the failure counter causing
+ * excessive cache_hot migrations and active balances.
+ */
+ if (idle != CPU_NEWLY_IDLE)
+ sd->nr_balance_failed++;
if (need_active_balance(sd, sd_idle, idle)) {
raw_spin_lock_irqsave(&busiest->lock, flags);
next prev parent reply other threads:[~2011-03-30 21:07 UTC|newest]
Thread overview: 295+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-30 21:03 [PATCH] [0/275] 2.6.35.12 longterm review Andi Kleen
2011-03-30 21:03 ` [PATCH] [1/275] perf session: Invalidate last_match when removing threads from rb_tree Andi Kleen
2011-03-30 21:03 ` [PATCH] [2/275] thinkpad-acpi: lock down size of hotkey keymap Andi Kleen
2011-03-30 21:03 ` [PATCH] [3/275] thinkpad-acpi: add support for model-specific keymaps Andi Kleen
2011-03-30 21:03 ` [PATCH] [4/275] thinkpad-acpi: Add KEY_CAMERA (Fn-F6) for Lenovo keyboards Andi Kleen
2011-03-30 21:03 ` [PATCH] [5/275] thinkpad-acpi: avoid keymap pitfall Andi Kleen
2011-03-30 21:03 ` [PATCH] [6/275] Fix cred leak in AF_NETLINK Andi Kleen
2011-03-30 21:04 ` [PATCH] [7/275] staging: usbip: remove double giveback of URB Andi Kleen
2011-03-30 21:04 ` [PATCH] [8/275] USB: EHCI: ASPM quirk of ISOC on AMD SB800 Andi Kleen
2011-03-30 21:04 ` [PATCH] [9/275] rt2x00: add device id for windy31 usb device Andi Kleen
2011-03-30 21:04 ` [PATCH] [10/275] ALSA: snd-usb-us122l: Fix missing NULL checks Andi Kleen
2011-03-30 21:04 ` [PATCH] [11/275] hwmon: (via686a) Initialize fan_div values Andi Kleen
2011-03-30 21:04 ` [PATCH] [12/275] USB: serial: handle Data Carrier Detect changes Andi Kleen
2011-03-30 21:04 ` [PATCH] [13/275] USB: CP210x Add two device IDs Andi Kleen
2011-03-30 21:04 ` [PATCH] [14/275] USB: CP210x Removed incorrect device ID Andi Kleen
2011-03-30 21:04 ` [PATCH] [15/275] USB: usb-storage: unusual_devs update for Cypress ATACB Andi Kleen
2011-03-30 21:04 ` [PATCH] [16/275] USB: usb-storage: unusual_devs update for TrekStor DataStation maxi g.u external hard drive enclosure Andi Kleen
2011-03-30 21:04 ` [PATCH] [17/275] USB: usb-storage: unusual_devs entry for CamSport Evo Andi Kleen
2011-03-30 21:04 ` [PATCH] [18/275] USB: usb-storage: unusual_devs entry for Coby MP3 player Andi Kleen
2011-03-30 21:04 ` [PATCH] [19/275] USB: serial: Updated support for ICOM devices Andi Kleen
2011-03-30 21:04 ` [PATCH] [20/275] USB: adding USB support for Cinterion's HC2x, EU3 and PH8 products Andi Kleen
2011-03-30 21:04 ` [PATCH] [21/275] USB: EHCI: ASPM quirk of ISOC on AMD Hudson Andi Kleen
2011-03-30 21:04 ` [PATCH] [22/275] USB: EHCI: fix DMA deallocation bug Andi Kleen
2011-03-30 21:04 ` [PATCH] [23/275] USB: g_printer: fix bug in module parameter definitions Andi Kleen
2011-03-30 21:04 ` [PATCH] [24/275] USB: io_edgeport: fix the reported firmware major and minor Andi Kleen
2011-03-30 21:04 ` [PATCH] [25/275] USB: ti_usb: fix module removal Andi Kleen
2011-03-30 21:04 ` [PATCH] [26/275] USB: Storage: Add unusual_devs entry for VTech Kidizoom Andi Kleen
2011-03-30 21:04 ` [PATCH] [27/275] USB: ftdi_sio: add ST Micro Connect Lite uart support Andi Kleen
2011-03-30 21:04 ` [PATCH] [28/275] USB: cdc-acm: Adding second ACM channel support for Nokia N8 Andi Kleen
2011-03-30 21:04 ` [PATCH] [29/275] USB: ftdi_sio: Add VID=0x0647, PID=0x0100 for Acton Research spectrograph Andi Kleen
2011-03-30 21:04 ` [PATCH] [30/275] USB: prevent buggy hubs from crashing the USB stack Andi Kleen
2011-03-30 21:04 ` [PATCH] [31/275] staging: comedi: add support for newer jr3 1-channel pci board Andi Kleen
2011-03-30 21:04 ` [PATCH] [32/275] staging: comedi: ni_labpc: Use shared IRQ for PCMCIA card Andi Kleen
2011-03-30 21:04 ` [PATCH] [33/275] Staging: hv: fix sysfs symlink on hv block device Andi Kleen
2011-03-30 21:04 ` [PATCH] [34/275] staging: hv: Enable sending GARP packet after live migration Andi Kleen
2011-03-30 21:04 ` [PATCH] [35/275] iwlagn: enable only rfkill interrupt when device is down Andi Kleen
2011-03-30 21:04 ` [PATCH] [36/275] ath9k: Fix bug in delimiter padding computation Andi Kleen
2011-03-30 21:04 ` [PATCH] [37/275] fix medium error problems with some arrays which can cause data corruption Andi Kleen
2011-03-30 21:04 ` [PATCH] [38/275] libsas: fix runaway error handler problem Andi Kleen
2011-03-30 21:04 ` [PATCH] [39/275] mpt2sas: Fix device removal handshake for zoned devices Andi Kleen
2011-03-30 21:04 ` [PATCH] [40/275] mpt2sas: Correct resizing calculation for max_queue_depth Andi Kleen
2011-03-30 21:04 ` [PATCH] [41/275] mpt2sas: Kernel Panic during Large Topology discovery Andi Kleen
2011-03-30 21:04 ` [PATCH] [42/275] radio-aimslab.c: Fix gcc 4.5+ bug Andi Kleen
2011-03-30 21:04 ` [PATCH] [43/275] em28xx: Fix audio input for Terratec Grabby Andi Kleen
2011-03-30 21:04 ` [PATCH] [44/275] ALSA : au88x0 - Limit number of channels to fix Oops via OSS emu Andi Kleen
2011-03-30 21:04 ` [PATCH] [45/275] ALSA: HDA: Fix dmesg output of HDMI supported bits Andi Kleen
2011-03-30 21:04 ` [PATCH] [46/275] ALSA: hda - Fix memory leaks in conexant jack arrays Andi Kleen
2011-03-30 21:04 ` [PATCH] [47/275] input: bcm5974: Add support for MacBookAir3 Andi Kleen
2011-03-30 21:04 ` [PATCH] [48/275] ALSA: hrtimer: handle delayed timer interrupts Andi Kleen
2011-03-30 21:04 ` [PATCH] [49/275] ASoC: WM8990: msleep() takes milliseconds not jiffies Andi Kleen
2011-03-30 21:04 ` [PATCH] [50/275] ASoC: Blackfin AC97: fix build error after multi-component update Andi Kleen
2011-03-30 21:04 ` [PATCH] [51/275] NFS: Fix "kernel BUG at fs/aio.c:554!" Andi Kleen
2011-03-30 21:04 ` [PATCH] [52/275] rtc-cmos: fix suspend/resume Andi Kleen
2011-03-30 21:04 ` [PATCH] [53/275] iwlagn: Re-enable RF_KILL interrupt when down Andi Kleen
2011-03-30 21:04 ` [PATCH] [54/275] rapidio: fix hang on RapidIO doorbell queue full condition Andi Kleen
2011-03-30 21:04 ` [PATCH] [55/275] PCI: pci-stub: ignore zero-length id parameters Andi Kleen
2011-03-30 21:04 ` [PATCH] [56/275] virtio: remove virtio-pci root device Andi Kleen
2011-03-30 21:04 ` [PATCH] [57/275] ds2760_battery: Fix calculation of time_to_empty_now Andi Kleen
2011-03-30 21:04 ` [PATCH] [58/275] p54: fix sequence no. accounting off-by-one error Andi Kleen
2011-03-30 21:04 ` [PATCH] [59/275] i2c: Unregister dummy devices last on adapter removal Andi Kleen
2011-03-30 21:04 ` [PATCH] [60/275] serial: unbreak billionton CF card Andi Kleen
2011-03-30 21:04 ` [PATCH] [61/275] ptrace: use safer wake up on ptrace_detach() Andi Kleen
2011-03-30 21:04 ` [PATCH] [62/275] x86, mtrr: Avoid MTRR reprogramming on BP during boot on UP platforms Andi Kleen
2011-03-30 21:04 ` [PATCH] [63/275] fix jiffy calculations in calibrate_delay_direct to handle overflow Andi Kleen
2011-03-30 21:05 ` [PATCH] [64/275] drivers: update to pl2303 usb-serial to support Motorola cables Andi Kleen
2011-03-30 21:05 ` [PATCH] [65/275] klist: Fix object alignment on 64-bit Andi Kleen
2011-03-30 21:05 ` [PATCH] [66/275] powerpc: Fix some 6xx/7xxx CPU setup functions Andi Kleen
2011-03-30 21:05 ` [PATCH] [67/275] parisc : Remove broken line wrapping handling pdc_iodc_print() Andi Kleen
2011-03-30 21:05 ` [PATCH] [68/275] kernel/smp.c: fix smp_call_function_many() SMP race Andi Kleen
2011-03-30 21:05 ` [PATCH] [69/275] hostap_cs: fix sleeping function called from invalid context Andi Kleen
2011-03-30 21:05 ` [PATCH] [70/275] md: fix regression with re-adding devices to arrays with no metadata Andi Kleen
2011-03-30 21:05 ` [PATCH] [71/275] pata_mpc52xx: inherit from ata_bmdma_port_ops Andi Kleen
2011-03-30 21:05 ` [PATCH] [72/275] TPM: Long default timeout fix Andi Kleen
2011-03-30 21:05 ` [PATCH] [73/275] tpm_tis: Use timeouts returned from TPM Andi Kleen
2011-03-30 21:13 ` Stefan Berger
2011-03-30 21:20 ` Andi Kleen
2011-03-30 21:24 ` Stefan Berger
2011-03-30 21:31 ` Andi Kleen
2011-03-30 21:05 ` [PATCH] [74/275] SELinux: define permissions for DCB netlink messages Andi Kleen
2011-03-30 21:05 ` [PATCH] [75/275] SELinux: do not compute transition labels on mountpoint labeled filesystems Andi Kleen
2011-03-30 21:05 ` [PATCH] [76/275] ieee80211: correct IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK macro Andi Kleen
2011-03-30 21:05 ` [PATCH] [77/275] dm: dont take i_mutex to change device size Andi Kleen
2011-03-30 21:05 ` [PATCH] [78/275] dm mpath: disable blk_abort_queue Andi Kleen
2011-03-30 21:05 ` [PATCH] [79/275] drm/radeon/kms: add quirk for Mac Radeon HD 2600 card Andi Kleen
2011-03-30 21:05 ` [PATCH] [80/275] drm/radeon/kms: make the mac rv630 quirk generic Andi Kleen
2011-03-30 21:05 ` [PATCH] [81/275] drm/radeon/kms: add pll debugging output Andi Kleen
2011-03-30 21:05 ` [PATCH] [82/275] drm/radeon: remove 0x4243 pci id Andi Kleen
2011-03-30 21:05 ` [PATCH] [83/275] drm/radeon/kms: fix s/r issues with bios scratch regs Andi Kleen
2011-03-30 21:05 ` [PATCH] [84/275] drm/i915/lvds: Add AOpen i915GMm-HFS to the list of false-positive LVDS Andi Kleen
2011-03-30 21:05 ` [PATCH] [85/275] drm/i915: Add dependency on CONFIG_TMPFS Andi Kleen
2011-03-30 21:05 ` [PATCH] [86/275] x86, mm: avoid possible bogus tlb entries by clearing prev mm_cpumask after switching mm Andi Kleen
2011-03-30 21:05 ` [PATCH] [87/275] usb: Realloc xHCI structures after a hub is verified Andi Kleen
2011-03-30 21:05 ` [PATCH] [88/275] sched: Move sched_avg_update() to update_cpu_load() Andi Kleen
2011-03-30 21:05 ` Andi Kleen [this message]
2011-03-30 21:05 ` [PATCH] [90/275] sched: Try not to migrate higher priority RT tasks Andi Kleen
2011-03-30 21:05 ` [PATCH] [91/275] sched: Give CPU bound RT tasks preference Andi Kleen
2011-03-30 21:05 ` [PATCH] [93/275] sched: Do not consider SCHED_IDLE tasks to be cache hot Andi Kleen
2011-03-30 21:05 ` [PATCH] [94/275] sched: Set group_imb only a task can be pulled from the busiest cpu Andi Kleen
2011-03-30 21:05 ` [PATCH] [95/275] sched: Force balancing on newidle balance if local group has capacity Andi Kleen
2011-03-30 21:05 ` [PATCH] [96/275] sched: Drop group_capacity to 1 only if local group has extra capacity Andi Kleen
2011-03-30 21:05 ` [PATCH] [97/275] sched: Fix softirq time accounting Andi Kleen
2011-03-30 21:05 ` [PATCH] [98/275] sched: Consolidate account_system_vtime extern declaration Andi Kleen
2011-03-30 21:05 ` [PATCH] [99/275] sched: Remove unused PF_ALIGNWARN flag Andi Kleen
2011-03-30 21:05 ` [PATCH] [100/275] sched: Add a PF flag for ksoftirqd identification Andi Kleen
2011-03-30 21:05 ` [PATCH] [101/275] sched: Add IRQ_TIME_ACCOUNTING, finer accounting of irq time Andi Kleen
2011-03-30 21:05 ` [PATCH] [102/275] x86: Add IRQ_TIME_ACCOUNTING Andi Kleen
2011-03-30 21:05 ` [PATCH] [103/275] sched: Do not account irq time to current task Andi Kleen
2011-03-30 21:05 ` [PATCH] [104/275] sched: Remove irq time from available CPU power Andi Kleen
2011-03-30 21:05 ` [PATCH] [105/275] sched: Call tick_check_idle before __irq_enter Andi Kleen
2011-03-30 21:05 ` [PATCH] [106/275] sched: Export account_system_vtime() Andi Kleen
2011-03-30 21:05 ` [PATCH] [107/275] sched, cgroup: Fixup broken cgroup movement Andi Kleen
2011-03-30 21:05 ` [PATCH] [108/275] sched: Use group weight, idle cpu metrics to fix imbalances during idle Andi Kleen
2011-03-30 21:05 ` [PATCH] [109/275] kernel/user.c: add lock release annotation on free_user() Andi Kleen
2011-03-30 21:05 ` [PATCH] [110/275] NFSD: memory corruption due to writing beyond the stat array Andi Kleen
2011-03-30 21:05 ` [PATCH] [111/275] mptfusion: mptctl_release is required in mptctl.c Andi Kleen
2011-03-30 21:05 ` [PATCH] [112/275] mptfusion: Fix Incorrect return value in mptscsih_dev_reset Andi Kleen
2011-03-30 21:05 ` [PATCH] [113/275] sctp: Fix out-of-bounds reading in sctp_asoc_get_hmac() Andi Kleen
2011-03-30 21:05 ` [PATCH] [114/275] ocfs2_connection_find() returns pointer to bad structure Andi Kleen
2011-03-30 21:05 ` [PATCH] [115/275] OHCI: work around for nVidia shutdown problem Andi Kleen
2011-03-31 5:54 ` Pali Rohár
2011-03-31 6:07 ` Andi Kleen
2011-03-31 13:55 ` Alan Stern
2011-03-31 18:51 ` Andi Kleen
2011-06-23 18:54 ` Alan Stern
2011-03-30 21:05 ` [PATCH] [116/275] x86/pvclock: Zero last_value on resume Andi Kleen
2011-03-30 21:05 ` [PATCH] [117/275] [v3,media] av7110: check for negative array offset Andi Kleen
2011-03-30 21:05 ` [PATCH] [118/275] bonding/vlan: Avoid mangled NAs on slaves without VLAN tag insertion Andi Kleen
2011-03-30 21:05 ` [PATCH] [119/275] CRED: Fix kernel panic upon security_file_alloc() failure Andi Kleen
2011-03-30 21:06 ` [PATCH] [120/275] CRED: Fix BUG() upon security_cred_alloc_blank() failure Andi Kleen
2011-03-30 21:06 ` [PATCH] [121/275] CRED: Fix memory and refcount leaks upon security_prepare_creds() failure Andi Kleen
2011-03-30 21:06 ` [PATCH] [122/275] NFS: fix the return value of nfs_file_fsync() Andi Kleen
2011-03-30 21:06 ` [PATCH] [123/275] isdn: hisax: Replace the bogus access to irq stats Andi Kleen
2011-03-30 21:06 ` [PATCH] [124/275] scsi_dh_alua: add netapp to dev list Andi Kleen
2011-03-30 21:06 ` [PATCH] [125/275] scsi_dh_alua: Add IBM Power Virtual SCSI ALUA device " Andi Kleen
2011-03-30 21:06 ` [PATCH] [126/275] nfsd: correctly handle return value from nfsd_map_name_to_* Andi Kleen
2011-03-30 21:06 ` [PATCH] [127/275] s390: remove task_show_regs Andi Kleen
2011-03-30 21:06 ` [PATCH] [128/275] PM / Hibernate: Return error code when alloc_image_page() fails Andi Kleen
2011-03-30 21:06 ` [PATCH] [129/275] fs/partitions: Validate map_count in Mac partition tables Andi Kleen
2011-03-30 21:06 ` [PATCH] [130/275] ALSA: HDA: Add position_fix quirk for an Asus device Andi Kleen
2011-03-30 21:06 ` [PATCH] [131/275] ALSA: caiaq - Fix possible string-buffer overflow Andi Kleen
2011-03-30 21:06 ` [PATCH] [132/275] radio-aimslab.c needs #include <linux/delay.h> Andi Kleen
2011-03-30 21:06 ` [PATCH] [133/275] ARM: Ensure predictable endian state on signal handler entry Andi Kleen
2011-03-30 21:06 ` [PATCH] [134/275] acer-wmi: Fix capitalisation of GUID Andi Kleen
2011-03-30 21:06 ` [PATCH] [135/275] eCryptfs: Copy up lower inode attrs in getattr Andi Kleen
2011-03-30 21:06 ` [PATCH] [136/275] platform: x86: acer-wmi: world-writable sysfs threeg file Andi Kleen
2011-03-30 21:06 ` [PATCH] [137/275] platform: x86: asus_acpi: world-writable procfs files Andi Kleen
2011-03-30 21:06 ` [PATCH] [138/275] platform: x86: tc1100-wmi: world-writable sysfs wireless and jogdial files Andi Kleen
2011-03-30 21:06 ` [PATCH] [139/275] genirq: Disable the SHIRQ_DEBUG call in request_threaded_irq for now Andi Kleen
2011-03-30 21:06 ` [PATCH] [140/275] usb: musb: omap2430: fix kernel panic on reboot Andi Kleen
2011-03-30 21:06 ` [PATCH] [141/275] USB: add quirks entry for Keytouch QWERTY Panel Andi Kleen
2011-03-30 21:06 ` [PATCH] [142/275] USB: Add Samsung SGH-I500/Android modem ID switch to visor driver Andi Kleen
2011-03-30 21:06 ` [PATCH] [143/275] USB: Add quirk for Samsung Android phone modem Andi Kleen
2011-03-30 21:06 ` [PATCH] [144/275] p54pci: update receive dma buffers before and after processing Andi Kleen
2011-03-30 21:06 ` [PATCH] [145/275] sierra: add new ID for Airprime/Sierra USB IP modem Andi Kleen
2011-03-30 21:06 ` [PATCH] [146/275] staging: usbip: vhci: update reference count for usb_device Andi Kleen
2011-03-30 21:06 ` [PATCH] [147/275] staging: usbip: vhci: give back URBs from in-flight unlink requests Andi Kleen
2011-03-30 21:06 ` [PATCH] [148/275] staging: usbip: vhci: refuse to enqueue for dead connections Andi Kleen
2011-03-30 21:06 ` [PATCH] [149/275] staging: usbip: vhci: use urb->dev->portnum to find port Andi Kleen
2011-03-30 21:06 ` [PATCH] [150/275] epoll: prevent creating circular epoll structures Andi Kleen
2011-03-30 21:06 ` [PATCH] [151/275] ldm: corrupted partition table can cause kernel oops Andi Kleen
2011-03-30 21:06 ` [PATCH] [152/275] md: correctly handle probe of an 'mdp' device Andi Kleen
2011-03-30 21:06 ` [PATCH] [153/275] x86 quirk: Fix polarity for IRQ0 pin2 override on SB800 systems Andi Kleen
2011-03-30 21:06 ` [PATCH] [154/275] xhci: Avoid BUG() in interrupt context Andi Kleen
2011-03-30 21:06 ` [PATCH] [155/275] xhci: Clarify some expressions in the TRB math Andi Kleen
2011-03-30 21:06 ` [PATCH] [156/275] xhci: Fix errors in the running total calculations " Andi Kleen
2011-03-30 21:06 ` [PATCH] [157/275] xhci: Fix an error in count_sg_trbs_needed() Andi Kleen
2011-03-30 21:06 ` [PATCH] [158/275] x25: Do not reference freed memory Andi Kleen
2011-03-30 21:06 ` [PATCH] [159/275] Ocfs2/refcounttree: Fix a bug for refcounttree to writeback clusters in a right number Andi Kleen
2011-03-30 21:06 ` [PATCH] [160/275] drm: fix unsigned vs signed comparison issue in modeset ctl ioctl Andi Kleen
2011-03-30 21:06 ` [PATCH] [161/275] mfd: Fix NULL pointer due to non-initialized ucb1x00-ts absinfo Andi Kleen
2011-03-30 21:06 ` [PATCH] [162/275] x86: Use u32 instead of long to set reset vector back to 0 Andi Kleen
2011-03-30 21:06 ` [PATCH] [163/275] fuse: fix hang of single threaded fuseblk filesystem Andi Kleen
2011-03-30 21:06 ` [PATCH] [164/275] clockevents: Prevent oneshot mode when broadcast device is periodic Andi Kleen
2011-03-30 21:06 ` [PATCH] [165/275] ext2: Fix link count corruption under heavy link+rename load Andi Kleen
2011-03-30 21:06 ` [PATCH] [166/275] p54usb: add Senao NUB-350 usbid Andi Kleen
2011-03-30 21:06 ` [PATCH] [167/275] dccp: fix oops on Reset after close Andi Kleen
2011-03-30 21:06 ` [PATCH] [168/275] e1000e: disable broken PHY wakeup for ICH10 LOMs, use MAC wakeup instead Andi Kleen
2011-03-30 21:06 ` [PATCH] [169/275] r8169: disable ASPM Andi Kleen
2011-03-30 21:06 ` [PATCH] [170/275] usb: iowarrior: don't trust report_size for buffer size Andi Kleen
2011-03-30 21:06 ` [PATCH] [171/275] arp_notify: unconditionally send gratuitous ARP for NETDEV_NOTIFY_PEERS Andi Kleen
2011-03-30 21:06 ` [PATCH] [172/275] CIFS: Fix oplock break handling (try #2) Andi Kleen
2011-03-30 21:06 ` [PATCH] [173/275] cpuset: add a missing unlock in cpuset_write_resmask() Andi Kleen
2011-03-30 21:06 ` [PATCH] [174/275] keyboard: integer underflow bug Andi Kleen
2011-03-30 21:06 ` [PATCH] [175/275] RxRPC: Fix v1 keys Andi Kleen
2011-03-30 21:06 ` [PATCH] [176/275] ixgbe: fix for 82599 erratum on Header Splitting Andi Kleen
2011-03-30 21:07 ` [PATCH] [177/275] mm: fix possible cause of a page_mapped BUG Andi Kleen
2011-03-30 21:07 ` [PATCH] [178/275] powerpc/kexec: Fix orphaned offline CPUs across kexec Andi Kleen
2011-03-30 21:07 ` [PATCH] [179/275] netfilter: nf_log: avoid oops in (un)bind with invalid nfproto values Andi Kleen
2011-03-30 21:07 ` [PATCH] [180/275] nfsd: wrong index used in inner loop Andi Kleen
2011-03-30 21:07 ` [PATCH] [181/275] r8169: use RxFIFO overflow workaround for 8168c chipset Andi Kleen
2011-03-30 21:07 ` [PATCH] [182/275] net: don't allow CAP_NET_ADMIN to load non-netdev kernel modules Andi Kleen
2011-03-30 21:07 ` [PATCH] [183/275] ip6ip6: autoload ip6 tunnel Andi Kleen
2011-03-30 21:07 ` [PATCH] [184/275] hwmon/f71882fg: Set platform drvdata to NULL later Andi Kleen
2011-03-30 21:07 ` [PATCH] [185/275] mtd: add "platform:" prefix for platform modalias Andi Kleen
2011-03-30 21:07 ` [PATCH] [186/275] libata: no special completion processing for EH commands Andi Kleen
2011-03-30 21:07 ` [PATCH] [187/275] MIPS: MTX-1: Make au1000_eth probe all PHY addresses Andi Kleen
2011-03-30 21:07 ` [PATCH] [188/275] x86/mm: Handle mm_fault_error() in kernel space Andi Kleen
2011-03-30 21:07 ` [PATCH] [189/275] ftrace: Fix memory leak with function graph and cpu hotplug Andi Kleen
2011-03-30 21:07 ` [PATCH] [190/275] x86: Fix panic when handling "mem={invalid}" param Andi Kleen
2011-03-30 21:07 ` [PATCH] [191/275] x86: Emit "mem=nopentium ignored" warning when not supported Andi Kleen
2011-03-30 21:07 ` [PATCH] [192/275] ahci: AHCI and RAID mode SATA patch for Intel Patsburg DeviceIDs Andi Kleen
2011-03-30 21:07 ` [PATCH] [193/275] ahci: AHCI mode SATA patch for Intel DH89xxCC DeviceIDs Andi Kleen
2011-03-30 21:07 ` [PATCH] [194/275] ahci: AHCI mode SATA patch for Intel Patsburg SATA RAID controller Andi Kleen
2011-03-30 21:07 ` [PATCH] [195/275] RDMA/cma: Fix crash in request handlers Andi Kleen
2011-03-30 21:07 ` [PATCH] [196/275] IB/cm: Bump reference count on cm_id before invoking callback Andi Kleen
2011-03-30 21:07 ` [PATCH] [197/275] x86, quirk: Fix SB600 revision check Andi Kleen
2011-03-30 21:07 ` [PATCH] [198/275] ath9k_hw: Fix incorrect macversion and macrev checks Andi Kleen
2011-03-30 21:07 ` [PATCH] [199/275] USB: serial/kobil_sct, fix potential tty NULL dereference Andi Kleen
2011-03-30 21:07 ` [PATCH] [200/275] USB: serial: ch341: add new id Andi Kleen
2011-03-30 21:07 ` [PATCH] [201/275] xhci: Fix cycle bit calculation during stall handling Andi Kleen
2011-03-30 21:07 ` [PATCH] [202/275] ALSA: hda - fix digital mic selection in mixer on 92HD8X codecs Andi Kleen
2011-03-30 21:07 ` [PATCH] [203/275] PCI: add more checking to ICH region quirks Andi Kleen
2011-03-30 21:07 ` [PATCH] [204/275] PCI: do not create quirk I/O regions below PCIBIOS_MIN_IO for ICH Andi Kleen
2011-03-30 21:07 ` [PATCH] [205/275] PCI: sysfs: Fix failure path for addition of "vpd" attribute Andi Kleen
2011-03-30 21:07 ` [PATCH] [206/275] ALSA: ctxfi - Fix incorrect SPDIF status bit mask Andi Kleen
2011-03-30 21:07 ` [PATCH] [207/275] ALSA: ctxfi - Fix SPDIF status retrieval Andi Kleen
2011-03-30 21:07 ` [PATCH] [208/275] ALSA: ctxfi - Clear input settings before initialization Andi Kleen
2011-03-30 21:07 ` [PATCH] [209/275] SUNRPC: Ensure we always run the tk_callback before tk_action Andi Kleen
2011-03-30 21:07 ` [PATCH] [210/275] perf, powerpc: Handle events that raise an exception without overflowing Andi Kleen
2011-03-30 21:07 ` [PATCH] [211/275] ext3: Always set dx_node's fake_dirent explicitly Andi Kleen
2011-03-30 21:07 ` [PATCH] [212/275] call_function_many: fix list delete vs add race Andi Kleen
2011-03-30 21:07 ` [PATCH] [213/275] call_function_many: add missing ordering Andi Kleen
2011-03-30 21:07 ` [PATCH] [214/275] x86: Flush TLB if PGD entry is changed in i386 PAE mode Andi Kleen
2011-03-30 21:07 ` [PATCH] [215/275] smp_call_function_many: handle concurrent clearing of mask Andi Kleen
2011-03-30 21:07 ` [PATCH] [216/275] fix per-cpu flag problem in the cpu affinity checkers Andi Kleen
2011-03-30 21:07 ` [PATCH] [217/275] i2c: Fix typo in instantiating-devices document Andi Kleen
2011-03-30 21:07 ` [PATCH] [218/275] mmc: sdio: remember new card RCA when redetecting card Andi Kleen
2011-03-30 21:07 ` [PATCH] [219/275] x86, binutils, xen: Fix another wrong size directive Andi Kleen
2011-03-30 21:07 ` [PATCH] [220/275] hwmon: (sht15) Fix integer overflow in humidity calculation Andi Kleen
2011-03-30 21:07 ` [PATCH] [221/275] aio: wake all waiters when destroying ctx Andi Kleen
2011-03-30 21:07 ` [PATCH] [222/275] shmem: let shared anonymous be nonlinear again Andi Kleen
2011-03-30 21:07 ` [PATCH] [223/275] PCI hotplug: acpiphp: set current_state to D0 in register_slot Andi Kleen
2011-03-30 21:07 ` [PATCH] [224/275] xen: set max_pfn_mapped to the last pfn mapped Andi Kleen
2011-03-30 21:07 ` [PATCH] [225/275] x86: Cleanup highmap after brk is concluded Andi Kleen
2011-03-31 5:26 ` Yinghai Lu
2011-03-31 5:31 ` Andi Kleen
2011-03-30 21:07 ` [PATCH] [226/275] Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing the signal code Andi Kleen
2011-03-30 21:33 ` Oleg Nesterov
2011-03-30 23:44 ` Andi Kleen
2011-03-30 23:48 ` Julien Tinnes
2011-03-30 21:07 ` [PATCH] [227/275] ext3: skip orphan cleanup on rocompat fs Andi Kleen
2011-03-30 21:07 ` [PATCH] [228/275] procfs: fix /proc/<pid>/maps heap check Andi Kleen
2011-03-30 21:07 ` [PATCH] [229/275] proc: protect mm start_code/end_code in /proc/pid/stat Andi Kleen
2011-03-30 21:07 ` [PATCH] [230/275] fbcon: Bugfix soft cursor detection in Tile Blitting Andi Kleen
2011-03-30 21:07 ` [PATCH] [231/275] nfsd41: modify the members value of nfsd4_op_flags Andi Kleen
2011-03-30 21:07 ` [PATCH] [232/275] nfsd: wrong index used in inner loop Andi Kleen
2011-03-30 21:56 ` Michael Tokarev
2011-03-30 22:04 ` Michael Tokarev
2011-03-30 23:33 ` Andi Kleen
2011-03-31 6:44 ` Michael Tokarev
2011-04-02 19:40 ` J. Bruce Fields
2011-03-30 21:07 ` [PATCH] [233/275] uvcvideo: Fix uvc_fixup_video_ctrl() format search Andi Kleen
2011-03-30 21:08 ` [PATCH] [234/275] ehci-hcd: Bug fix: don't set a QH's Halt bit Andi Kleen
2011-03-30 21:08 ` [PATCH] [235/275] USB: uss720 fixup refcount position Andi Kleen
2011-03-30 21:08 ` [PATCH] [236/275] USB: cdc-acm: fix memory corruption / panic Andi Kleen
2011-03-30 21:08 ` [PATCH] [237/275] USB: cdc-acm: fix potential null-pointer dereference Andi Kleen
2011-03-30 21:08 ` [PATCH] [238/275] USB: cdc-acm: fix potential null-pointer dereference on disconnect Andi Kleen
2011-03-30 21:08 ` [PATCH] [239/275] Input: xen-kbdfront - advertise either absolute or relative coordinates Andi Kleen
2011-03-30 21:08 ` [PATCH] [240/275] SUNRPC: Never reuse the socket port after an xs_close() Andi Kleen
2011-03-30 21:08 ` [PATCH] [241/275] fs: call security_d_instantiate in d_obtain_alias V2 Andi Kleen
2011-03-30 21:08 ` [PATCH] [242/275] dcdbas: force SMI to happen when expected Andi Kleen
2011-03-30 21:08 ` [PATCH] [243/275] ALSA: hda - Fix SPDIF out regression on ALC889 Andi Kleen
2011-03-30 21:08 ` [PATCH] [244/275] ALSA: Fix yet another race in disconnection Andi Kleen
2011-03-30 21:08 ` [PATCH] [245/275] perf: Better fit max unprivileged mlock pages for tools needs Andi Kleen
2011-03-30 21:08 ` [PATCH] [246/275] myri10ge: fix rmmod crash Andi Kleen
2011-03-30 21:08 ` [PATCH] [247/275] cciss: fix lost command issue Andi Kleen
2011-03-30 21:08 ` [PATCH] [248/275] sound/oss/opl3: validate voice and channel indexes Andi Kleen
2011-03-30 21:08 ` [PATCH] [249/275] mac80211: initialize sta->last_rx in sta_info_alloc Andi Kleen
2011-03-30 21:08 ` [PATCH] [250/275] ses: show devices for enclosures with no page 7 Andi Kleen
2011-03-30 21:08 ` [PATCH] [251/275] ses: Avoid kernel panic when lun 0 is not mapped Andi Kleen
2011-03-30 21:08 ` [PATCH] [252/275] eCryptfs: Unlock page in write_begin error path Andi Kleen
2011-03-30 21:08 ` [PATCH] [253/275] eCryptfs: ecryptfs_keyring_auth_tok_for_sig() bug fix Andi Kleen
2011-03-30 21:08 ` [PATCH] [254/275] PM / Hibernate: Improve comments in hibernate_preallocate_memory() Andi Kleen
2011-03-30 21:08 ` [PATCH] [255/275] PM / Hibernate: Make default image size depend on total RAM size Andi Kleen
2011-03-30 21:08 ` [PATCH] [256/275] classmate-laptop: depends on RFKILL or RFKILL=n Andi Kleen
2011-03-30 21:08 ` [PATCH] [257/275] netfilter: arpt_mangle: fix return values of checkentry Andi Kleen
2011-03-30 21:08 ` [PATCH] [258/275] Patch cab9e9848b9a8283b0504a2d7c435a9f5ba026de to the 2.6.35.y stable tree Andi Kleen
2011-03-30 21:08 ` [PATCH] [259/275] USB: misc: uss720.c: add another vendor/product ID Andi Kleen
2011-03-30 21:08 ` [PATCH] [261/275] USB: isp1760: Implement solution for erratum 2 Andi Kleen
2011-03-30 21:08 ` [PATCH] [262/275] xhci: Update internal dequeue pointers after stalls Andi Kleen
2011-03-30 21:08 ` [PATCH] [263/275] perf: Fix tear-down of inherited group events Andi Kleen
2011-03-30 21:08 ` [PATCH] [264/275] Revert "slab: Fix missing DEBUG_SLAB last user" Andi Kleen
2011-03-30 21:08 ` [PATCH] [265/275] net: Fix ip link add netns oops Andi Kleen
2011-03-30 21:08 ` [PATCH] [266/275] hwmon: (w83627ehf) Driver cleanup Andi Kleen
2011-03-30 21:08 ` [PATCH] [267/275] md: Fix - again - partition detection when array becomes active Andi Kleen
2011-03-30 21:08 ` [PATCH] [268/275] [PATCH 2.6.35] iwl3945: remove plcp check Andi Kleen
2011-03-30 21:08 ` [PATCH] [269/275] KVM: enlarge number of possible CPUID leaves Andi Kleen
2011-03-30 21:08 ` [PATCH] [270/275] KVM: i8259: initialize isr_ack Andi Kleen
2011-03-30 21:08 ` [PATCH] [271/275] Revert "KVM: Correct ordering of ldt reload wrt fs/gs reload" Andi Kleen
2011-03-30 21:08 ` [PATCH] [272/275] KVM: Fix fs/gs reload oops with invalid ldt Andi Kleen
2011-03-30 21:08 ` [PATCH] [273/275] KVM: Correct ordering of ldt reload wrt fs/gs reload Andi Kleen
2011-03-30 21:08 ` [PATCH] [274/275] KVM: VMX: Fix host userspace gsbase corruption Andi Kleen
2011-03-30 21:08 ` [PATCH] [275/275] Release 2.6.35.12 Andi Kleen
2011-03-31 15:37 ` [PATCH] [0/275] 2.6.35.12 longterm review Herton Ronaldo Krzesinski
2011-03-31 18:52 ` Andi Kleen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110330210527.632863E1A05@tassilo.jf.intel.com \
--to=andi@firstfloor.org \
--cc=a.p.zijlstra@chello.nl \
--cc=ak@linux.intel.com \
--cc=efault@gmx.de \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=stable@kernel.org \
--cc=tim.bird@am.sony.com \
--cc=venki@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®