mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Greg KH <gregkh@suse.de>
To: linux-kernel@vger.kernel.org, stable@kernel.org
Cc: stable-review@kernel.org, torvalds@linux-foundation.org,
	akpm@linux-foundation.org, alan@lxorguk.ukuu.org.uk,
	"Rafael J. Wysocki" <rjw@sisk.pl>,
	Len Brown <len.brown@intel.com>
Subject: [patch 104/176] cpuidle: Make cpuidle_enable_device() call poll_idle_init()
Date: Tue, 15 Feb 2011 16:21:12 -0800	[thread overview]
Message-ID: <20110216002109.488482993@clark.kroah.org> (raw)
In-Reply-To: <20110216002212.GA9246@kroah.com>

2.6.36-stable review patch.  If anyone has any objections, please let us know.

------------------

From: Rafael J. Wysocki <rjw@sisk.pl>

commit d8c216cfa57e8a579f41729cbb88c97835d9ac8d upstream.

The following scenario is possible with the current cpuidle code and
the ACPI cpuidle driver:
(1) acpi_processor_cst_has_changed() is called,
(2) cpuidle_disable_device() is called,
(3) cpuidle_remove_state_sysfs() is called to remove the (presumably
    outdated) states info from sysfs,
(3) acpi_processor_get_power_info() is called, the first entry in the
    pr->power.states[] table is filled with zeros,
(4) acpi_processor_setup_cpuidle() is called and it doesn't fill the
    first entry in pr->power.states[],
(5) cpuidle_enable_device() is called,
(6) __cpuidle_register_device() is _not_ called, since the device has
    already been registered,
(7) Consequently, poll_idle_init() is _not_ called either,
(8) cpuidle_add_state_sysfs() is called to create the sysfs attributes
    for the new states and it uses the bogus first table entry from
    acpi_processor_get_power_info() for creating state0.

This problem is avoided if cpuidle_enable_device()
unconditionally calls poll_idle_init().

Reported-by: Len Brown <len.brown@intel.com>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Len Brown <len.brown@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

---
 drivers/cpuidle/cpuidle.c |   82 +++++++++++++++++++++++-----------------------
 1 file changed, 41 insertions(+), 41 deletions(-)

--- a/drivers/cpuidle/cpuidle.c
+++ b/drivers/cpuidle/cpuidle.c
@@ -154,6 +154,45 @@ void cpuidle_resume_and_unlock(void)
 
 EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
 
+#ifdef CONFIG_ARCH_HAS_CPU_RELAX
+static int poll_idle(struct cpuidle_device *dev, struct cpuidle_state *st)
+{
+	ktime_t	t1, t2;
+	s64 diff;
+	int ret;
+
+	t1 = ktime_get();
+	local_irq_enable();
+	while (!need_resched())
+		cpu_relax();
+
+	t2 = ktime_get();
+	diff = ktime_to_us(ktime_sub(t2, t1));
+	if (diff > INT_MAX)
+		diff = INT_MAX;
+
+	ret = (int) diff;
+	return ret;
+}
+
+static void poll_idle_init(struct cpuidle_device *dev)
+{
+	struct cpuidle_state *state = &dev->states[0];
+
+	cpuidle_set_statedata(state, NULL);
+
+	snprintf(state->name, CPUIDLE_NAME_LEN, "C0");
+	snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
+	state->exit_latency = 0;
+	state->target_residency = 0;
+	state->power_usage = -1;
+	state->flags = CPUIDLE_FLAG_POLL;
+	state->enter = poll_idle;
+}
+#else
+static void poll_idle_init(struct cpuidle_device *dev) {}
+#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
+
 /**
  * cpuidle_enable_device - enables idle PM for a CPU
  * @dev: the CPU
@@ -178,6 +217,8 @@ int cpuidle_enable_device(struct cpuidle
 			return ret;
 	}
 
+	poll_idle_init(dev);
+
 	if ((ret = cpuidle_add_state_sysfs(dev)))
 		return ret;
 
@@ -232,45 +273,6 @@ void cpuidle_disable_device(struct cpuid
 
 EXPORT_SYMBOL_GPL(cpuidle_disable_device);
 
-#ifdef CONFIG_ARCH_HAS_CPU_RELAX
-static int poll_idle(struct cpuidle_device *dev, struct cpuidle_state *st)
-{
-	ktime_t	t1, t2;
-	s64 diff;
-	int ret;
-
-	t1 = ktime_get();
-	local_irq_enable();
-	while (!need_resched())
-		cpu_relax();
-
-	t2 = ktime_get();
-	diff = ktime_to_us(ktime_sub(t2, t1));
-	if (diff > INT_MAX)
-		diff = INT_MAX;
-
-	ret = (int) diff;
-	return ret;
-}
-
-static void poll_idle_init(struct cpuidle_device *dev)
-{
-	struct cpuidle_state *state = &dev->states[0];
-
-	cpuidle_set_statedata(state, NULL);
-
-	snprintf(state->name, CPUIDLE_NAME_LEN, "C0");
-	snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
-	state->exit_latency = 0;
-	state->target_residency = 0;
-	state->power_usage = -1;
-	state->flags = CPUIDLE_FLAG_POLL;
-	state->enter = poll_idle;
-}
-#else
-static void poll_idle_init(struct cpuidle_device *dev) {}
-#endif /* CONFIG_ARCH_HAS_CPU_RELAX */
-
 /**
  * __cpuidle_register_device - internal register function called before register
  * and enable routines
@@ -291,8 +293,6 @@ static int __cpuidle_register_device(str
 
 	init_completion(&dev->kobj_unregister);
 
-	poll_idle_init(dev);
-
 	/*
 	 * cpuidle driver should set the dev->power_specified bit
 	 * before registering the device if the driver provides



  parent reply	other threads:[~2011-02-16  0:50 UTC|newest]

Thread overview: 177+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-16  0:22 [patch 000/176] 2.6.36.4-stable review Greg KH
2011-02-16  0:19 ` [patch 001/176] staging: usbip: remove double giveback of URB Greg KH
2011-02-16  0:19 ` [patch 002/176] USB: EHCI: ASPM quirk of ISOC on AMD SB800 Greg KH
2011-02-16  0:19 ` [patch 003/176] rt2x00: add device id for windy31 usb device Greg KH
2011-02-16  0:19 ` [patch 004/176] staging: rt2870sta: Add ID for Linksys WUSB100v2 Greg KH
2011-02-16  0:19 ` [patch 005/176] ALSA: snd-usb-us122l: Fix MIDI output Greg KH
2011-02-16  0:19 ` [patch 006/176] ALSA: snd-usb-us122l: Fix missing NULL checks Greg KH
2011-02-16  0:19 ` [patch 007/176] atl1: fix oops when changing tx/rx ring params Greg KH
2011-02-16  0:19 ` [patch 008/176] hwmon: (via686a) Initialize fan_div values Greg KH
2011-02-16  0:19 ` [patch 009/176] hwmon: (applesmc) Add MacBookAir3,1(3,2) support Greg KH
2011-02-16  0:19 ` [patch 010/176] hwmon: (applesmc) Relax the severity of device init failure Greg KH
2011-02-16  0:19 ` [patch 011/176] USB: serial: handle Data Carrier Detect changes Greg KH
2011-02-16  0:19 ` [patch 012/176] USB: CP210x Add two device IDs Greg KH
2011-02-16  0:19 ` [patch 013/176] USB: CP210x Removed incorrect device ID Greg KH
2011-02-16  0:19 ` [patch 014/176] USB: qcaux: add Pantech UML290 " Greg KH
2011-02-16  0:19 ` [patch 015/176] USB: usb-storage: unusual_devs update for Cypress ATACB Greg KH
2011-02-16  0:19 ` [patch 016/176] USB: usb-storage: unusual_devs update for TrekStor DataStation maxi g.u external hard drive enclosure Greg KH
2011-02-16  0:19 ` [patch 017/176] USB: usb-storage: unusual_devs entry for CamSport Evo Greg KH
2011-02-16  0:19 ` [patch 018/176] USB: usb-storage: unusual_devs entry for Coby MP3 player Greg KH
2011-02-16  0:19 ` [patch 019/176] USB: serial: Updated support for ICOM devices Greg KH
2011-02-16  0:19 ` [patch 020/176] USB: adding USB support for Cinterions HC2x, EU3 and PH8 products Greg KH
2011-02-16  0:19 ` [patch 021/176] USB serial: add missing .usb_driver field in serial drivers Greg KH
2011-02-16  0:19 ` [patch 022/176] USB: EHCI: ASPM quirk of ISOC on AMD Hudson Greg KH
2011-02-16  0:19 ` [patch 023/176] USB: EHCI: fix DMA deallocation bug Greg KH
2011-02-16  0:19 ` [patch 024/176] USB: g_printer: fix bug in unregistration Greg KH
2011-02-16  0:19 ` [patch 025/176] USB: g_printer: fix bug in module parameter definitions Greg KH
2011-02-16  0:19 ` [patch 026/176] USB: io_edgeport: fix the reported firmware major and minor Greg KH
2011-02-16  0:19 ` [patch 027/176] USB: ti_usb: fix module removal Greg KH
2011-02-16  0:19 ` [patch 028/176] USB: Storage: Add unusual_devs entry for VTech Kidizoom Greg KH
2011-02-16  0:19 ` [patch 029/176] USB: ftdi_sio: add ST Micro Connect Lite uart support Greg KH
2011-02-16  0:19 ` [patch 030/176] USB: cdc-acm: Adding second ACM channel support for Nokia N8 Greg KH
2011-02-16  0:19 ` [patch 031/176] USB: ftdi_sio: Add VID=0x0647, PID=0x0100 for Acton Research spectrograph Greg KH
2011-02-16  0:20 ` [patch 032/176] USB: EHCI: fix scheduling while atomic during suspend Greg KH
2011-02-16  0:20 ` [patch 033/176] USB: prevent buggy hubs from crashing the USB stack Greg KH
2011-02-16  0:20 ` [patch 034/176] USB: fix race between root-hub resume and wakeup requests Greg KH
2011-02-16  0:20 ` [patch 035/176] staging: zram: fix data corruption issue Greg KH
2011-02-16  0:20 ` [patch 036/176] staging: comedi: add support for newer jr3 1-channel pci board Greg KH
2011-02-16  0:20 ` [patch 037/176] staging: comedi: ni_labpc: Use shared IRQ for PCMCIA card Greg KH
2011-02-16  0:20 ` [patch 038/176] Staging: hv: fix sysfs symlink on hv block device Greg KH
2011-02-16  0:20 ` [patch 039/176] staging: hv: fix netvsc sleeping while atomic Greg KH
2011-02-16  0:20 ` [patch 040/176] staging: hv: Enable sending GARP packet after live migration Greg KH
2011-02-16  0:20 ` [patch 041/176] Staging: rt3090: Fix RT3090 scan AP function Greg KH
2011-02-16  0:20 ` [patch 042/176] Staging: rt2860: fix previous patch error Greg KH
2011-02-16  0:20 ` [patch 043/176] staging: rt2860: Fix incorrect netif_stop_queue usage warning Greg KH
2011-02-16  0:20 ` [patch 044/176] mac80211: fix mesh forwarding when ratelimited too Greg KH
2011-02-16  0:20 ` [patch 045/176] mac80211: add missing synchronize_rcu Greg KH
2011-02-16  0:20 ` [patch 046/176] mac80211: use maximum number of AMPDU frames as default in BA RX Greg KH
2011-02-16  0:20 ` [patch 047/176] mac80211: fix a crash in ieee80211_beacon_get_tim on change_interface Greg KH
2011-02-16  0:20 ` [patch 048/176] mac80211: fix initialization of skb->cb in ieee80211_subif_start_xmit Greg KH
2011-02-16  0:20 ` [patch 049/176] iwlagn: enable only rfkill interrupt when device is down Greg KH
2011-02-16  0:20 ` [patch 050/176] iwlagn: Re-enable RF_KILL interrupt when down Greg KH
2011-02-16  0:20 ` [patch 051/176] ath9k_htc: Handle pending URBs properly Greg KH
2011-02-16  0:20 ` [patch 052/176] ath9k_hw: Fix XPABIAS level configuration for AR9003 Greg KH
2011-02-16  0:20 ` [patch 053/176] ath9k: simplify hw reset locking Greg KH
2011-02-16  0:20 ` [patch 054/176] ath9k: move the PCU lock to the sc structure Greg KH
2011-02-16  0:20 ` [patch 055/176] ath9k: Fix bug in delimiter padding computation Greg KH
2011-02-16  0:20 ` [patch 056/176] ath9k: fix assumptions for idle calls on suspend/resume Greg KH
2011-02-16  0:20 ` [patch 057/176] ath9k: fix aphy / wiphy idle mismatch Greg KH
2011-02-16  0:20 ` [patch 058/176] ath9k: fix beacon restart on channel change Greg KH
2011-02-16  0:20 ` [patch 059/176] ath9k_hw: do PA offset calibration only on longcal interval Greg KH
2011-02-16  0:20 ` [patch 060/176] ath9k_hw: disabled PAPRD for AR9003 Greg KH
2011-02-16  0:20 ` [patch 061/176] ath9k_hw: Fix system hang when resuming from S3/S4 Greg KH
2011-02-16  0:20 ` [patch 062/176] [S390] qdio: use proper QEBSM operand for SIGA-R and SIGA-S Greg KH
2011-02-16  0:20 ` [patch 063/176] [SCSI] fix medium error problems with some arrays which can cause data corruption Greg KH
2011-02-16  0:20 ` [patch 064/176] [SCSI] libsas: fix runaway error handler problem Greg KH
2011-02-16  0:20 ` [patch 065/176] [SCSI] mpt2sas: fix Integrated Raid unsynced on shutdown problem Greg KH
2011-02-16  0:20 ` [patch 066/176] [SCSI] fix incorrect value of SCSI_MAX_SG_CHAIN_SEGMENTS due to include file ordering Greg KH
2011-02-16  0:20 ` [patch 067/176] [SCSI] mpt2sas: Fix device removal handshake for zoned devices Greg KH
2011-02-16  0:20 ` [patch 068/176] [SCSI] mpt2sas: fix internal device reset for older firmware prior to MPI Rev K Greg KH
2011-02-16  0:20 ` [patch 069/176] [SCSI] mpt2sas: Fix the race between broadcast asyn event and scsi command completion Greg KH
2011-02-16  0:20 ` [patch 070/176] [SCSI] mpt2sas: Correct resizing calculation for max_queue_depth Greg KH
2011-02-16  0:20 ` [patch 071/176] [SCSI] mpt2sas: Kernel Panic during Large Topology discovery Greg KH
2011-02-16  0:20 ` [patch 072/176] [SCSI] mpt2sas: add missing initialization of scsih_cmds Greg KH
2011-02-16  0:20 ` [patch 073/176] cfg80211: pass the reg hint initiator to helpers Greg KH
2011-02-16  0:20 ` [patch 074/176] cfg80211: fix allowing country IEs for WIPHY_FLAG_STRICT_REGULATORY Greg KH
2011-02-16  0:20 ` [patch 075/176] [media] radio-aimslab.c: Fix gcc 4.5+ bug Greg KH
2011-02-16  0:20 ` [patch 076/176] [media] em28xx: Fix audio input for Terratec Grabby Greg KH
2011-02-16  0:20 ` [patch 077/176] ALSA : au88x0 - Limit number of channels to fix Oops via OSS emu Greg KH
2011-02-16  0:20 ` [patch 078/176] ALSA: fix invalid hardware.h include in ac97c for AVR32 architecture Greg KH
2011-02-16  0:20 ` [patch 079/176] ALSA: HDA: Fix dmesg output of HDMI supported bits Greg KH
2011-02-16  0:20 ` [patch 080/176] ALSA: hda - Fix memory leaks in conexant jack arrays Greg KH
2011-02-16  0:20 ` [patch 081/176] Input: i8042 - introduce notimeout blacklist for Dell Vostro V13 Greg KH
2011-02-16  0:20 ` [patch 082/176] input: bcm5974: Add support for MacBookAir3 Greg KH
2011-02-16  0:20 ` [patch 083/176] hwmon: (lm63) Consider LM64 temperature offset Greg KH
2011-02-16  0:20 ` [patch 084/176] ALSA: hrtimer: handle delayed timer interrupts Greg KH
2011-02-16  0:20 ` [patch 085/176] ALSA: HDA: Add subwoofer quirk for Acer Aspire 8942G Greg KH
2011-02-16  0:20 ` [patch 086/176] ASoC: When disabling WM8994 FLL force a source selection Greg KH
2011-02-16  0:20 ` [patch 087/176] ASoC: WM8990: msleep() takes milliseconds not jiffies Greg KH
2011-02-16  0:20 ` [patch 088/176] ASoC: Blackfin AC97: fix build error after multi-component update Greg KH
2011-02-16  0:20 ` [patch 089/176] ASoC: Blackfin TDM: fix missed snd_soc_dai_get_drvdata update Greg KH
2011-02-16  0:20 ` [patch 090/176] NFS: Fix an NFS client lockdep issue Greg KH
2011-02-16  0:20 ` [patch 091/176] NFS: Fix "kernel BUG at fs/aio.c:554!" Greg KH
2011-02-16  0:21 ` [patch 092/176] RDMA/cxgb4: Set the correct device physical function for iWARP connections Greg KH
2011-02-16  0:21 ` [patch 093/176] /proc/kcore: fix seeking Greg KH
2011-02-16  0:21 ` [patch 094/176] rtc-cmos: fix suspend/resume Greg KH
2011-02-16  0:21 ` [patch 095/176] mm: fix migration hangs on anon_vma lock Greg KH
2011-02-16  0:21 ` [patch 096/176] ext4: fix memory leak in ext4_free_branches Greg KH
2011-02-16  0:21 ` [patch 097/176] rapidio: fix hang on RapidIO doorbell queue full condition Greg KH
2011-02-16  0:21 ` [patch 098/176] sh: Fix up legacy PTEA space attribute mapping Greg KH
2011-02-16  0:21 ` [patch 099/176] PCI: pci-stub: ignore zero-length id parameters Greg KH
2011-02-16  0:21 ` [patch 100/176] virtio: remove virtio-pci root device Greg KH
2011-02-16  0:21 ` [patch 101/176] jz4740-battery: Protect against concurrent battery readings Greg KH
2011-02-16  0:21 ` [patch 102/176] ds2760_battery: Fix calculation of time_to_empty_now Greg KH
2011-02-16  0:21 ` [patch 103/176] avr32: use syscall prototypes from asm-generic instead of arch Greg KH
2011-02-16  0:21 ` Greg KH [this message]
2011-02-16  0:21 ` [patch 105/176] p54: fix sequence no. accounting off-by-one error Greg KH
2011-02-16  0:21 ` [patch 106/176] i2c: Unregister dummy devices last on adapter removal Greg KH
2011-02-16  0:21 ` [patch 107/176] ASoC: Handle low measured DC offsets for wm_hubs devices Greg KH
2011-02-16  0:21 ` [patch 108/176] ASoC: WM8994: fix wrong value in tristate function Greg KH
2011-02-16  0:21 ` [patch 109/176] ASoC: Create an AIF1ADCDAT signal widget to match AIF2 Greg KH
2011-02-16  0:21 ` [patch 110/176] virtio_net: Add schedule check to napi_enable call Greg KH
2011-02-16  0:21 ` [patch 111/176] virtio: console: Wake up outvq on host notifications Greg KH
2011-02-16  0:21 ` [patch 112/176] drivers: update to pl2303 usb-serial to support Motorola cables Greg KH
2011-02-16  0:21 ` [patch 113/176] serial: unbreak billionton CF card Greg KH
2011-02-16  0:21 ` [patch 114/176] ptrace: use safer wake up on ptrace_detach() Greg KH
2011-02-16  0:21 ` [patch 115/176] net: Fix ip link add netns oops Greg KH
2011-02-16  0:21 ` [patch 116/176] x86, mtrr: Avoid MTRR reprogramming on BP during boot on UP platforms Greg KH
2011-02-16  0:21 ` [patch 117/176] fix jiffy calculations in calibrate_delay_direct to handle overflow Greg KH
2011-02-16  0:21 ` [patch 118/176] ixgbe: fix for 82599 erratum on Header Splitting Greg KH
2011-02-16  0:21 ` [patch 119/176] Fix prlimit64 for suid/sgid processes Greg KH
2011-02-16  0:21 ` [patch 120/176] ARM: initrd: disable initrd if passed address overlaps reserved region Greg KH
2011-02-16  0:21 ` [patch 121/176] memcg: fix account leak at failure of memsw acconting Greg KH
2011-02-16  0:21 ` [patch 122/176] mmc: bfin_sdh: fix alloc size for private data Greg KH
2011-02-16  0:21 ` [patch 123/176] mm: page allocator: adjust the per-cpu counter threshold when memory is low Greg KH
2011-02-16  0:21 ` [patch 124/176] klist: Fix object alignment on 64-bit Greg KH
2011-02-16  0:21 ` [patch 125/176] cfq-iosched: Dont wait if queue already has requests Greg KH
2011-02-16  0:21 ` [patch 126/176] powerpc/85xx: fix compatible properties of the P1022DS DMA nodes used for audio Greg KH
2011-02-16  0:21 ` [patch 127/176] powerpc: Fix hcall tracepoint recursion Greg KH
2011-02-16  0:21 ` [patch 128/176] powerpc/numa: Fix bug in unmap_cpu_from_node Greg KH
2011-02-16  0:21 ` [patch 129/176] powerpc: Fix some 6xx/7xxx CPU setup functions Greg KH
2011-02-16  0:21 ` [patch 130/176] firewire: core: fix unstable I/O with Canon camcorder Greg KH
2011-02-16  0:21 ` [patch 131/176] parisc : Remove broken line wrapping handling pdc_iodc_print() Greg KH
2011-02-16  0:21 ` [patch 132/176] watchdog: Fix sysctl consistency Greg KH
2011-02-16  0:21 ` [patch 133/176] watchdog: Dont change watchdog state on read of sysctl Greg KH
2011-02-16  0:21 ` [patch 134/176] char/ipmi: fix OOPS caused by pnp_unregister_driver on unregistered driver Greg KH
2011-02-16  0:21 ` [patch 135/176] ssb-pcmcia: Fix parsing of invariants tuples Greg KH
2011-02-16  0:21 ` [patch 136/176] backlight: fix 88pm860x_bl macro collision Greg KH
2011-02-16  0:21 ` [patch 137/176] fs/direct-io.c: dont try to allocate more than BIO_MAX_PAGES in a bio Greg KH
2011-02-16  0:21 ` [patch 138/176] kernel/smp.c: fix smp_call_function_many() SMP race Greg KH
2011-02-16  0:21 ` [patch 139/176] md: fix regression with re-adding devices to arrays with no metadata Greg KH
2011-02-16  0:21 ` [patch 140/176] md: fix regression resulting in delays in clearing bits in a bitmap Greg KH
2011-02-16  0:21 ` [patch 141/176] md: Ensure no IO request to get md device before it is properly initialised Greg KH
2011-02-16  0:21 ` [patch 142/176] md: Fix removal of extra drives when converting RAID6 to RAID5 Greg KH
2011-02-16  0:21 ` [patch 143/176] pata_mpc52xx: inherit from ata_bmdma_port_ops Greg KH
2011-02-16  0:21 ` [patch 144/176] md_make_request: dont touch the bio after calling make_request Greg KH
2011-02-16  0:21 ` [patch 145/176] KVM: i8259: initialize isr_ack Greg KH
2011-02-16  0:21 ` [patch 146/176] KVM: MMU: Fix incorrect direct gfn for unpaged mode shadow Greg KH
2011-02-16  0:21 ` [patch 147/176] KVM: MMU: Fix 32 bit legacy paging with NPT Greg KH
2011-02-16  0:21 ` [patch 148/176] nilfs2: fix crash after one superblock became unavailable Greg KH
2011-02-16  0:21 ` [patch 149/176] TPM: Long default timeout fix Greg KH
2011-02-16  0:21 ` [patch 150/176] tpm_tis: Use timeouts returned from TPM Greg KH
2011-02-16  0:21 ` [patch 151/176] KEYS: Dont call up_write() if __key_link_begin() returns an error Greg KH
2011-02-16  0:22 ` [patch 152/176] SELinux: define permissions for DCB netlink messages Greg KH
2011-02-16  0:22 ` [patch 153/176] SELinux: do not compute transition labels on mountpoint labeled filesystems Greg KH
2011-02-16  0:22 ` [patch 154/176] tpm: Autodetect itpm devices Greg KH
2011-02-16  0:22 ` [patch 155/176] ieee80211: correct IEEE80211_ADDBA_PARAM_BUF_SIZE_MASK macro Greg KH
2011-02-16  0:22 ` [patch 156/176] dm: dont take i_mutex to change device size Greg KH
2011-02-16  0:22 ` [patch 157/176] dm mpath: disable blk_abort_queue Greg KH
2011-02-16  0:22 ` [patch 158/176] net/fec: fix MMFR_OP type in fec_enet_mdio_write Greg KH
2011-02-16  0:22 ` [patch 159/176] drm/radeon/kms: add quirk for Mac Radeon HD 2600 card Greg KH
2011-02-16  0:22 ` [patch 160/176] drm/radeon/kms: adjust quirk for acer laptop Greg KH
2011-02-16  0:22 ` [patch 161/176] drm/radeon/kms: make the mac rv630 quirk generic Greg KH
2011-02-16  0:22 ` [patch 162/176] radeon/kms: fix dp displayport mode validation Greg KH
2011-02-16  0:22 ` [patch 163/176] drm/radeon/kms: add pll debugging output Greg KH
2011-02-16  0:22 ` [patch 164/176] drm/radeon: remove 0x4243 pci id Greg KH
2011-02-16  0:22 ` [patch 165/176] drm/radeon/kms: fix s/r issues with bios scratch regs Greg KH
2011-02-16  0:22 ` [patch 166/176] drm: Restore the old_fb upon modeset failure Greg KH
2011-02-16  0:22 ` [patch 167/176] drm/i915: fix calculation of eDP signal levels on Sandybridge Greg KH
2011-02-16  0:22 ` [patch 168/176] drm/i915/lvds: Add AOpen i915GMm-HFS to the list of false-positive LVDS Greg KH
2011-02-16  0:22 ` [patch 169/176] drm/i915: Add dependency on CONFIG_TMPFS Greg KH
2011-02-16  0:22 ` [patch 170/176] drm/i915: Recognise non-VGA display devices Greg KH
2011-02-16  0:22 ` [patch 171/176] x86, mm: avoid possible bogus tlb entries by clearing prev mm_cpumask after switching mm Greg KH
2011-02-16  0:22 ` [patch 172/176] agp: ensure GART has an address before enabling it Greg KH
2011-02-16  0:22 ` [patch 173/176] drm/i915: Only bind to function 0 of the PCI device Greg KH
2011-02-16  0:22 ` [patch 174/176] xhci: Do not run xhci_cleanup_msix with irq disabled Greg KH
2011-02-16  0:22 ` [patch 175/176] usb: Realloc xHCI structures after a hub is verified Greg KH
2011-02-16  0:22 ` [patch 176/176] xhci: Use GFP_NOIO during device reset Greg KH

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=20110216002109.488482993@clark.kroah.org \
    --to=gregkh@suse.de \
    --cc=akpm@linux-foundation.org \
    --cc=alan@lxorguk.ukuu.org.uk \
    --cc=len.brown@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rjw@sisk.pl \
    --cc=stable-review@kernel.org \
    --cc=stable@kernel.org \
    --cc=torvalds@linux-foundation.org \
    /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®