public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Andi Kleen <andi@firstfloor.org>
To: drosenberg@vsecurity.com, davem@davemloft.net, gregkh@suse.de,
	ak@linux.intel.com, linux-kernel@vger.kernel.org,
	stable@kernel.org
Subject: [PATCH] [208/223] x25: Prevent crashing when parsing bad X.25 facilities
Date: Mon, 13 Dec 2010 00:48:35 +0100 (CET)	[thread overview]
Message-ID: <20101212234835.59672B27BF@basil.firstfloor.org> (raw)
In-Reply-To: <201012131244.547034648@firstfloor.org>

2.6.35-longterm review patch.  If anyone has any objections, please let me know.

------------------
From: Dan Rosenberg <drosenberg@vsecurity.com>

commit 5ef41308f94dcbb3b7afc56cdef1c2ba53fa5d2f upstream.

Now with improved comma support.

On parsing malformed X.25 facilities, decrementing the remaining length
may cause it to underflow.  Since the length is an unsigned integer,
this will result in the loop continuing until the kernel crashes.

This patch adds checks to ensure decrementing the remaining length does
not cause it to wrap around.

Signed-off-by: Dan Rosenberg <drosenberg@vsecurity.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Andi Kleen <ak@linux.intel.com>

---
 net/x25/x25_facilities.c |   12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

Index: linux/net/x25/x25_facilities.c
===================================================================
--- linux.orig/net/x25/x25_facilities.c
+++ linux/net/x25/x25_facilities.c
@@ -61,6 +61,8 @@ int x25_parse_facilities(struct sk_buff
 	while (len > 0) {
 		switch (*p & X25_FAC_CLASS_MASK) {
 		case X25_FAC_CLASS_A:
+			if (len < 2)
+				return 0;
 			switch (*p) {
 			case X25_FAC_REVERSE:
 				if((p[1] & 0x81) == 0x81) {
@@ -104,6 +106,8 @@ int x25_parse_facilities(struct sk_buff
 			len -= 2;
 			break;
 		case X25_FAC_CLASS_B:
+			if (len < 3)
+				return 0;
 			switch (*p) {
 			case X25_FAC_PACKET_SIZE:
 				facilities->pacsize_in  = p[1];
@@ -125,6 +129,8 @@ int x25_parse_facilities(struct sk_buff
 			len -= 3;
 			break;
 		case X25_FAC_CLASS_C:
+			if (len < 4)
+				return 0;
 			printk(KERN_DEBUG "X.25: unknown facility %02X, "
 			       "values %02X, %02X, %02X\n",
 			       p[0], p[1], p[2], p[3]);
@@ -132,6 +138,8 @@ int x25_parse_facilities(struct sk_buff
 			len -= 4;
 			break;
 		case X25_FAC_CLASS_D:
+			if (len < p[1] + 2)
+				return 0;
 			switch (*p) {
 			case X25_FAC_CALLING_AE:
 				if (p[1] > X25_MAX_DTE_FACIL_LEN || p[1] <= 1)
@@ -149,9 +157,7 @@ int x25_parse_facilities(struct sk_buff
 				break;
 			default:
 				printk(KERN_DEBUG "X.25: unknown facility %02X,"
-					"length %d, values %02X, %02X, "
-					"%02X, %02X\n",
-					p[0], p[1], p[2], p[3], p[4], p[5]);
+					"length %d\n", p[0], p[1]);
 				break;
 			}
 			len -= p[1] + 2;

  parent reply	other threads:[~2010-12-12 23:51 UTC|newest]

Thread overview: 251+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-12 23:44 [PATCH] [0/223] 2.6.35.10 longterm review Andi Kleen
2010-12-12 23:44 ` [PATCH] [1/223] block: Ensure physical block size is unsigned int Andi Kleen
2010-12-12 23:44 ` [PATCH] [2/223] block: Fix race during disk initialization Andi Kleen
2010-12-12 23:44 ` [PATCH] [3/223] block: limit vec count in bio_kmalloc() and bio_alloc_map_data() Andi Kleen
2010-12-12 23:44 ` [PATCH] [4/223] block: take care not to overflow when calculating total iov length Andi Kleen
2010-12-12 23:44 ` [PATCH] [5/223] block: check for proper length of iov entries in blk_rq_map_user_iov() Andi Kleen
2010-12-12 23:45 ` [PATCH] [6/223] drm/radeon/kms: don't disable shared encoders on pre-DCE3 display blocks Andi Kleen
2010-12-12 23:45 ` [PATCH] [7/223] jme: Fix PHY power-off error Andi Kleen
2010-12-12 23:45 ` [PATCH] [8/223] irda: Fix parameter extraction stack overflow Andi Kleen
2010-12-12 23:45 ` [PATCH] [9/223] irda: Fix heap memory corruption in iriap.c Andi Kleen
2010-12-12 23:45 ` [PATCH] [10/223] cfg80211: fix BSS double-unlinking Andi Kleen
2010-12-12 23:45 ` [PATCH] [11/223] cfg80211: fix locking Andi Kleen
2010-12-12 23:45 ` [PATCH] [12/223] cfg80211: fix regression on processing country IEs Andi Kleen
2010-12-12 23:45 ` [PATCH] [13/223] mac80211: fix channel assumption for association done work Andi Kleen
2010-12-12 23:45 ` [PATCH] [14/223] mac80211: fix offchannel assumption upon association Andi Kleen
2010-12-12 23:45 ` [PATCH] [15/223] mac80211: Fix signal strength average initialization for CQM events Andi Kleen
2010-12-12 23:45 ` [PATCH] [16/223] mac80211: add helper for reseting the connection monitor Andi Kleen
2010-12-12 23:45 ` [PATCH] [17/223] mac80211: reset connection idle when going offchannel Andi Kleen
2010-12-12 23:45 ` [PATCH] [18/223] mac80211: make the beacon monitor available externally Andi Kleen
2010-12-12 23:45 ` [PATCH] [19/223] mac80211: send last 3/5 probe requests as unicast Andi Kleen
2010-12-12 23:45 ` [PATCH] [20/223] mac80211: disable beacon monitor while going offchannel Andi Kleen
2010-12-12 23:45 ` [PATCH] [21/223] mac80211: use correct station flags lock Andi Kleen
2010-12-12 23:45 ` [PATCH] [22/223] mac80211: clear txflags for ps-filtered frames Andi Kleen
2010-12-12 23:45 ` [PATCH] [23/223] mac80211: reset probe send counter upon connection timer reset Andi Kleen
2010-12-12 23:45 ` [PATCH] [24/223] mac80211: Fix ibss station got expired immediately Andi Kleen
2010-12-12 23:45 ` [PATCH] [25/223] mac80211: don't sanitize invalid rates Andi Kleen
2010-12-12 23:45 ` [PATCH] [26/223] mac80211: delete AddBA response timer Andi Kleen
2010-12-12 23:45 ` [PATCH] [27/223] isdn/gigaset: fix bas_gigaset AT read error handling Andi Kleen
2010-12-12 23:45 ` [PATCH] [28/223] isdn/gigaset: correct bas_gigaset rx buffer handling Andi Kleen
2010-12-12 23:45 ` [PATCH] [29/223] isdn/gigaset: bas_gigaset locking fix Andi Kleen
2010-12-12 23:45 ` [PATCH] [30/223] i2c-pca-platform: Change device name of request_irq Andi Kleen
2010-12-12 23:45 ` [PATCH] [31/223] viafb: fix i2c_transfer error handling Andi Kleen
2010-12-12 23:45 ` [PATCH] [32/223] drm/radeon/kms: register an i2c adapter name for the dp aux bus Andi Kleen
2010-12-12 23:45 ` [PATCH] [33/223] ALSA: hda - Fix wrong SPDIF NID assignment for CA0110 Andi Kleen
2010-12-12 23:45 ` [PATCH] [34/223] ALSA: hda - Add some workarounds for Creative IBG Andi Kleen
2010-12-12 23:45 ` [PATCH] [35/223] ALSA: OSS mixer emulation - fix locking Andi Kleen
2010-12-12 23:45 ` [PATCH] [37/223] powerpc: Fix call to subpage_protection() Andi Kleen
2010-12-12 23:45 ` [PATCH] [38/223] SUNRPC: After calling xprt_release(), we must restart from call_reserve Andi Kleen
2010-12-13 23:01   ` Trond Myklebust
2010-12-14 10:48     ` Andi Kleen
2010-12-12 23:45 ` [PATCH] [39/223] microblaze: Fix build with make 3.82 Andi Kleen
2010-12-12 23:45 ` [PATCH] [40/223] NFSv4: Don't call nfs4_reclaim_complete() on receiving NFS4ERR_STALE_CLIENTID Andi Kleen
2010-12-12 23:45 ` [PATCH] [41/223] NFSv4: Don't call nfs4_state_mark_reclaim_reboot() from error handlers Andi Kleen
2010-12-12 23:45 ` [PATCH] [42/223] NFSv4: Fix open recovery Andi Kleen
2010-12-12 23:45 ` [PATCH] [43/223] NFS: Don't SIGBUS if nfs_vm_page_mkwrite races with a cache invalidation Andi Kleen
2010-12-12 23:45 ` [PATCH] [44/223] drm/radeon/kms: MC vram map needs to be >= pci aperture size Andi Kleen
2010-12-12 23:45 ` [PATCH] [45/223] drm/radeon/kms: properly compute group_size on 6xx/7xx Andi Kleen
2010-12-12 23:45 ` [PATCH] [46/223] drm/radeon/kms: make sure blit addr masks are 64 bit Andi Kleen
2010-12-12 23:45 ` [PATCH] [47/223] drm/radeon/kms: fix handling of tex lookup disable in cs checker on r2xx Andi Kleen
2010-12-12 23:45 ` [PATCH] [48/223] drm/i915: Free hardware status page on unload when physically mapped Andi Kleen
2010-12-12 23:45 ` [PATCH] [49/223] drm/i915: diasable clock gating for the panel power sequencer Andi Kleen
2010-12-12 23:45 ` [PATCH] [50/223] drm/i915/overlay: Ensure that the reg_bo is in the GTT prior to writing Andi Kleen
2010-12-12 23:45 ` [PATCH] [51/223] pcnet_cs: add new_id Andi Kleen
2010-12-12 23:45 ` [PATCH] [52/223] SH: Add missing consts to sys_execve() declaration Andi Kleen
2010-12-12 23:45 ` [PATCH] [53/223] reiserfs: fix inode mutex - reiserfs lock misordering Andi Kleen
2010-12-12 23:45 ` [PATCH] [54/223] reiserfs: don't acquire lock recursively in reiserfs_acl_chmod Andi Kleen
2010-12-12 23:45 ` [PATCH] [55/223] staging: rt2870: Add new USB ID for Belkin F6D4050 v1 Andi Kleen
2010-12-12 23:45 ` [PATCH] [56/223] Staging: asus_oled: fix up some sysfs attribute permissions Andi Kleen
2010-12-12 23:45 ` [PATCH] [57/223] Staging: asus_oled: fix up my fixup for " Andi Kleen
2010-12-12 23:45 ` [PATCH] [58/223] ALSA: hda: Use hp-laptop quirk to enable headphones automute for Asus A52J Andi Kleen
2010-12-12 23:45 ` [PATCH] [59/223] Staging: line6: fix up some sysfs attribute permissions Andi Kleen
2010-12-12 23:45 ` [PATCH] [60/223] hpet: fix unwanted interrupt due to stale irq status bit Andi Kleen
2010-12-12 23:45 ` [PATCH] [61/223] hpet: unmap unused I/O space Andi Kleen
2010-12-12 23:46 ` [PATCH] [62/223] olpc_battery: Fix endian neutral breakage for s16 values Andi Kleen
2010-12-12 23:46 ` [PATCH] [63/223] percpu: fix list_head init bug in __percpu_counter_init() Andi Kleen
2010-12-12 23:46 ` [PATCH] [64/223] hostfs: fix UML crash: remove f_spare from hostfs Andi Kleen
2010-12-12 23:51   ` Richard Weinberger
2010-12-12 23:57     ` Andi Kleen
2010-12-12 23:46 ` [PATCH] [65/223] ipmi: proper spinlock initialization Andi Kleen
2010-12-12 23:46 ` [PATCH] [66/223] um: remove PAGE_SIZE alignment in linker script causing kernel segfault Andi Kleen
2010-12-12 23:46 ` [PATCH] [67/223] um: fix global timer issue when using CONFIG_NO_HZ Andi Kleen
2010-12-12 23:46 ` [PATCH] [68/223] numa: fix slab_node(MPOL_BIND) Andi Kleen
2010-12-12 23:46 ` [PATCH] [69/223] hwmon: (lm85) Fix ADT7468 frequency table Andi Kleen
2010-12-12 23:46 ` [PATCH] [70/223] oprofile: Fix the hang while taking the cpu offline Andi Kleen
2010-12-12 23:46 ` [PATCH] [71/223] mm: fix return value of scan_lru_pages in memory unplug Andi Kleen
2010-12-12 23:46 ` [PATCH] [72/223] mm, page-allocator: do not check the state of a non-existant buddy during free Andi Kleen
2010-12-12 23:46 ` [PATCH] [73/223] mm: fix is_mem_section_removable() page_order BUG_ON check Andi Kleen
2010-12-12 23:46 ` [PATCH] [74/223] agp/intel: Also add B43.1 to list of supported devices Andi Kleen
2010-12-12 23:46 ` [PATCH] [75/223] b43: Fix warning at drivers/mmc/core/core.c:237 in mmc_wait_for_cmd Andi Kleen
2010-12-12 23:46 ` [PATCH] [76/223] wireless: b43: fix error path in SDIO Andi Kleen
2010-12-12 23:46 ` [PATCH] [77/223] ssb: b43-pci-bridge: Add new vendor for BCM4318 Andi Kleen
2010-12-12 23:46 ` [PATCH] [78/223] drivers/misc/ad525x_dpot.c: fix typo in spi write16 and write24 transfer counts Andi Kleen
2010-12-12 23:46 ` [PATCH] [79/223] sgi-xpc: XPC fails to discover partitions with all nasids above 128 Andi Kleen
2010-12-12 23:46 ` [PATCH] [80/223] xen: ensure that all event channels start off bound to VCPU 0 Andi Kleen
2010-12-12 23:46 ` [PATCH] [81/223] xen: don't bother to stop other cpus on shutdown/reboot Andi Kleen
2010-12-12 23:46 ` [PATCH] [82/223] ipc: initialize structure memory to zero for compat functions Andi Kleen
2010-12-12 23:46 ` [PATCH] [83/223] ipc: shm: fix information leak to userland Andi Kleen
2010-12-12 23:46 ` [PATCH] [84/223] net: NETIF_F_HW_CSUM does not imply FCoE CRC offload Andi Kleen
2010-12-12 23:46 ` [PATCH] [85/223] drivers/char/vt_ioctl.c: fix VT_OPENQRY error value Andi Kleen
2010-12-12 23:46 ` [PATCH] [86/223] viafb: use proper register for colour when doing fill ops Andi Kleen
2010-12-12 23:46 ` [PATCH] [87/223] sata_via: apply magic FIFO fix to vt6420 too Andi Kleen
2010-12-12 23:46 ` [PATCH] [88/223] eCryptfs: Clear LOOKUP_OPEN flag when creating lower file Andi Kleen
2010-12-12 23:46 ` [PATCH] [89/223] ecryptfs: call vfs_setxattr() in ecryptfs_setxattr() Andi Kleen
2010-12-12 23:46 ` [PATCH] [90/223] md/raid1: really fix recovery looping when single good device fails Andi Kleen
2010-12-12 23:46 ` [PATCH] [91/223] md: fix return value of rdev_size_change() Andi Kleen
2010-12-12 23:46 ` [PATCH] [92/223] ALSA: hda: Use BIOS auto-parsing instead of existing model quirk for MEDION MD2 Andi Kleen
2010-12-12 23:46 ` [PATCH] [93/223] tty: prevent DOS in the flush_to_ldisc Andi Kleen
2010-12-12 23:46 ` [PATCH] [94/223] TTY: restore tty_ldisc_wait_idle Andi Kleen
2010-12-12 23:46 ` [PATCH] [95/223] tty_ldisc: Fix BUG() on hangup Andi Kleen
2010-12-12 23:46 ` [PATCH] [96/223] TTY: ldisc, fix open flag handling Andi Kleen
2010-12-12 23:46 ` [PATCH] [97/223] TTY: don't allow reopen when ldisc is changing Andi Kleen
2010-12-12 23:46 ` [PATCH] [98/223] TTY: open/hangup race fixup Andi Kleen
2010-12-13  9:26   ` Jiri Slaby
2010-12-13  9:48     ` Andi Kleen
2010-12-12 23:46 ` [PATCH] [99/223] usbnet: fix usb_autopm_get_interface failure(v1) Andi Kleen
2010-12-12 23:46 ` [PATCH] [100/223] HID: Fix for problems with eGalax/DWAV multi-touch-screen Andi Kleen
2010-12-12 23:46 ` [PATCH] [101/223] gspca - sonixj: Fix a regression of sensors hv7131r and mi0360 Andi Kleen
2010-12-12 23:46 ` [PATCH] [102/223] hdpvr: Add missing URB_NO_TRANSFER_DMA_MAP flag Andi Kleen
2010-12-12 23:46 ` [PATCH] [103/223] drivers/media/video/cx23885/cx23885-core.c: fix cx23885_dev_checkrevision() Andi Kleen
2010-12-12 23:46 ` [PATCH] [104/223] KVM: Write protect memory after slot swap Andi Kleen
2010-12-13  8:43   ` Avi Kivity
2010-12-13  8:58     ` Andi Kleen
2010-12-13  9:00       ` Avi Kivity
2010-12-13  9:03         ` Andi Kleen
2010-12-13  9:08           ` Avi Kivity
2010-12-13  9:12             ` Andi Kleen
2010-12-13  9:16               ` Avi Kivity
2010-12-13  9:45                 ` Andi Kleen
2010-12-13 16:56                 ` Paul Gortmaker
2010-12-13 17:08                   ` Avi Kivity
2010-12-13 17:29                     ` [stable] " Greg KH
2010-12-13 17:36                     ` Paul Gortmaker
2010-12-14 10:57                       ` Avi Kivity
2010-12-13  9:13             ` Paolo Ciarrocchi
2010-12-13  9:19               ` Avi Kivity
2010-12-13  9:20                 ` Paolo Ciarrocchi
2010-12-12 23:46 ` [PATCH] [105/223] KVM: x86: fix information leak to userland Andi Kleen
2010-12-12 23:46 ` [PATCH] [106/223] KVM: Correct ordering of ldt reload wrt fs/gs reload Andi Kleen
2010-12-12 23:46 ` [PATCH] [107/223] ASoC: Remove volatility from WM8900 POWER1 register Andi Kleen
2010-12-12 23:46 ` [PATCH] [108/223] ASoC: wm8961 - clear WM8961_DACSLOPE bit for normal mode Andi Kleen
2010-12-12 23:46 ` [PATCH] [109/223] ASoC: wm8961 - clear WM8961_MCLKDIV bit for freq <= 16500000 Andi Kleen
2010-12-12 23:46 ` [PATCH] [110/223] firewire: ohci: fix buffer overflow in AR split packet handling Andi Kleen
2010-12-12 23:46 ` [PATCH] [111/223] firewire: ohci: fix race " Andi Kleen
2010-12-12 23:46 ` [PATCH] [112/223] ALSA: hda - Fixed ALC887-VD initial error Andi Kleen
2010-12-12 23:46 ` [PATCH] [113/223] ALSA: ac97: Apply quirk for Dell Latitude D610 binding Master and Headphone controls Andi Kleen
2010-12-12 23:46 ` [PATCH] [114/223] ALSA: HDA: Add fixup pins for Ideapad Y550 Andi Kleen
2010-12-12 23:46 ` [PATCH] [115/223] ALSA: hda - Added fixup for Lenovo Y550P Andi Kleen
2010-12-12 23:46 ` [PATCH] [116/223] ALSA: hda: Add speaker pin to automute Acer Aspire 8943G Andi Kleen
2010-12-12 23:46 ` [PATCH] [117/223] ALSA: hda: Add Samsung R720 SSID for subwoofer pin fixup Andi Kleen
2010-12-12 23:46 ` [PATCH] [118/223] ALSA: hda - Use ALC_INIT_DEFAULT for really default initialization Andi Kleen
2010-12-12 23:47 ` [PATCH] [119/223] ALSA: hda - Fix ALC660-VD/ALC861-VD capture/playback mixers Andi Kleen
2010-12-12 23:47 ` [PATCH] [120/223] ALSA: HDA: Add an extra DAC for Realtek ALC887-VD Andi Kleen
2010-12-12 23:47 ` [PATCH] [121/223] ALSA: Fix SNDCTL_DSP_RESET ioctl for OSS emulation Andi Kleen
2010-12-12 23:47 ` [PATCH] [122/223] ALSA: hda: Use "alienware" model quirk for another SSID Andi Kleen
2010-12-12 23:47 ` [PATCH] [123/223] netfilter: nf_conntrack: allow nf_ct_alloc_hashtable() to get highmem pages Andi Kleen
2010-12-12 23:47 ` [PATCH] [124/223] netfilter: NF_HOOK_COND has wrong conditional Andi Kleen
2010-12-12 23:47 ` [PATCH] [125/223] radix-tree: fix RCU bug Andi Kleen
2010-12-12 23:47 ` [PATCH] [126/223] latencytop: fix per task accumulator Andi Kleen
2010-12-12 23:47 ` [PATCH] [127/223] mm/vfs: revalidate page->mapping in do_generic_file_read() Andi Kleen
2010-12-12 23:47 ` [PATCH] [128/223] bio: take care not overflow page count when mapping/copying user data Andi Kleen
2010-12-12 23:47 ` [PATCH] [129/223] drm/radeon/kms/atom: set sane defaults in atombios_get_encoder_mode() Andi Kleen
2010-12-12 23:47 ` [PATCH] [130/223] drm/radeon/kms: fix typos in disabled vbios code Andi Kleen
2010-12-12 23:47 ` [PATCH] [131/223] drm/radeon/kms: add workaround for dce3 ddc line vbios bug Andi Kleen
2010-12-12 23:47 ` [PATCH] [132/223] drm/radeon/kms: Fix retrying ttm_bo_init() after it failed once Andi Kleen
2010-12-12 23:47 ` [PATCH] [133/223] drm/radeon/kms: fix interlaced and doublescan handling Andi Kleen
2010-12-12 23:47 ` [PATCH] [134/223] exec: make argv/envp memory visible to oom-killer Andi Kleen
2010-12-13 11:18   ` Oleg Nesterov
2010-12-13 15:10     ` Andi Kleen
2010-12-12 23:47 ` [PATCH] [135/223] exec: copy-and-paste the fixes into compat_do_execve() paths Andi Kleen
2010-12-12 23:47 ` [PATCH] [136/223] drm/i915/sdvo: Always add a 30ms delay to make SDVO TV detection reliable Andi Kleen
2010-12-12 23:47 ` [PATCH] [137/223] intel-gtt: fix gtt_total_entries detection Andi Kleen
2010-12-12 23:47 ` [PATCH] [138/223] sched: fix RCU lockdep splat from task_group() Andi Kleen
2010-12-12 23:47 ` [PATCH] [139/223] libata: fix NULL sdev dereference race in atapi_qc_complete() Andi Kleen
2010-12-12 23:47 ` [PATCH] [140/223] PCI: fix size checks for mmap() on /proc/bus/pci files Andi Kleen
2010-12-12 23:47 ` [PATCH] [141/223] PCI: fix offset check for sysfs mmapped files Andi Kleen
2010-12-12 23:47 ` [PATCH] [142/223] xHCI: fix wMaxPacketSize mask Andi Kleen
2010-12-12 23:47 ` [PATCH] [143/223] xhci: Fix reset-device and configure-endpoint commands Andi Kleen
2010-12-12 23:47 ` [PATCH] [144/223] xhci: Setup array of USB 2.0 and USB 3.0 ports Andi Kleen
2010-12-12 23:47 ` [PATCH] [145/223] xhci: Don't let the USB core disable SuperSpeed ports Andi Kleen
2010-12-12 23:47 ` [PATCH] [146/223] USB: gadget: AT91: fix typo in atmel_usba_udc driver Andi Kleen
2010-12-12 23:47 ` [PATCH] [147/223] usb: musb: fix kernel oops when loading musb_hdrc module for the 2nd time Andi Kleen
2010-12-12 23:47 ` [PATCH] [148/223] USB: ftdi_sio: add device IDs for Milkymist One JTAG/serial Andi Kleen
2010-12-12 23:47 ` [PATCH] [149/223] USB: option: fix when the driver is loaded incorrectly for some Huawei devices Andi Kleen
2010-12-12 23:47 ` [PATCH] [150/223] usb: misc: sisusbvga: fix information leak to userland Andi Kleen
2010-12-12 23:47 ` [PATCH] [151/223] usb: misc: iowarrior: " Andi Kleen
2010-12-12 23:47 ` [PATCH] [152/223] usb: core: " Andi Kleen
2010-12-12 23:47 ` [PATCH] [153/223] Staging: rt2870: Add USB ID for Buffalo Airstation WLI-UC-GN Andi Kleen
2010-12-12 23:47 ` [PATCH] [154/223] USB: EHCI: fix obscure race in ehci_endpoint_disable Andi Kleen
2010-12-12 23:47 ` [PATCH] [155/223] USB: storage: sierra_ms: fix sysfs file attribute Andi Kleen
2010-12-12 23:47 ` [PATCH] [156/223] USB: atm: ueagle-atm: fix up some permissions on the sysfs files Andi Kleen
2010-12-12 23:47 ` [PATCH] [157/223] USB: misc: cypress_cy7c63: fix up some sysfs attribute permissions Andi Kleen
2010-12-12 23:47 ` [PATCH] [158/223] USB: misc: usbled: " Andi Kleen
2010-12-12 23:47 ` [PATCH] [159/223] USB: misc: trancevibrator: fix up a sysfs attribute permission Andi Kleen
2010-12-12 23:47 ` [PATCH] [160/223] USB: misc: usbsevseg: fix up some sysfs attribute permissions Andi Kleen
2010-12-12 23:47 ` [PATCH] [161/223] USB: ftdi_sio: Add ID for RT Systems USB-29B radio cable Andi Kleen
2010-12-12 23:47 ` [PATCH] [162/223] USB: serial: ftdi_sio: Vardaan USB RS422/485 converter PID added Andi Kleen
2010-12-12 23:47 ` [PATCH] [163/223] USB: fix autosuspend bug in usb-serial Andi Kleen
2010-12-12 23:47 ` [PATCH] [164/223] e1000: fix screaming IRQ Andi Kleen
2010-12-12 23:47 ` [PATCH] [165/223] ACPI battery: support percentage battery remaining capacity Andi Kleen
2010-12-12 23:47 ` [PATCH] [166/223] acpi-cpufreq: fix a memleak when unloading driver Andi Kleen
2010-12-12 23:47 ` [PATCH] [167/223] ACPI: debugfs custom_method open to non-root Andi Kleen
2010-12-13  6:33   ` Brown, Len
2010-12-13  8:57     ` Andi Kleen
2010-12-13 17:01       ` Paul Gortmaker
2010-12-12 23:47 ` [PATCH] [168/223] PNPACPI: cope with invalid device IDs Andi Kleen
2010-12-12 23:47 ` [PATCH] [169/223] saa7134: Fix autodetect for Behold A7 and H7 TV cards Andi Kleen
2010-12-12 23:47 ` [PATCH] [170/223] fuse: fix attributes after open(O_TRUNC) Andi Kleen
2010-12-12 23:47 ` [PATCH] [171/223] cs5535-gpio: apply CS5536 errata workaround for GPIOs Andi Kleen
2010-12-12 23:47 ` [PATCH] [172/223] do_exit(): make sure that we run with get_fs() == USER_DS Andi Kleen
2010-12-12 23:47 ` [PATCH] [173/223] cifs: fix another memleak, in cifs_root_iget Andi Kleen
2010-12-12 23:47 ` [PATCH] [174/223] uml: disable winch irq before freeing handler data Andi Kleen
2010-12-12 23:48 ` [PATCH] [175/223] backlight: grab ops_lock before testing bd->ops Andi Kleen
2010-12-12 23:48 ` [PATCH] [176/223] nommu: yield CPU while disposing VM Andi Kleen
2010-12-12 23:48 ` [PATCH] [177/223] x86: Ignore trap bits on single step exceptions Andi Kleen
2010-12-12 23:48 ` [PATCH] [178/223] mmc: fix rmmod race for hosts using card-detection polling Andi Kleen
2010-12-12 23:48 ` [PATCH] [179/223] DECnet: don't leak uninitialized stack byte Andi Kleen
2010-12-12 23:48 ` [PATCH] [180/223] perf_events: Fix perf_counter_mmap() hook in mprotect() Andi Kleen
2010-12-12 23:48 ` [PATCH] [181/223] ARM: 6464/2: fix spinlock recursion in adjust_pte() Andi Kleen
2010-12-12 23:48 ` [PATCH] [182/223] ARM: 6489/1: thumb2: fix incorrect optimisation in usracc Andi Kleen
2010-12-12 23:48 ` [PATCH] [183/223] ARM: 6482/2: Fix find_next_zero_bit and related assembly Andi Kleen
2010-12-12 23:48 ` [PATCH] [184/223] leds: fix bug with reading NAS SS4200 dmi code Andi Kleen
2010-12-12 23:48 ` [PATCH] [185/223] Staging: udlfb: fix up some sysfs attribute permissions Andi Kleen
2010-12-12 23:48 ` [PATCH] [186/223] Staging: iio: adis16220: " Andi Kleen
2010-12-12 23:48 ` [PATCH] [187/223] Staging: iio: adis16220: fix up my fixup for " Andi Kleen
2010-12-12 23:48 ` [PATCH] [188/223] Staging: samsung-laptop: fix up " Andi Kleen
2010-12-12 23:48 ` [PATCH] [189/223] Staging: samsung-laptop: fix up my fixup for " Andi Kleen
2010-12-12 23:48 ` [PATCH] [190/223] Staging: frontier: fix up " Andi Kleen
2010-12-12 23:48 ` [PATCH] [191/223] staging: rtl8187se: Change panic to warn when RF switch turned off Andi Kleen
2010-12-12 23:48 ` [PATCH] [192/223] Staging: batman-adv: ensure that eth_type_trans gets linear memory Andi Kleen
2010-12-12 23:48 ` [PATCH] [193/223] perf: Fix inherit vs. context rotation bug Andi Kleen
2010-12-12 23:48 ` [PATCH] [194/223] ARM: 6456/1: Fix for building DEBUG with sa11xx_base.c as a module Andi Kleen
2010-12-12 23:48 ` [PATCH] [195/223] PM / Hibernate: Fix memory corruption related to swap Andi Kleen
2010-12-12 23:48 ` [PATCH] [196/223] wmi: use memcmp instead of strncmp to compare GUIDs Andi Kleen
2010-12-12 23:48 ` [PATCH] [197/223] nohz/s390: fix arch_needs_cpu() return value on offline cpus Andi Kleen
2010-12-12 23:48 ` [PATCH] [198/223] genirq: Fix incorrect proc spurious output Andi Kleen
2010-12-12 23:48 ` [PATCH] [199/223] net: Truncate recvfrom and sendto length to INT_MAX Andi Kleen
2010-12-12 23:48 ` [PATCH] [200/223] net: Limit socket I/O iovec total " Andi Kleen
2010-12-12 23:48 ` [PATCH] [201/223] Input: i8042 - add Sony VAIO VPCZ122GX to nomux list Andi Kleen
2010-12-12 23:48 ` [PATCH] [202/223] omap: dma: Fix buffering disable bit setting for omap24xx Andi Kleen
2010-12-12 23:48 ` [PATCH] [203/223] OMAP3: DMA: Errata i541: sDMA FIFO draining does not finish Andi Kleen
2010-12-12 23:48 ` [PATCH] [204/223] memory corruption in X.25 facilities parsing Andi Kleen
2010-12-12 23:48 ` [PATCH] [205/223] net: optimize Berkeley Packet Filter (BPF) processing Andi Kleen
2010-12-12 23:48 ` [PATCH] [206/223] filter: make sure filters dont read uninitialized memory Andi Kleen
2010-12-12 23:48 ` [PATCH] [207/223] can-bcm: fix minor heap overflow Andi Kleen
2010-12-12 23:48 ` Andi Kleen [this message]
2010-12-12 23:48 ` [PATCH] [209/223] crypto: padlock - Fix AES-CBC handling on odd-block-sized input Andi Kleen
2010-12-12 23:48 ` [PATCH] [210/223] econet: disallow NULL remote addr for sendmsg(), fixes CVE-2010-3849 Andi Kleen
2010-12-12 23:48 ` [PATCH] [211/223] econet: fix CVE-2010-3850 Andi Kleen
2010-12-12 23:48 ` [PATCH] [212/223] econet: fix CVE-2010-3848 Andi Kleen
2010-12-12 23:48 ` [PATCH] [213/223] rds: Integer overflow in RDS cmsg handling Andi Kleen
2010-12-12 23:48 ` [PATCH] [214/223] cfg80211: fix extension channel checks to initiate communication Andi Kleen
2010-12-12 23:48 ` [PATCH] [215/223] r8169: fix rx checksum offload Andi Kleen
2010-12-12 23:48 ` [PATCH] [216/223] r8169: (re)init phy on resume Andi Kleen
2010-12-12 23:48 ` [PATCH] [217/223] r8169: fix checksum broken Andi Kleen
2010-12-12 23:48 ` [PATCH] [218/223] nmi: fix clock comparator revalidation Andi Kleen
2010-12-12 23:48 ` [PATCH] [219/223] Rename 'pipe_info()' to 'get_pipe_info()' Andi Kleen
2010-12-12 23:48 ` [PATCH] [220/223] Export 'get_pipe_info()' to other users Andi Kleen
2010-12-12 23:48 ` [PATCH] [221/223] Un-inline get_pipe_info() helper function Andi Kleen
2010-12-12 23:48 ` [PATCH] [222/223] Fix pktcdvd ioctl dev_minor range check Andi Kleen
2010-12-12 23:48 ` [PATCH] [223/223] Bump release to 2.6.35.10 Andi Kleen
2010-12-16 17:42 ` [PATCH] [0/223] 2.6.35.10 longterm review Randy Dunlap

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=20101212234835.59672B27BF@basil.firstfloor.org \
    --to=andi@firstfloor.org \
    --cc=ak@linux.intel.com \
    --cc=davem@davemloft.net \
    --cc=drosenberg@vsecurity.com \
    --cc=gregkh@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@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