From: Chris Wright <chrisw@sous-sol.org>
To: linux-kernel@vger.kernel.org, stable@kernel.org,
torvalds@linux-foundation.org
Cc: Justin Forbes <jmforbes@linuxtx.org>,
Zwane Mwaikambo <zwane@arm.linux.org.uk>,
"Theodore Ts'o" <tytso@mit.edu>,
Randy Dunlap <rdunlap@xenotime.net>,
Dave Jones <davej@redhat.com>,
Chuck Wolber <chuckw@quantumlinux.com>,
Chris Wedgwood <reviews@ml.cw.f00f.org>,
Michael Krufky <mkrufky@linuxtv.org>,
Chuck Ebbert <cebbert@redhat.com>,
akpm@linux-foundation.org, alan@lxorguk.ukuu.org.uk,
hirofumi@mail.parknet.co.jp, bartoldeman@users.sourceforge.net
Subject: [patch 29/69] fat: fix VFAT compat ioctls on 64-bit systems
Date: Mon, 21 May 2007 12:16:41 -0700 [thread overview]
Message-ID: <20070521191724.369103000@sous-sol.org> (raw)
In-Reply-To: <20070521191612.800400000@sous-sol.org>
[-- Attachment #1: fat-fix-vfat-compat-ioctls-on-64-bit-systems.patch --]
[-- Type: text/plain, Size: 9606 bytes --]
-stable review patch. If anyone has any objections, please let us know.
---------------------
From: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
If you compile and run the below test case in an msdos or vfat directory on
an x86-64 system with -m32 you'll get garbage in the kernel_dirent struct
followed by a SIGSEGV.
The patch fixes this.
Reported and initial fix by Bart Oldeman
#include <sys/types.h>
#include <sys/ioctl.h>
#include <dirent.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
struct kernel_dirent {
long d_ino;
long d_off;
unsigned short d_reclen;
char d_name[256]; /* We must not include limits.h! */
};
#define VFAT_IOCTL_READDIR_BOTH _IOR('r', 1, struct kernel_dirent [2])
#define VFAT_IOCTL_READDIR_SHORT _IOR('r', 2, struct kernel_dirent [2])
int main(void)
{
int fd = open(".", O_RDONLY);
struct kernel_dirent de[2];
while (1) {
int i = ioctl(fd, VFAT_IOCTL_READDIR_BOTH, (long)de);
if (i == -1) break;
if (de[0].d_reclen == 0) break;
printf("SFN: reclen=%2d off=%d ino=%d, %-12s",
de[0].d_reclen, de[0].d_off, de[0].d_ino, de[0].d_name);
if (de[1].d_reclen)
printf("\tLFN: reclen=%2d off=%d ino=%d, %s",
de[1].d_reclen, de[1].d_off, de[1].d_ino, de[1].d_name);
printf("\n");
}
return 0;
}
Signed-off-by: Bart Oldeman <bartoldeman@users.sourceforge.net>
Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
---
fs/fat/dir.c | 199 +++++++++++++++++++++++++++++------------------------------
1 file changed, 100 insertions(+), 99 deletions(-)
--- linux-2.6.21.1.orig/fs/fat/dir.c
+++ linux-2.6.21.1/fs/fat/dir.c
@@ -422,7 +422,7 @@ EODir:
EXPORT_SYMBOL_GPL(fat_search_long);
struct fat_ioctl_filldir_callback {
- struct dirent __user *dirent;
+ void __user *dirent;
int result;
/* for dir ioctl */
const char *longname;
@@ -647,62 +647,85 @@ static int fat_readdir(struct file *filp
return __fat_readdir(inode, filp, dirent, filldir, 0, 0);
}
-static int fat_ioctl_filldir(void *__buf, const char *name, int name_len,
- loff_t offset, u64 ino, unsigned int d_type)
+#define FAT_IOCTL_FILLDIR_FUNC(func, dirent_type) \
+static int func(void *__buf, const char *name, int name_len, \
+ loff_t offset, u64 ino, unsigned int d_type) \
+{ \
+ struct fat_ioctl_filldir_callback *buf = __buf; \
+ struct dirent_type __user *d1 = buf->dirent; \
+ struct dirent_type __user *d2 = d1 + 1; \
+ \
+ if (buf->result) \
+ return -EINVAL; \
+ buf->result++; \
+ \
+ if (name != NULL) { \
+ /* dirent has only short name */ \
+ if (name_len >= sizeof(d1->d_name)) \
+ name_len = sizeof(d1->d_name) - 1; \
+ \
+ if (put_user(0, d2->d_name) || \
+ put_user(0, &d2->d_reclen) || \
+ copy_to_user(d1->d_name, name, name_len) || \
+ put_user(0, d1->d_name + name_len) || \
+ put_user(name_len, &d1->d_reclen)) \
+ goto efault; \
+ } else { \
+ /* dirent has short and long name */ \
+ const char *longname = buf->longname; \
+ int long_len = buf->long_len; \
+ const char *shortname = buf->shortname; \
+ int short_len = buf->short_len; \
+ \
+ if (long_len >= sizeof(d1->d_name)) \
+ long_len = sizeof(d1->d_name) - 1; \
+ if (short_len >= sizeof(d1->d_name)) \
+ short_len = sizeof(d1->d_name) - 1; \
+ \
+ if (copy_to_user(d2->d_name, longname, long_len) || \
+ put_user(0, d2->d_name + long_len) || \
+ put_user(long_len, &d2->d_reclen) || \
+ put_user(ino, &d2->d_ino) || \
+ put_user(offset, &d2->d_off) || \
+ copy_to_user(d1->d_name, shortname, short_len) || \
+ put_user(0, d1->d_name + short_len) || \
+ put_user(short_len, &d1->d_reclen)) \
+ goto efault; \
+ } \
+ return 0; \
+efault: \
+ buf->result = -EFAULT; \
+ return -EFAULT; \
+}
+
+FAT_IOCTL_FILLDIR_FUNC(fat_ioctl_filldir, dirent)
+
+static int fat_ioctl_readdir(struct inode *inode, struct file *filp,
+ void __user *dirent, filldir_t filldir,
+ int short_only, int both)
{
- struct fat_ioctl_filldir_callback *buf = __buf;
- struct dirent __user *d1 = buf->dirent;
- struct dirent __user *d2 = d1 + 1;
-
- if (buf->result)
- return -EINVAL;
- buf->result++;
-
- if (name != NULL) {
- /* dirent has only short name */
- if (name_len >= sizeof(d1->d_name))
- name_len = sizeof(d1->d_name) - 1;
-
- if (put_user(0, d2->d_name) ||
- put_user(0, &d2->d_reclen) ||
- copy_to_user(d1->d_name, name, name_len) ||
- put_user(0, d1->d_name + name_len) ||
- put_user(name_len, &d1->d_reclen))
- goto efault;
- } else {
- /* dirent has short and long name */
- const char *longname = buf->longname;
- int long_len = buf->long_len;
- const char *shortname = buf->shortname;
- int short_len = buf->short_len;
-
- if (long_len >= sizeof(d1->d_name))
- long_len = sizeof(d1->d_name) - 1;
- if (short_len >= sizeof(d1->d_name))
- short_len = sizeof(d1->d_name) - 1;
-
- if (copy_to_user(d2->d_name, longname, long_len) ||
- put_user(0, d2->d_name + long_len) ||
- put_user(long_len, &d2->d_reclen) ||
- put_user(ino, &d2->d_ino) ||
- put_user(offset, &d2->d_off) ||
- copy_to_user(d1->d_name, shortname, short_len) ||
- put_user(0, d1->d_name + short_len) ||
- put_user(short_len, &d1->d_reclen))
- goto efault;
+ struct fat_ioctl_filldir_callback buf;
+ int ret;
+
+ buf.dirent = dirent;
+ buf.result = 0;
+ mutex_lock(&inode->i_mutex);
+ ret = -ENOENT;
+ if (!IS_DEADDIR(inode)) {
+ ret = __fat_readdir(inode, filp, &buf, filldir,
+ short_only, both);
}
- return 0;
-efault:
- buf->result = -EFAULT;
- return -EFAULT;
+ mutex_unlock(&inode->i_mutex);
+ if (ret >= 0)
+ ret = buf.result;
+ return ret;
}
-static int fat_dir_ioctl(struct inode * inode, struct file * filp,
- unsigned int cmd, unsigned long arg)
+static int fat_dir_ioctl(struct inode *inode, struct file *filp,
+ unsigned int cmd, unsigned long arg)
{
- struct fat_ioctl_filldir_callback buf;
- struct dirent __user *d1;
- int ret, short_only, both;
+ struct dirent __user *d1 = (struct dirent __user *)arg;
+ int short_only, both;
switch (cmd) {
case VFAT_IOCTL_READDIR_SHORT:
@@ -717,7 +740,6 @@ static int fat_dir_ioctl(struct inode *
return fat_generic_ioctl(inode, filp, cmd, arg);
}
- d1 = (struct dirent __user *)arg;
if (!access_ok(VERIFY_WRITE, d1, sizeof(struct dirent[2])))
return -EFAULT;
/*
@@ -728,69 +750,48 @@ static int fat_dir_ioctl(struct inode *
if (put_user(0, &d1->d_reclen))
return -EFAULT;
- buf.dirent = d1;
- buf.result = 0;
- mutex_lock(&inode->i_mutex);
- ret = -ENOENT;
- if (!IS_DEADDIR(inode)) {
- ret = __fat_readdir(inode, filp, &buf, fat_ioctl_filldir,
- short_only, both);
- }
- mutex_unlock(&inode->i_mutex);
- if (ret >= 0)
- ret = buf.result;
- return ret;
+ return fat_ioctl_readdir(inode, filp, d1, fat_ioctl_filldir,
+ short_only, both);
}
#ifdef CONFIG_COMPAT
#define VFAT_IOCTL_READDIR_BOTH32 _IOR('r', 1, struct compat_dirent[2])
#define VFAT_IOCTL_READDIR_SHORT32 _IOR('r', 2, struct compat_dirent[2])
-static long fat_compat_put_dirent32(struct dirent *d,
- struct compat_dirent __user *d32)
-{
- if (!access_ok(VERIFY_WRITE, d32, sizeof(struct compat_dirent)))
- return -EFAULT;
+FAT_IOCTL_FILLDIR_FUNC(fat_compat_ioctl_filldir, compat_dirent)
- __put_user(d->d_ino, &d32->d_ino);
- __put_user(d->d_off, &d32->d_off);
- __put_user(d->d_reclen, &d32->d_reclen);
- if (__copy_to_user(d32->d_name, d->d_name, d->d_reclen))
- return -EFAULT;
-
- return 0;
-}
-
-static long fat_compat_dir_ioctl(struct file *file, unsigned cmd,
+static long fat_compat_dir_ioctl(struct file *filp, unsigned cmd,
unsigned long arg)
{
- struct compat_dirent __user *p = compat_ptr(arg);
- int ret;
- mm_segment_t oldfs = get_fs();
- struct dirent d[2];
+ struct inode *inode = filp->f_path.dentry->d_inode;
+ struct compat_dirent __user *d1 = compat_ptr(arg);
+ int short_only, both;
switch (cmd) {
- case VFAT_IOCTL_READDIR_BOTH32:
- cmd = VFAT_IOCTL_READDIR_BOTH;
- break;
case VFAT_IOCTL_READDIR_SHORT32:
- cmd = VFAT_IOCTL_READDIR_SHORT;
+ short_only = 1;
+ both = 0;
+ break;
+ case VFAT_IOCTL_READDIR_BOTH32:
+ short_only = 0;
+ both = 1;
break;
default:
return -ENOIOCTLCMD;
}
- set_fs(KERNEL_DS);
- lock_kernel();
- ret = fat_dir_ioctl(file->f_path.dentry->d_inode, file,
- cmd, (unsigned long) &d);
- unlock_kernel();
- set_fs(oldfs);
- if (ret >= 0) {
- ret |= fat_compat_put_dirent32(&d[0], p);
- ret |= fat_compat_put_dirent32(&d[1], p + 1);
- }
- return ret;
+ if (!access_ok(VERIFY_WRITE, d1, sizeof(struct compat_dirent[2])))
+ return -EFAULT;
+ /*
+ * Yes, we don't need this put_user() absolutely. However old
+ * code didn't return the right value. So, app use this value,
+ * in order to check whether it is EOF.
+ */
+ if (put_user(0, &d1->d_reclen))
+ return -EFAULT;
+
+ return fat_ioctl_readdir(inode, filp, d1, fat_compat_ioctl_filldir,
+ short_only, both);
}
#endif /* CONFIG_COMPAT */
--
next prev parent reply other threads:[~2007-05-21 19:35 UTC|newest]
Thread overview: 196+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-21 19:16 [patch 00/69] -stable review Chris Wright
2007-05-21 19:16 ` [patch 01/69] ipv6: track device renames in snmp6 Chris Wright
2007-05-21 19:16 ` [patch 02/69] sis900: Allocate rx replacement buffer before rx operation Chris Wright
2007-05-21 19:16 ` [patch 03/69] smc911x: fix compilation breakage wjen debug is on Chris Wright
2007-05-21 19:16 ` [patch 04/69] ACPI: Fix 2.6.21 boot regression on P4/HT Chris Wright
2007-05-21 19:16 ` [patch 05/69] cxacru: Fix infinite loop when trying to cancel polling task Chris Wright
2007-05-21 19:16 ` [patch 06/69] reiserfs: suppress lockdep warning Chris Wright
2007-05-21 19:16 ` [patch 07/69] libata-sff: Undo bug introduced with pci_iomap changes Chris Wright
2007-05-21 23:18 ` Linus Torvalds
2007-05-21 23:33 ` Jeff Garzik
2007-05-21 23:38 ` Linus Torvalds
2007-05-21 23:38 ` [stable] " Chris Wright
2007-05-22 0:36 ` Alan Cox
2007-05-22 1:09 ` Chris Wright
2007-05-22 1:46 ` Chris Wright
2007-05-22 0:34 ` Alan Cox
2007-05-21 19:16 ` [patch 08/69] iop: fix iop_getttimeoffset Chris Wright
2007-05-21 19:16 ` [patch 09/69] iop13xx: fix i/o address translation Chris Wright
2007-05-21 19:16 ` [patch 10/69] kbuild: fixdep segfault on pathological string-o-death Chris Wright
2007-05-21 19:16 ` [patch 11/69] NETFILTER: {ip,nf}_nat_proto_gre: do not modify/corrupt GREv0 packets through NAT Chris Wright
2007-05-21 19:16 ` [patch 12/69] sata_via: add missing PM hooks Chris Wright
2007-05-21 19:16 ` [patch 13/69] arm: fix handling of svc mode undefined instructions Chris Wright
2007-05-21 19:16 ` [patch 14/69] oom: fix constraint deadlock Chris Wright
2007-05-21 19:16 ` [patch 15/69] slob: fix page order calculation on not 4KB page Chris Wright
2007-05-21 19:16 ` [patch 16/69] ppp: Fix ppp_deflate issues with recent zlib_inflate changes Chris Wright
2007-05-21 19:16 ` [patch 17/69] knfsd: Avoid use of unitialised variables on error path when nfs exports Chris Wright
2007-05-21 19:16 ` [patch 18/69] knfsd: rpc: fix server-side wrapping of krb5i replies Chris Wright
2007-05-21 19:16 ` [patch 19/69] skge: default WOL should be magic only (rev2) Chris Wright
2007-05-21 19:16 ` [patch 20/69] skge: allow WOL except for known broken chips Chris Wright
2007-05-21 19:16 ` [patch 21/69] TG3: Fix TSO bugs Chris Wright
2007-05-21 19:16 ` [patch 22/69] TG3: Remove reset during MAC address changes Chris Wright
2007-05-21 19:16 ` [patch 23/69] TG3: Update version and reldate Chris Wright
2007-05-21 19:16 ` [patch 24/69] BNX2: Fix TSO problem with small MSS Chris Wright
2007-05-21 19:16 ` [patch 25/69] BNX2: Block MII access when ifdown Chris Wright
2007-05-21 19:16 ` [patch 26/69] BNX2: Save PCI state during suspend Chris Wright
2007-05-21 19:16 ` [patch 27/69] BNX2: Update version and reldate Chris Wright
2007-05-21 19:16 ` [patch 28/69] highres/dyntick: prevent xtime lock contention Chris Wright
2007-05-21 19:16 ` Chris Wright [this message]
2007-05-21 19:16 ` [patch 30/69] udf: decrement correct link count in udf_rmdir Chris Wright
2007-05-21 19:16 ` [patch 31/69] IPV6: Fix slab corruption running ip6sic Chris Wright
2007-05-21 19:16 ` [patch 32/69] NETPOLL: Fix TX queue overflow in trapped mode Chris Wright
2007-05-21 19:16 ` [patch 33/69] NETPOLL: Remove CONFIG_NETPOLL_RX Chris Wright
2007-05-21 19:16 ` [patch 34/69] SCTP: Fix sctp_getsockopt_local_addrs_old() to use local storage Chris Wright
2007-05-21 19:16 ` [patch 35/69] SCTP: Correctly copy addresses in sctp_copy_laddrs Chris Wright
2007-05-21 19:16 ` [patch 36/69] TCP: zero out rx_opt in tcp_disconnect() Chris Wright
2007-05-21 19:16 ` [patch 37/69] fix leaky resv_huge_pages when cpuset is in use Chris Wright
2007-05-21 19:16 ` [patch 38/69] clocksource: fix resume logic Chris Wright
2007-05-21 19:16 ` [patch 39/69] md: Avoid a possibility that a read error can wrongly propagate through md/raid1 to a filesystem Chris Wright
2007-05-21 19:16 ` [patch 40/69] driver-core: dont free devt_attr till the device is released Chris Wright
2007-05-21 19:16 ` [patch 41/69] pci-quirks: disable MSI on RS400-200 and RS480 Chris Wright
2007-05-21 19:16 ` [patch 42/69] fix for bugzilla 8426: massive slowdown on SCSI CD/DVD drive connected to mptspi driver Chris Wright
2007-05-21 19:16 ` [patch 43/69] i386: HPET, check if the counter works Chris Wright
2007-05-21 19:58 ` Thomas Gleixner
2007-05-21 20:25 ` Thomas Gleixner
2007-05-21 20:33 ` Chris Wright
2007-05-21 20:36 ` Thomas Gleixner
2007-05-21 21:57 ` Andrew Morton
2007-05-21 22:12 ` Thomas Gleixner
2007-06-05 16:52 ` dean gaudet
2007-06-05 16:56 ` dean gaudet
2007-06-05 16:58 ` Linus Torvalds
2007-05-21 19:16 ` [patch 44/69] ALSA: hda-codec - Fix resume of STAC92xx codecs Chris Wright
2007-05-21 19:16 ` [patch 45/69] IPMI: fix SI address space settings Chris Wright
2007-05-21 19:16 ` [patch 46/69] [PATCH] x86_64 : Fix vgettimeofday() Chris Wright
2007-05-21 19:16 ` [patch 47/69] IPV6: Send ICMPv6 error on scope violations Chris Wright
2007-05-21 19:17 ` [patch 48/69] IPV6: Do no rely on skb->dst before it is assigned Chris Wright
2007-05-21 19:17 ` [patch 49/69] IPV6 ROUTE: Assign rt6i_idev for ip6_{prohibit,blk_hole}_entry Chris Wright
2007-05-21 19:17 ` [patch 50/69] IPV6: Reverse sense of promisc tests in ip6_mc_input Chris Wright
2007-05-21 19:17 ` [patch 51/69] NET_SCHED: prio qdisc boundary condition Chris Wright
2007-05-21 19:17 ` [patch 52/69] SCTP: Prevent OOPS if hmac modules didnt load Chris Wright
2007-05-21 19:17 ` [patch 53/69] IPSEC: Check validity of direction in xfrm_policy_byid Chris Wright
2007-05-21 19:17 ` [patch 54/69] SPARC64: Add missing cpus_empty() check in hypervisor xcall handling Chris Wright
2007-05-21 19:17 ` [patch 55/69] SPARC64: Fix recursion in PROM tree building Chris Wright
2007-05-21 19:17 ` [patch 56/69] SERIAL SUNHV: Add an ID string Chris Wright
2007-05-21 19:17 ` [patch 57/69] SPARC64: Bump PROMINTR_MAX to 32 Chris Wright
2007-05-21 19:17 ` [patch 58/69] SPARC64: Be more resiliant with PCI I/O space regs Chris Wright
2007-05-21 19:17 ` [patch 59/69] sky2: allow 88E8056 Chris Wright
2007-05-21 19:17 ` [patch 60/69] sky2: 88e8071 support not ready Chris Wright
2007-05-21 19:17 ` [patch 61/69] skge: crash on shutdown/suspend Chris Wright
2007-05-21 19:17 ` [patch 62/69] sky2: fix oops on shutdown Chris Wright
2007-05-21 19:17 ` [patch 63/69] USB HID: hiddev - fix race between hiddev_send_event() and hiddev_release() Chris Wright
2007-05-21 19:17 ` [patch 64/69] JFS: Fix race waking up jfsIO kernel thread Chris Wright
2007-05-21 19:17 ` [patch 65/69] NETFILTER: {ip,nf}_conntrack: fix use-after-free in helper destroy callback invocation Chris Wright
2007-05-21 19:17 ` [patch 66/69] CPUFREQ: Support rev H AMD64s in powernow-k8 Chris Wright
2007-05-21 19:17 ` [patch 67/69] CPUFREQ: Correct revision mask for powernow-k8 Chris Wright
2007-05-21 19:17 ` [patch 68/69] CPUFREQ: powernow-k7: fix MHz rounding issue with perflib Chris Wright
2007-05-21 19:17 ` [patch 69/69] CRYPTO: api: Read module pointer before freeing algorithm Chris Wright
2007-05-21 19:31 ` [patch 00/69] -stable review Andrew Morton
2007-05-21 20:31 ` [stable] " Chris Wright
2007-05-21 21:38 ` Eric Dumazet
2007-05-21 22:13 ` Chris Wright
2007-05-21 22:20 ` Adrian Bunk
2007-05-21 22:23 ` Chuck Ebbert
2007-05-21 22:35 ` [stable] " Chris Wright
2007-05-23 1:28 ` Fortier,Vincent [Montreal]
2007-05-23 3:36 ` [stable] " Greg KH
2007-05-23 11:02 ` Fortier,Vincent [Montreal]
2007-05-23 15:12 ` Greg KH
2007-05-21 20:54 ` Chuck Ebbert
2007-05-21 21:07 ` Linus Torvalds
2007-05-21 21:25 ` Chris Wright
[not found] ` <1179870110.16656.2.camel@localhost>
2007-05-22 22:07 ` Linus Torvalds
2007-05-23 7:09 ` Romano Giannetti
2007-05-23 7:19 ` Paolo Ornati
2007-05-23 7:38 ` Romano Giannetti
2007-05-24 12:06 ` Romano Giannetti
2007-05-24 15:06 ` Long delay in resume from RAM (Was Re: [patch 00/69] -stablereview) Romano Giannetti
2007-05-24 15:28 ` Linus Torvalds
2007-05-24 15:52 ` Linus Torvalds
2007-05-24 20:21 ` Romano Giannetti
2007-05-24 20:33 ` Linus Torvalds
2007-05-24 20:35 ` Linus Torvalds
2007-05-24 21:36 ` Romano Giannetti
2007-05-24 20:14 ` Romano Giannetti
2007-05-24 21:01 ` Andrew Morton
2007-05-24 21:12 ` Sam Ravnborg
2007-05-24 21:21 ` Andrew Morton
2007-05-25 5:12 ` Sam Ravnborg
2007-05-24 21:51 ` Romano Giannetti
2007-05-24 22:30 ` Johannes Stezenbach
2007-05-24 21:28 ` Romano Giannetti
[not found] ` <alpine.LFD.0.98.0705240815530.26602@woody.linux-foundation.org >
2007-05-24 22:14 ` Long delay in resume from RAM (Was Re: [patch 00/69]-stablereview) Romano Giannetti
2007-05-24 22:49 ` Linus Torvalds
[not found] ` <alpine.LFD.0.98.0705241549130.26602@woody.linux-foundation.org >
2007-05-25 8:52 ` Romano Giannetti
2007-05-25 9:22 ` Romano Giannetti
2007-05-25 16:19 ` Linus Torvalds
2007-05-24 16:16 ` [patch 00/69] -stable review Linus Torvalds
2007-05-24 20:04 ` pcmcia resume 60 second hang. " Pavel Machek
2007-05-24 20:27 ` Linus Torvalds
2007-05-24 21:03 ` Rafael J. Wysocki
2007-05-24 22:00 ` Pavel Machek
2007-05-24 22:10 ` Linus Torvalds
2007-05-24 22:17 ` Pavel Machek
2007-05-24 22:53 ` Linus Torvalds
2007-05-24 23:18 ` Pavel Machek
2007-05-25 0:37 ` Linus Torvalds
2007-05-25 1:55 ` Nigel Cunningham
2007-05-25 2:10 ` Linus Torvalds
2007-05-25 2:20 ` Nigel Cunningham
2007-05-25 2:41 ` Linus Torvalds
2007-05-25 3:00 ` Nigel Cunningham
2007-05-25 3:31 ` Linus Torvalds
2007-05-25 4:33 ` Nigel Cunningham
2007-05-25 4:49 ` Linus Torvalds
2007-05-25 5:18 ` Nigel Cunningham
2007-05-29 14:16 ` Mark Lord
2007-05-29 14:19 ` Mark Lord
2007-05-29 21:22 ` Nigel Cunningham
2007-05-29 21:33 ` Linus Torvalds
2007-05-29 22:10 ` Nigel Cunningham
2007-05-30 11:49 ` Pavel Machek
2007-05-30 12:40 ` Matthew Garrett
2007-05-30 13:17 ` Nigel Cunningham
2007-05-30 13:29 ` Matthew Garrett
2007-05-30 14:08 ` Rafael J. Wysocki
2007-05-30 16:00 ` Linus Torvalds
2007-05-30 14:04 ` Rafael J. Wysocki
2007-05-30 14:07 ` Matthew Garrett
2007-05-30 22:21 ` Nigel Cunningham
2007-05-30 15:43 ` Pavel Machek
2007-05-25 9:40 ` Need suspend-to-ram maintainer " Pavel Machek
2007-05-25 9:19 ` Pavel Machek
2007-05-29 6:55 ` Kay Sievers
2007-05-29 12:00 ` Rafael J. Wysocki
2007-05-29 12:00 ` Michael-Luke Jones
2007-05-29 12:16 ` Rafael J. Wysocki
2007-05-29 13:15 ` Kay Sievers
2007-05-27 15:57 ` Matthew Garrett
2007-05-27 16:26 ` Linus Torvalds
2007-05-27 16:43 ` Matthew Garrett
2007-05-27 18:32 ` Rafael J. Wysocki
2007-05-27 18:44 ` Matthew Garrett
2007-05-27 19:09 ` Rafael J. Wysocki
2007-05-28 1:05 ` Matthew Garrett
2007-05-28 8:11 ` Rafael J. Wysocki
2007-05-28 12:10 ` Matthew Garrett
2007-05-28 12:55 ` Pavel Machek
2007-05-28 13:03 ` Matthew Garrett
2007-05-28 13:06 ` Pavel Machek
2007-05-28 22:53 ` Nigel Cunningham
2007-05-29 8:31 ` Romano Giannetti
2007-05-29 14:55 ` Linus Torvalds
2007-05-30 10:26 ` Romano Giannetti
2007-05-30 15:43 ` Randy Dunlap
2007-05-28 10:04 ` Pavel Machek
2007-05-28 16:53 ` Linus Torvalds
2007-05-29 5:23 ` [stable] " Greg KH
2007-05-29 13:04 ` Pavel Machek
2007-05-24 22:23 ` Linus Torvalds
2007-05-24 22:39 ` Pavel Machek
2007-05-24 22:32 ` Pavel Machek
2007-05-24 23:16 ` Henrique de Moraes Holschuh
2007-05-24 23:19 ` Pavel Machek
2007-05-25 11:44 ` Rafael J. Wysocki
2007-05-23 7:15 ` Romano Giannetti
2007-05-21 21:40 ` Chris Wright
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=20070521191724.369103000@sous-sol.org \
--to=chrisw@sous-sol.org \
--cc=akpm@linux-foundation.org \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=bartoldeman@users.sourceforge.net \
--cc=cebbert@redhat.com \
--cc=chuckw@quantumlinux.com \
--cc=davej@redhat.com \
--cc=hirofumi@mail.parknet.co.jp \
--cc=jmforbes@linuxtx.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mkrufky@linuxtv.org \
--cc=rdunlap@xenotime.net \
--cc=reviews@ml.cw.f00f.org \
--cc=stable@kernel.org \
--cc=torvalds@linux-foundation.org \
--cc=tytso@mit.edu \
--cc=zwane@arm.linux.org.uk \
/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
Powered by JetHome