linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Herton Ronaldo Krzesinski <herton.krzesinski@canonical.com>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org,
	kernel-team@lists.ubuntu.com
Cc: NeilBrown <neilb@suse.de>,
	Herton Ronaldo Krzesinski <herton.krzesinski@canonical.com>
Subject: [PATCH 030/241] md/raid1: Fix assembling of arrays containing Replacements.
Date: Thu, 13 Dec 2012 11:56:35 -0200	[thread overview]
Message-ID: <1355407206-17100-31-git-send-email-herton.krzesinski@canonical.com> (raw)
In-Reply-To: <1355407206-17100-1-git-send-email-herton.krzesinski@canonical.com>

3.5.7.2 -stable review patch.  If anyone has any objections, please let me know.

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

From: NeilBrown <neilb@suse.de>

commit 02b898f2f04e418094f0093a3ad0b415bcdbe8eb upstream.

setup_conf in raid1.c uses conf->raid_disks before assigning
a value.  It is used when including 'Replacement' devices.

The consequence is that assembling an array which contains a
replacement will misbehave and either not include the replacement, or
not include the device being replaced.

Though this doesn't lead directly to data corruption, it could lead to
reduced data safety.

So use mddev->raid_disks, which is initialised, instead.

Bug was introduced by commit c19d57980b38a5bb613a898937a1cf85f422fb9b
      md/raid1: recognise replacements when assembling arrays.

in 3.3, so fix is suitable for 3.3.y thru 3.6.y.

Signed-off-by: NeilBrown <neilb@suse.de>
Signed-off-by: Herton Ronaldo Krzesinski <herton.krzesinski@canonical.com>
---
 drivers/md/raid1.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
index 53aec45..cb781a1 100644
--- a/drivers/md/raid1.c
+++ b/drivers/md/raid1.c
@@ -2563,7 +2563,7 @@ static struct r1conf *setup_conf(struct mddev *mddev)
 		    || disk_idx < 0)
 			continue;
 		if (test_bit(Replacement, &rdev->flags))
-			disk = conf->mirrors + conf->raid_disks + disk_idx;
+			disk = conf->mirrors + mddev->raid_disks + disk_idx;
 		else
 			disk = conf->mirrors + disk_idx;
 
-- 
1.7.9.5


  parent reply	other threads:[~2012-12-13 15:06 UTC|newest]

Thread overview: 255+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-13 13:56 [ 3.5.y.z extended stable ] Linux 3.5.7.2 stable review Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 001/241] gpio-timberdale: fix a potential wrapping issue Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 002/241] cfg80211: fix antenna gain handling Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 003/241] drm/i915: fix overlay on i830M Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 004/241] drm/i915: clear the entire sdvo infoframe buffer Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 005/241] mac80211: use blacklist for duplicate IE check Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 006/241] mac80211: Only process mesh config header on frames that RA_MATCH Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 007/241] mac80211: don't inspect Sequence Control field on control frames Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 008/241] gpiolib: Don't return -EPROBE_DEFER to sysfs, or for invalid gpios Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 009/241] qla2xxx: Update target lookup session tables when a target session changes Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 010/241] mac80211: fix SSID copy on IBSS JOIN Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 011/241] wireless: drop invalid mesh address extension frames Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 012/241] mac80211: check management frame header length Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 013/241] mac80211: verify that skb data is present Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 014/241] mac80211: make sure data is accessible in EAPOL check Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 015/241] target: Fix double-free of se_cmd in target_complete_tmr_failure Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 016/241] ext4: fix unjournaled inode bitmap modification Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 017/241] ath9k: fix stale pointers potentially causing access to free'd skbs Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 018/241] floppy: don't call alloc_ordered_workqueue inside the alloc_disk loop Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 019/241] floppy: do put_disk on current dr if blk_init_queue fails Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 020/241] floppy: properly handle failure on add_disk loop Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 021/241] ALSA: PCM: Fix some races at disconnection Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 022/241] ALSA: usb-audio: Fix " Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 023/241] ALSA: usb-audio: Use rwsem for disconnect protection Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 024/241] ALSA: usb-audio: Fix races at disconnection in mixer_quirks.c Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 025/241] ALSA: Add a reference counter to card instance Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 026/241] ALSA: Avoid endless sleep after disconnect Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 027/241] xen/gntdev: don't leak memory from IOCTL_GNTDEV_MAP_GRANT_REF Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 028/241] rt2800: validate step value for temperature compensation Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 029/241] ath9k: Test for TID only in BlockAcks while checking tx status Herton Ronaldo Krzesinski
2012-12-13 13:56 ` Herton Ronaldo Krzesinski [this message]
2012-12-13 13:56 ` [PATCH 031/241] Input: tsc40 - remove wrong announcement of pressure support Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 032/241] HID: microsoft: fix invalid rdesc for 3k kbd Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 033/241] xen/mmu: Use Xen specific TLB flush instead of the generic one Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 034/241] NFS: Wait for session recovery to finish before returning Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 035/241] NFSv4.1: We must release the sequence id when we fail to get a session slot Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 036/241] NFSv4: nfs4_locku_done must release the sequence id Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 037/241] NFS: fix bug in legacy DNS resolver Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 038/241] nfsv3: Make v3 mounts fail with ETIMEDOUTs instead EIO on mountd timeouts Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 039/241] nfs: Show original device name verbatim in /proc/*/mount{s,info} Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 040/241] target: Don't return success from module_init() if setup fails Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 041/241] target: Avoid integer overflow in se_dev_align_max_sectors() Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 042/241] iscsi-target: Fix missed wakeup race in TX thread Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 043/241] target: Fix incorrect usage of nested IRQ spinlocks in ABORT_TASK path Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 044/241] DRM/Radeon: Fix Load Detection on legacy primary DAC Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 045/241] ixgbe: PTP get_ts_info missing software support Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 046/241] drm/udl: fix stride issues scanning out stride != width*bpp Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 047/241] crypto: cryptd - disable softirqs in cryptd_queue_worker to prevent data corruption Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 048/241] module: fix out-by-one error in kallsyms Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 049/241] cifs: fix potential buffer overrun in cifs.idmap handling code Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 050/241] ptp: update adjfreq callback description Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 051/241] ALSA: hda: Cirrus: Fix coefficient index for beep configuration Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 052/241] ALSA: HDA: Fix digital microphone on CS420x Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 053/241] ALSA: hda - Force to reset IEC958 status bits for AD codecs Herton Ronaldo Krzesinski
2012-12-13 13:56 ` [PATCH 054/241] hwmon: (w83627ehf) Force initial bank selection Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 055/241] drm: restore open_count if drm_setup fails Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 056/241] ALSA: hda - Fix empty DAC filling in patch_via.c Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 057/241] ALSA: hda - Fix invalid connections in VT1802 codec Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 058/241] xen/events: fix RCU warning, or Call idle notifier after irq_enter() Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 059/241] mmc: sdhci: fix NULL dereference in sdhci_request() tuning Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 060/241] ALSA: hda - Improve HP depop when system enter to S3 Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 061/241] ALSA: hda - Add new codec ALC668 and ALC900 (default name ALC1150) Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 062/241] ALSA: Fix card refcount unbalance Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 063/241] drm/radeon/cayman: add some missing regs to the VM reg checker Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 064/241] drm/radeon/si: " Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 065/241] xfs: fix buffer shudown reference count mismatch Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 066/241] xfs: fix reading of wrapped log data Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 067/241] virtio: Don't access index after unregister Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 068/241] fanotify: fix missing break Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 069/241] mm: bugfix: set current->reclaim_state to NULL while returning from kswapd() Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 070/241] drm/vmwgfx: Fix hibernation device reset Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 071/241] drm/vmwgfx: Fix a case where the code would BUG when trying to pin GMR memory Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 072/241] UBIFS: introduce categorized lprops counter Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 073/241] UBIFS: fix mounting problems after power cuts Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 074/241] USB: usb_wwan: fix bulk-urb allocation Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 075/241] ARM: dt: tegra: fix length of pad control and mux registers Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 076/241] futex: Handle futex_pi OWNER_DIED take over correctly Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 077/241] mac80211: sync acccess to tx_filtered/ps_tx_buf queues Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 078/241] iwlwifi: handle DMA mapping failures Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 079/241] ASoC: wm8978: pll incorrectly configured when codec is master Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 080/241] ASoC: cs42l52: fix the return value of cs42l52_set_fmt() Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 081/241] Bluetooth: Fix having bogus entries in mgmt_read_index_list reply Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 082/241] mac80211: don't send null data packet when not associated Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 083/241] ASoC: dapm: Use card_list during DAPM shutdown Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 084/241] ASoC: core: Double control update err for snd_soc_put_volsw_sx Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 085/241] mac80211: call skb_dequeue/ieee80211_free_txskb instead of __skb_queue_purge Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 086/241] ALSA: hda - Add a missing quirk entry for iMac 9,1 Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 087/241] s390/signal: set correct address space control Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 088/241] wireless: allow 40 MHz on world roaming channels 12/13 Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 089/241] drm/i915/sdvo: clean up connectors on intel_sdvo_init() failures Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 090/241] s390/gup: add missing TASK_SIZE check to get_user_pages_fast() Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 091/241] USB: option: add Novatel E362 and Dell Wireless 5800 USB IDs Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 092/241] USB: option: add Alcatel X220/X500D " Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 093/241] Revert "Staging: Android alarm: IOCTL command encoding fix" Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 094/241] i2c-mux-pinctrl: Fix probe error path Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 095/241] ALSA: usb-audio: Fix mutex deadlock at disconnection Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 096/241] drm/radeon: fix logic error in atombios_encoders.c Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 097/241] ttm: Clear the ttm page allocated from high memory zone correctly Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 098/241] ARM: imx: ehci: fix host power mask bit Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 099/241] memcg: oom: fix totalpages calculation for memory.swappiness==0 Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 100/241] memcg: fix hotplugged memory zone oops Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 101/241] tmpfs: fix shmem_getpage_gfp() VM_BUG_ON Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 102/241] tmpfs: change final i_blocks BUG to WARNING Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 103/241] mtd: ofpart: Fix incorrect NULL check in parse_ofoldpart_partitions() Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 104/241] mtd: slram: invalid checking of absolute end address Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 105/241] jffs2: Fix lock acquisition order bug in jffs2_write_begin Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 106/241] isci: copy fis 0x34 response into proper buffer Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 107/241] mac80211: deinitialize ibss-internals after emptiness check Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 108/241] iwlwifi: fix monitor mode FCS flag Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 109/241] fix virtual aliasing issue in get_shared_area() Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 110/241] rtlwifi: rtl8192cu: Add new USB ID Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 111/241] mwifiex: fix system hang issue in cmd timeout error case Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 112/241] mwifiex: report error to MMC core if we cannot suspend Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 113/241] xfs: drop buffer io reference when a bad bio is built Herton Ronaldo Krzesinski
2012-12-13 13:57 ` [PATCH 114/241] m68k: fix sigset_t accessor functions Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 115/241] ALSA: ua101, usx2y: fix broken MIDI output Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 116/241] sparc64: not any error from do_sigaltstack() should fail rt_sigreturn() Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 117/241] reiserfs: Fix lock ordering during remount Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 118/241] reiserfs: Protect reiserfs_quota_on() with write lock Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 119/241] reiserfs: Protect reiserfs_quota_write() " Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 120/241] reiserfs: Move quota calls out of " Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 121/241] md: Reassigned the parameters if read_seqretry returned true in func md_is_badblock Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 122/241] md: Avoid write invalid address if read_seqretry returned true Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 123/241] drm/radeon/dce4+: don't use radeon_crtc for vblank callback Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 124/241] drm/radeon: properly handle mc_stop/mc_resume on evergreen+ (v2) Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 125/241] drm/radeon: properly track the crtc not_enabled case evergreen_mc_stop() Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 126/241] radeon: add AGPMode 1 quirk for RV250 Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 127/241] x86, efi: Fix processor-specific memcpy() build error Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 128/241] x86-32: Fix invalid stack address while in softirq Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 129/241] x86-32: Export kernel_stack_pointer() for modules Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 130/241] x86, microcode, AMD: Add support for family 16h processors Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 131/241] ALSA: hda - Add new codec ALC283 ALC290 support Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 132/241] ALSA: hda - Add support for Realtek ALC292 Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 133/241] selinux: fix sel_netnode_insert() suspicious rcu dereference Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 134/241] drm/radeon: add new SI pci id Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 135/241] md/raid10: close race that lose writes lost when replacement completes Herton Ronaldo Krzesinski
2012-12-15 18:40   ` Ben Hutchings
2012-12-13 13:58 ` [PATCH 136/241] md/raid10: decrement correct pending counter when writing to replacement Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 137/241] fix user-triggerable panic on parisc Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 138/241] dm: fix deadlock with request based dm and queue request_fn recursion Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 139/241] block: Don't access request after it might be freed Herton Ronaldo Krzesinski
2012-12-15 19:40   ` Ben Hutchings
2012-12-13 13:58 ` [PATCH 140/241] PM / QoS: fix wrong error-checking condition Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 141/241] i7300_edac: Fix error flag testing Herton Ronaldo Krzesinski
2012-12-20 17:42   ` doug thompson
2012-12-13 13:58 ` [PATCH 142/241] iwlwifi: fix the basic CCK rates calculation Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 143/241] Dove: Attempt to fix PMU/RTC interrupts Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 144/241] Dove: Fix irq_to_pmu() Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 145/241] ARM: Kirkwood: Update PCI-E fixup Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 146/241] jbd: Fix lock ordering bug in journal_unmap_buffer() Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 147/241] can: peak_usb: fix hwtstamp assignment Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 148/241] can: bcm: initialize ifindex for timeouts without previous frame reception Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 149/241] writeback: put unused inodes to LRU after writeback completion Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 150/241] futex: avoid wake_futex() for a PI futex_q Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 151/241] mm/vmemmap: fix wrong use of virt_to_page Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 152/241] mm: vmscan: fix endless loop in kswapd balancing Herton Ronaldo Krzesinski
2012-12-15 19:56   ` Ben Hutchings
2012-12-18  0:16     ` Johannes Weiner
2012-12-27 18:41       ` Ben Hutchings
2012-12-13 13:58 ` [PATCH 153/241] mm: soft offline: split thp at the beginning of soft_offline_page() Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 154/241] x86, fpu: Avoid FPU lazy restore after suspend Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 155/241] workqueue: exit rescuer_thread() as TASK_RUNNING Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 156/241] Revert "sched, autogroup: Stop going ahead if autogroup is disabled" Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 157/241] Revert misapplied "mmc: sh-mmcif: avoid oops on spurious interrupts" Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 158/241] mmc: sh-mmcif: avoid oops on spurious interrupts (second try) Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 159/241] tmpfs: fix shared mempolicy leak Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 160/241] HID: microsoft: do not use compound literal - fix build Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 161/241] ACPI video: Ignore errors after _DOD evaluation Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 162/241] Bluetooth: ath3k: Add support for VAIO VPCEH [0489:e027] Herton Ronaldo Krzesinski
2012-12-15 19:59   ` Ben Hutchings
2012-12-15 20:42     ` Herton Ronaldo Krzesinski
2012-12-27 18:37       ` Ben Hutchings
2012-12-13 13:58 ` [PATCH 163/241] drm/i915: EBUSY status handling added to i915_gem_fault() Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 164/241] MISC: hpilo, remove pci_disable_device Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 165/241] drm/i915: no lvds quirk for Zotac ZDBOX SD ID12/ID13 Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 166/241] SUNRPC: Fix a UDP transport regression Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 167/241] SUNRPC: Set alloc_slot for backchannel tcp ops Herton Ronaldo Krzesinski
2012-12-15 20:11   ` Ben Hutchings
2013-01-14 17:41     ` Greg Kroah-Hartman
2012-12-13 13:58 ` [PATCH 168/241] sparc64: fix ptrace interaction with force_successful_syscall_return() Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 169/241] sparc64: Like x86 we should check current->mm during perf backtrace generation Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 170/241] sparc64: Fix bit twiddling in sparc_pmu_enable_event() Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 171/241] sparc64: do not clobber personality flags in sys_sparc64_personality() Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 172/241] sparc64: Be less verbose during vmemmap population Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 173/241] netlink: add reference of module in netlink_dump_start Herton Ronaldo Krzesinski
2012-12-13 13:58 ` [PATCH 174/241] infiniband: pass rdma_cm module to netlink_dump_start Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 175/241] net: remove skb recycling Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 176/241] net: Fix skb_under_panic oops in neigh_resolve_output Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 177/241] skge: Add DMA mask quirk for Marvell 88E8001 on ASUS P5NSLI motherboard Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 178/241] vlan: don't deliver frames for unknown vlans to protocols Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 179/241] RDS: fix rds-ping spinlock recursion Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 180/241] tcp: resets are misrouted Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 181/241] ipv6: addrconf: fix /proc/net/if_inet6 Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 182/241] drm/i915: Use cpu relocations if the object is in the GTT but not mappable Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 183/241] [media] au0828: fix case where STREAMOFF being called on stopped stream causes BUG() Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 184/241] floppy: destroy floppy workqueue before cleaning up the queue Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 185/241] drm/nouveau: silence modesetting spam on pre-gf8 chipsets Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 186/241] drm/nouveau: fix suspend/resume when in headless mode Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 187/241] drm/nouveau: headless mode by default if pci class != vga display Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 188/241] sky2: Fix for interrupt handler Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 189/241] batman-adv: Fix broadcast packet CRC calculation Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 190/241] drm/radeon: fix typo in evergreen_mc_resume() Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 191/241] Revert "serial: omap: fix software flow control" Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 192/241] GFS2: Test bufdata with buffer locked and gfs2_log_lock held Herton Ronaldo Krzesinski
2013-01-13 14:39   ` Ben Hutchings
2012-12-13 13:59 ` [PATCH 193/241] USB: mos7840: remove unused variable Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 194/241] sctp: fix call to SCTP_CMD_PROCESS_SACK in sctp_cmd_interpreter() Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 195/241] netlink: use kfree_rcu() in netlink_release() Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 196/241] tcp: fix FIONREAD/SIOCINQ Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 197/241] ipv6: Set default hoplimit as zero Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 198/241] net: usb: Fix memory leak on Tx data path Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 199/241] net: fix divide by zero in tcp algorithm illinois Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 200/241] drivers/net/ethernet/nxp/lpc_eth.c: Call mdiobus_unregister before mdiobus_free Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 201/241] l2tp: fix oops in l2tp_eth_create() error path Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 202/241] tcp-repair: Handle zero-length data put in rcv queue Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 203/241] net: inet_diag -- Return error code if protocol handler is missed Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 204/241] af-packet: fix oops when socket is not present Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 205/241] ipv6: send unsolicited neighbour advertisements to all-nodes Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 206/241] r8169: allow multicast packets on sub-8168f chipset Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 207/241] r8169: Fix WoL on RTL8168d/8111d Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 208/241] r8169: use unlimited DMA burst for TX Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 209/241] netfilter: Mark SYN/ACK packets as invalid from original direction Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 210/241] netfilter: Validate the sequence number of dataless ACK packets as well Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 211/241] netfilter: nf_nat: don't check for port change on ICMP tuples Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 212/241] ipv4: avoid undefined behavior in do_ip_setsockopt() Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 213/241] ipv6: setsockopt(IPIPPROTO_IPV6, IPV6_MINHOPCOUNT) forgot to set return value Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 214/241] net: correct check in dev_addr_del() Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 215/241] net-rps: Fix brokeness causing OOO packets Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 216/241] tcp: fix retransmission in repair mode Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 217/241] GFS2: Don't call file_accessed() with a shared glock Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 218/241] KVM: x86: invalid opcode oops on SET_SREGS with OSXSAVE bit set (CVE-2012-4461) Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 219/241] get_dvb_firmware: fix download site for tda10046 firmware Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 220/241] ixgbe: add support for X540-AT1 Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 221/241] [media] fimc-lite: Don't use mutex_lock_interruptible() in device release() Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 222/241] NFC: pn533: Fix use after free Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 223/241] NFC: pn533: Fix mem leak in pn533_in_dep_link_up Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 224/241] HID: add quirk for Freescale i.MX28 ROM recovery Herton Ronaldo Krzesinski
2013-01-13 14:36   ` Ben Hutchings
2012-12-13 13:59 ` [PATCH 225/241] NFC: Fix nfc_llcp_local chained list insertion Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 226/241] bas_gigaset: fix pre_reset handling Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 227/241] watchdog: using u64 in get_sample_period() Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 228/241] sata_svw: check DMA start bit before reset Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 229/241] bnx2x: remove redundant warning log Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 230/241] x86, amd: Disable way access filter on Piledriver CPUs Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 231/241] telephony: ijx: buffer overflow in ixj_write_cid() Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 232/241] i915: Quirk no_lvds on Gigabyte GA-D525TUD ITX motherboard Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 233/241] drm/i915: Add no-lvds quirk for Supermicro X7SPA-H Herton Ronaldo Krzesinski
2012-12-13 13:59 ` [PATCH 234/241] ACPI: missing break Herton Ronaldo Krzesinski
2012-12-13 14:00 ` [PATCH 235/241] 8139cp: revert "set ring address before enabling receiver" Herton Ronaldo Krzesinski
2012-12-13 14:00 ` [PATCH 236/241] ASoC: dmaengine: Correct Makefile when sound is built as module Herton Ronaldo Krzesinski
2012-12-13 14:00 ` [PATCH 237/241] i82975x_edac: Fix dimm label initialization Herton Ronaldo Krzesinski
2012-12-13 14:00 ` [PATCH 238/241] [SCSI] hpsa: gen8plus Smart Array IDs Herton Ronaldo Krzesinski
2012-12-13 14:00 ` [PATCH 239/241] drm/i915: do not ignore eDP bpc settings from vbt Herton Ronaldo Krzesinski
2012-12-13 14:00 ` [PATCH 240/241] drm/i915: do not default to 18 bpp for eDP if missing from VBT Herton Ronaldo Krzesinski
2012-12-13 14:00 ` [PATCH 241/241] Input: matrix-keymap - provide proper module license Herton Ronaldo Krzesinski

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=1355407206-17100-31-git-send-email-herton.krzesinski@canonical.com \
    --to=herton.krzesinski@canonical.com \
    --cc=kernel-team@lists.ubuntu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=neilb@suse.de \
    --cc=stable@vger.kernel.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;
as well as URLs for NNTP newsgroup(s).