login
Login
/
Register
Search
Header Space
Forums
News
Jobs
Blogs
Features
Man Pages
Site
Home
»
Mailing list archives
»
linux-kernel
»
2007
»
September
»
24
Re: [-mm Patch] net/bluetooth/hidp/core.c: Make hidp_setup_input() return int
view
thread
Score:
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From:
Marcel Holtmann <marcel@...>
To: roel <12o3l@...>
Cc: WANG Cong <xiyou.wangcong@...>, Andrew Morton <akpm@...>, <linux-kernel@...>, <bluez-devel@...>, <maxk@...>
Subject:
Re: [-mm Patch] net/bluetooth/hidp/core.c: Make hidp_setup_input() return int
Date: Monday, September 24, 2007 - 3:09 am
Hi,
quoted text
> > This patch does the following things: > > > > - Make hidp_setup_input() return int to indicate errors. > > - Check its return value to handle errors. > > > > Signed-off-by: WANG Cong <xiyou.wangcong@gmail.com> > > > > --- > > net/bluetooth/hidp/core.c | 7 ++++--- > > 1 file changed, 4 insertions(+), 3 deletions(-) > > > > Index: linux-2.6.23-rc6-mm1/net/bluetooth/hidp/core.c > > =================================================================== > > --- linux-2.6.23-rc6-mm1.orig/net/bluetooth/hidp/core.c > > +++ linux-2.6.23-rc6-mm1/net/bluetooth/hidp/core.c > > @@ -625,7 +625,7 @@ static struct device *hidp_get_device(st > > return conn ? &conn->dev : NULL; > > } > > > > -static inline void hidp_setup_input(struct hidp_session *session, struct hidp_connadd_req *req) > > +static inline int hidp_setup_input(struct hidp_session *session, struct hidp_connadd_req *req) > > { > > struct input_dev *input = session->input; > > int i; > > @@ -669,7 +669,7 @@ static inline void hidp_setup_input(stru > > > > input->event = hidp_input_event; > > > > - input_register_device(input); > > + return input_register_device(input); > > } > > > > static int hidp_open(struct hid_device *hid) > > @@ -823,7 +823,8 @@ int hidp_add_connection(struct hidp_conn > > session->idle_to = req->idle_to; > > > > if (session->input) > > - hidp_setup_input(session, req); > > + if ((err = (hidp_setup_input(session, req)))) > > + goto failed; > > This is confusing, why not just do > > if (session->input) { > err = hidp_setup_input(session, req); > if (err) > goto failed; > }
lets use "if (err < 0)" and I am okay with that patch. Regards Marcel -
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
2.6.23-rc6-mm1
, Andrew Morton
, (Tue Sep 18, 4:18 am)
[-mm Patch] net/bluetooth/hidp/core.c: Make hidp_setup_input...
, WANG Cong
, (Sat Sep 22, 11:01 pm)
Re: [-mm Patch] net/bluetooth/hidp/core.c: Make hidp_setup_i...
, roel
, (Sun Sep 23, 6:13 pm)
Re: [-mm Patch] net/bluetooth/hidp/core.c: Make hidp_setup_i...
, Marcel Holtmann
, (Mon Sep 24, 3:09 am)
[Resend][-mm Patch] net/bluetooth/hidp/core.c: Make hidp_set...
, WANG Cong
, (Sun Sep 23, 10:50 pm)
Re: [-mm Patch] net/bluetooth/hidp/core.c: Make hidp_setup_i...
, WANG Cong
, (Sun Sep 23, 10:38 pm)
[BUG 2.6.23-rc6-mm1] NMI Watchdog detected LOCKUP on CPU 0
, Fengguang Wu
, (Sat Sep 22, 9:42 pm)
Re: [BUG 2.6.23-rc6-mm1] NMI Watchdog detected LOCKUP on CPU 0
, Andrew Morton
, (Sun Sep 23, 12:22 am)
Re: [BUG 2.6.23-rc6-mm1] NMI Watchdog detected LOCKUP on CPU 0
, Fengguang Wu
, (Sun Sep 23, 1:30 am)
Re: [BUG 2.6.23-rc6-mm1] NMI Watchdog detected LOCKUP on CPU 0
, Andrew Morton
, (Sun Sep 23, 1:35 am)
Re: [BUG 2.6.23-rc6-mm1] NMI Watchdog detected LOCKUP on CPU 0
, Fengguang Wu
, (Sun Sep 23, 1:53 am)
[PATCH -mm] iseries_veth: Kill unused variable
, Satyam Sharma
, (Sat Sep 22, 3:55 am)
[PATCH -mm] mv643xx_eth: Remove redundant multiple initializ...
, Satyam Sharma
, (Sat Sep 22, 3:54 am)
[PATCH] Remove broken netfilter binary sysctls from bridging...
, Joseph Fannin
, (Thu Sep 20, 10:05 pm)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Eric W. Biederman
, (Fri Sep 21, 12:21 am)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Patrick McHardy
, (Mon Sep 24, 12:55 pm)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Eric W. Biederman
, (Tue Sep 25, 10:03 am)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Patrick McHardy
, (Tue Sep 25, 10:26 am)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Eric W. Biederman
, (Tue Sep 25, 12:38 pm)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Stephen Hemminger
, (Mon Sep 24, 4:14 pm)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Patrick McHardy
, (Tue Sep 25, 12:07 am)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Stephen Hemminger
, (Tue Sep 25, 12:12 pm)
Re: [PATCH] Remove broken netfilter binary sysctls from brid...
, Patrick McHardy
, (Tue Sep 25, 12:22 pm)
Build failure on ppc64 drivers/block/ps3disk.c
, Mel Gorman
, (Thu Sep 20, 9:25 am)
2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Satyam Sharma
, (Thu Sep 20, 9:37 am)
[PATCH -mm] pasemi_mac: Build fix after recent netdev stats ...
, Satyam Sharma
, (Sat Sep 22, 3:40 am)
Re: 2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Satyam Sharma
, (Sat Sep 22, 3:25 am)
Re: 2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Satyam Sharma
, (Sat Sep 22, 2:54 am)
Re: 2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Mel Gorman
, (Mon Sep 24, 7:12 am)
Re: 2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Satyam Sharma
, (Sat Sep 22, 2:51 am)
Re: 2.6.23-rc6-mm1: Build failures on ppc64_defconfig
, Satyam Sharma
, (Sat Sep 22, 2:50 am)
Re: Build failure on ppc64 drivers/block/ps3disk.c
, Jens Axboe
, (Thu Sep 20, 9:32 am)
2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_scc.c
, Mel Gorman
, (Thu Sep 20, 9:13 am)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Alan Cox
, (Thu Sep 20, 10:09 am)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Satyam Sharma
, (Fri Sep 21, 10:50 pm)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Jeff Garzik
, (Tue Sep 25, 11:39 pm)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Mel Gorman
, (Mon Sep 24, 7:01 am)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Kamalesh Babulal
, (Thu Sep 20, 11:45 am)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/ata/pata_...
, Mel Gorman
, (Thu Sep 20, 11:14 am)
Re: 2.6.23-rc6-mm1 - make access to tasks nsproxy ligther (f...
, Cedric Le Goater
, (Thu Sep 20, 4:41 am)
Re: 2.6.23-rc6-mm1 - make access to tasks nsproxy ligther (f...
, Pavel Emelyanov
, (Thu Sep 20, 4:59 am)
Re: 2.6.23-rc6-mm1 - make access to tasks nsproxy ligther (f...
, Cedric Le Goater
, (Thu Sep 20, 5:12 am)
Re: 2.6.23-rc6-mm1 - make access to tasks nsproxy ligther (f...
, Cedric Le Goater
, (Thu Sep 20, 1:08 pm)
Re: 2.6.23-rc6-mm1 - make access to tasks nsproxy ligther (f...
, Serge E. Hallyn
, (Mon Sep 24, 12:00 am)
Re: 2.6.23-rc6-mm1
, Joseph Fannin
, (Wed Sep 19, 7:58 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Wed Sep 19, 8:09 pm)
Re: 2.6.23-rc6-mm1
, Tilman Schmidt
, (Wed Sep 19, 7:02 pm)
Re: 2.6.23-rc6-mm1
, Tilman Schmidt
, (Thu Sep 20, 3:20 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Thu Sep 20, 4:25 pm)
Re: 2.6.23-rc6-mm1
, Tilman Schmidt
, (Thu Sep 20, 8:53 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Wed Sep 19, 7:24 pm)
Re: 2.6.23-rc6-mm1
, David Brownell
, (Wed Sep 19, 7:44 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Wed Sep 19, 8:06 pm)
Re: 2.6.23-rc6-mm1
, David Brownell
, (Thu Sep 20, 12:43 am)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Thu Sep 20, 2:11 am)
Re: 2.6.23-rc6-mm1
, David Brownell
, (Thu Sep 20, 1:36 pm)
Re: 2.6.23-rc6-mm1
, Alessandro Zummo
, (Thu Sep 20, 4:51 am)
Re: 2.6.23-rc6-mm1
, Kay Sievers
, (Thu Sep 20, 3:54 am)
Re: 2.6.23-rc6-mm1
, David Brownell
, (Thu Sep 20, 12:15 pm)
Re: 2.6.23-rc6-mm1
, Chuck Ebbert
, (Wed Sep 19, 7:28 pm)
Re: 2.6.23-rc6-mm1
, Tilman Schmidt
, (Wed Sep 19, 7:55 pm)
Re: 2.6.23-rc6-mm1
, Tilman Schmidt
, (Thu Sep 20, 3:10 pm)
2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Andy Whitcroft
, (Wed Sep 19, 12:43 pm)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Hugh Dickins
, (Wed Sep 19, 4:03 pm)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Peter Zijlstra
, (Wed Sep 19, 4:44 pm)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Hugh Dickins
, (Thu Sep 20, 7:31 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Fengguang Wu
, (Fri Sep 21, 9:55 pm)
Re: 2.6.23-rc6-mm1 -- ipg.c don't compile on i386 with CONFI...
, trem
, (Sun Sep 23, 10:19 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Peter Zijlstra
, (Sat Sep 22, 9:16 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Fengguang Wu
, (Sat Sep 22, 9:20 pm)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Peter Zijlstra
, (Sun Sep 23, 9:02 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Fengguang Wu
, (Sun Sep 23, 11:01 pm)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Peter Zijlstra
, (Mon Sep 24, 3:35 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Fengguang Wu
, (Mon Sep 24, 4:12 am)
Re: 2.6.23-rc6-mm1 -- mkfs stuck in 'D'
, Peter Zijlstra
, (Thu Sep 20, 8:15 am)
X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 7:43 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 7:53 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 10:59 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andrew Morton
, (Wed Sep 19, 3:10 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andi Kleen
, (Wed Sep 19, 3:24 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Dave Airlie
, (Wed Sep 19, 9:42 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Matt Mackall
, (Thu Sep 20, 6:06 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Fri Sep 21, 1:16 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Fri Sep 21, 1:30 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Fri Sep 21, 3:33 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Fri Sep 21, 3:38 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Fri Sep 21, 3:43 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Sun Sep 23, 11:25 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Mon Sep 24, 2:06 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Mon Sep 24, 3:37 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Mon Sep 24, 4:10 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Fri Sep 21, 1:54 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andi Kleen
, (Thu Sep 20, 7:03 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Matt Mackall
, (Thu Sep 20, 7:31 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Fri Sep 21, 3:07 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andi Kleen
, (Thu Sep 20, 7:44 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Fri Sep 21, 1:18 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andrew Morton
, (Wed Sep 19, 10:24 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Thu Sep 20, 3:19 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Dave Airlie
, (Wed Sep 19, 8:18 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 3:46 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andi Kleen
, (Wed Sep 19, 3:54 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 3:57 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Dave Airlie
, (Wed Sep 19, 9:51 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Thu Sep 20, 3:24 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Dave Airlie
, (Thu Sep 20, 3:33 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Zhenyu Wang
, (Thu Sep 20, 5:24 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Thu Sep 20, 6:10 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Zhenyu Wang
, (Thu Sep 20, 9:27 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Wed Sep 19, 4:32 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 4:47 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
,
, (Thu Sep 20, 9:17 am)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Dave Airlie
, (Thu Sep 20, 6:24 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Jiri Slaby
, (Wed Sep 19, 4:01 pm)
Re: X-freeze after clflush changes [Was: 2.6.23-rc6-mm1]
, Andrew Morton
, (Wed Sep 19, 5:42 pm)
2.6.23-rc6-mm1 -- powerpc pSeries_log_error panic in rtas_ca...
, Andy Whitcroft
, (Wed Sep 19, 5:36 am)
2.6.23-rc6-mm1 -- powerpc link failure
, Andy Whitcroft
, (Wed Sep 19, 5:28 am)
Re: 2.6.23-rc6-mm1 -- powerpc link failure
, Sam Ravnborg
, (Wed Sep 19, 1:44 pm)
Re: 2.6.23-rc6-mm1 -- powerpc link failure
, Andy Whitcroft
, (Tue Sep 25, 9:40 am)
Re: 2.6.23-rc6-mm1 -- powerpc link failure
, Segher Boessenkool
, (Wed Sep 19, 12:36 pm)
Re: 2.6.23-rc6-mm1 -- powerpc link failure
, Andy Whitcroft
, (Wed Sep 19, 12:52 pm)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Mariusz Kozlowski
, (Tue Sep 18, 5:45 pm)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Cornelia Huck
, (Wed Sep 19, 4:27 am)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Mariusz Kozlowski
, (Wed Sep 19, 12:43 pm)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Cornelia Huck
, (Wed Sep 19, 2:02 pm)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Cornelia Huck
, (Thu Sep 20, 9:35 am)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Mariusz Kozlowski
, (Thu Sep 20, 1:27 pm)
Re: 2.6.23-rc6-mm1: atomic counter underflow
, Pierre Ossman
, (Thu Sep 20, 12:30 pm)
kobject: Temporarily save k_name on cleanup for debug message.
, Cornelia Huck
, (Thu Sep 20, 3:43 am)
Re: kobject: Temporarily save k_name on cleanup for debug me...
, Mariusz Kozlowski
, (Thu Sep 20, 1:26 pm)
kobject: Temporarily save k_name on cleanup for debug message.
, Cornelia Huck
, (Thu Sep 20, 3:42 am)
Re: 2.6.23-rc6-mm1 sparc build error
, Mathieu Desnoyers
, (Tue Sep 18, 4:54 pm)
Re: 2.6.23-rc6-mm1 sparc build error
, Andrew Morton
, (Tue Sep 18, 5:05 pm)
Re: 2.6.23-rc6-mm1 sparc build error
, Guennadi Liakhovetski
, (Thu Sep 20, 8:53 am)
Re: 2.6.23-rc6-mm1 sparc build error
, Mathieu Desnoyers
, (Fri Sep 21, 9:51 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325
, Rafael J. Wysocki
, (Tue Sep 18, 4:21 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325
, Rafael J. Wysocki
, (Tue Sep 18, 4:54 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Tue Sep 18, 5:37 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Wed Sep 19, 3:06 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Wed Sep 19, 1:44 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Wed Sep 19, 3:21 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Wed Sep 19, 8:06 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 2:18 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 9:29 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 9:43 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 10:12 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 4:42 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 9:53 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 10:47 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 10:50 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 11:49 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 4:39 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 5:08 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Linus Torvalds
, (Thu Sep 20, 5:35 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Linus Torvalds
, (Thu Sep 20, 5:55 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Paul Mackerras
, (Fri Sep 21, 12:51 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Fri Sep 21, 4:06 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Pavel Machek
, (Thu Oct 11, 5:19 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Len Brown
, (Thu Sep 20, 7:35 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Fri Sep 21, 3:56 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Fri Sep 21, 5:25 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 6:05 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 6:30 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Fri Sep 21, 8:59 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Fri Sep 21, 10:20 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Fri Sep 21, 12:27 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Fri Sep 21, 3:20 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Fri Sep 21, 3:16 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Fri Sep 21, 3:37 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 5:54 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 6:01 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 5:45 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Thomas Gleixner
, (Thu Sep 20, 5:53 pm)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Fri Sep 21, 5:24 am)
Re: 2.6.23-rc6-mm1: failure to boot on HP nx6325, no sound w...
, Rafael J. Wysocki
, (Thu Sep 20, 6:35 pm)
2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
,
, (Tue Sep 18, 3:32 pm)
Re: 2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
, Sam Ravnborg
, (Tue Sep 18, 4:32 pm)
Re: 2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
,
, (Tue Sep 18, 6:03 pm)
Re: 2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
, Sam Ravnborg
, (Wed Sep 19, 3:34 am)
Re: 2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
,
, (Wed Sep 19, 11:53 am)
Re: 2.6.23-rc6-mm1 - Mostly working, with a kbuild oddity
, Sam Ravnborg
, (Wed Sep 19, 1:39 pm)
Re: 2.6.23-rc6-mm1
, Mel Gorman
, (Tue Sep 18, 1:44 pm)
Re: 2.6.23-rc6-mm1
, Satyam Sharma
, (Sat Sep 22, 4:41 am)
Re: 2.6.23-rc6-mm1
, Mel Gorman
, (Mon Sep 24, 7:14 am)
2.6.23-rc6-mm1: kgdb support on ppc64 utterly broken
, Mel Gorman
, (Wed Sep 19, 12:29 pm)
Re: 2.6.23-rc6-mm1 (watchdog)
, Randy Dunlap
, (Tue Sep 18, 1:18 pm)
Re: 2.6.23-rc6-mm1 (watchdog)
, Randy Dunlap
, (Tue Sep 18, 1:41 pm)
Re: 2.6.23-rc6-mm1
, Miles Lane
, (Tue Sep 18, 1:20 pm)
Re: 2.6.23-rc6-mm1
, Mel Gorman
, (Tue Sep 18, 2:05 pm)
2.6.23-rc6-mm1: Build failure on ppc64 drivers/net/ehea/ehea...
, Mel Gorman
, (Tue Sep 18, 12:20 pm)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/net/ehea/...
, David Miller
, (Tue Sep 18, 3:08 pm)
Re: 2.6.23-rc6-mm1: Build failure on ppc64 drivers/net/ehea/...
, Mel Gorman
, (Tue Sep 18, 12:41 pm)
modpost errors ( Re: 2.6.23-rc6-mm1)
, Gabriel C
, (Tue Sep 18, 11:43 am)
Re: modpost errors ( Re: 2.6.23-rc6-mm1)
, Sam Ravnborg
, (Tue Sep 18, 11:56 am)
Re: [v4l-dvb-maintainer] modpost errors ( Re: 2.6.23-rc6-mm1)
,
, (Tue Sep 18, 12:37 pm)
Re: [v4l-dvb-maintainer] modpost errors ( Re: 2.6.23-rc6-mm1)
, Mauro Carvalho Chehab
, (Tue Sep 18, 6:06 pm)
Re: 2.6.23-rc6-mm1
, Miles Lane
, (Tue Sep 18, 11:27 am)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Tue Sep 18, 3:17 pm)
Re: 2.6.23-rc6-mm1
, Miles Lane
, (Tue Sep 18, 3:42 pm)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Tue Sep 18, 4:26 pm)
Re: 2.6.23-rc6-mm1
, Gabriel C
, (Tue Sep 18, 6:38 pm)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Wed Sep 19, 2:48 pm)
Re: 2.6.23-rc6-mm1
, Gabriel C
, (Tue Sep 18, 6:48 pm)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Wed Sep 19, 3:33 pm)
Re: 2.6.23-rc6-mm1
, Gabriel C
, (Wed Sep 19, 4:36 pm)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Wed Sep 19, 4:43 pm)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Tue Sep 18, 11:52 am)
Re: 2.6.23-rc6-mm1
, Miles Lane
, (Tue Sep 18, 11:39 am)
Re: 2.6.23-rc6-mm1
,
, (Tue Sep 18, 11:07 am)
Re: 2.6.23-rc6-mm1
, Sam Ravnborg
, (Tue Sep 18, 11:50 am)
Re: 2.6.23-rc6-mm1
, Kamalesh Babulal
, (Tue Sep 18, 5:13 am)
Re: 2.6.23-rc6-mm1
, Andy Whitcroft
, (Tue Sep 18, 5:34 am)
Re: 2.6.23-rc6-mm1
, Benjamin Herrenschmidt
, (Tue Sep 18, 6:02 am)
Re: 2.6.23-rc6-mm1
, Kamalesh Babulal
, (Tue Sep 18, 8:07 am)
Re: 2.6.23-rc6-mm1
, Greg KH
, (Tue Sep 18, 3:16 pm)
Re: 2.6.23-rc6-mm1
, Benjamin Herrenschmidt
, (Tue Sep 18, 5:35 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Tue Sep 18, 12:53 pm)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Tue Sep 18, 5:27 am)
Re: 2.6.23-rc6-mm1
, Satyam Sharma
, (Tue Sep 18, 5:34 am)
Re: 2.6.23-rc6-mm1
, Greg KH
, (Tue Sep 18, 3:17 pm)
Re: 2.6.23-rc6-mm1
, Satyam Sharma
, (Sat Sep 22, 5:21 am)
Re: 2.6.23-rc6-mm1
, Greg KH
, (Tue Sep 25, 1:35 am)
Re: 2.6.23-rc6-mm1
, Andrew Morton
, (Tue Sep 18, 4:24 am)
Navigation
Create content
Mailing list archives
Recent posts
Mail archive search
Enter your search terms.
all mailing lists
alsa-devel
dragonflybsd-bugs
dragonflybsd-commit
dragonflybsd-docs
dragonflybsd-kernel
dragonflybsd-submit
dragonflybsd-user
freebsd-announce
freebsd-bugs
freebsd-chat
freebsd-cluster
freebsd-current
freebsd-drivers
freebsd-embeded
freebsd-fs
freebsd-hackers
freebsd-hardware
freebsd-mobile
freebsd-net
freebsd-performance
freebsd-pf
freebsd-security
freebsd-security-notifications
freebsd-threads
git
git-commits-head
linux-activists
linux-arm
linux-ath5k-devel
linux-btrfs
linux-c-programming
linux-driver-devel
linux-ext4
linux-fsdevel
linux-ia64
linux-input
linux-kernel
linux-kernel-janitors
linux-kernel-mentors
linux-kernel-newbies
linux-kvm
linux-net
linux-netdev
linux-newbie
linux-nfs
linux-raid
linux-scsi
linux-security-module
linux-sparse
linux-usb
linux-usb-devel
madwifi-devel
netbsd-announce
netbsd-tech-kern
openbsd-announce
openbsd-bugs
openbsd-ipv6
openbsd-misc
openbsd-security-announce
openbsd-smp
openbsd-source-changes
openbsd-tech
openfabrics-general
openmoko-community
openmoko-devel
openmoko-kernel
reiserfs-devel
tux3
ucarp
Optionally limit your search to a specific mailing list.
advanced
Popular discussions
linux-kernel
:
Arjan van de Ven
[Patch v2] Make PCI extended config space (MMCONFIG) a driver opt-in
Tilman Schmidt
git guidance
Vu Pham
Re: [Scst-devel] Integration of SCST in the mainstream Linux kernel
Greg KH
[GIT PATCH] driver core patches against 2.6.24
git
:
David Miller
Re: Git and GCC
Mike
I don't want the .git directory next to my code.
Steffen Prohaska
merge vs rebase: Is visualization in gitk the only problem?
David Kastrup
What is the idea for bare repositories?
openbsd-misc
:
Richard Stallman
Real men don't attack straw men
GVG GVG
ssh_exchange_identification: Connection closed by remote host
Falk Brockerhoff
ftp-proxy and no route to host issue
Pieter Verberne
Remove escape characters from file
linux-netdev
:
Chuck Lever
Re: [bug?] tg3: Failed to load firmware "tigon/tg3_tso.bin"
David Miller
Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock().
Stefan Richter
Re: [GIT]: Networking
jamal
Re: [LARTC] ifb and ppp
Latest forum posts
usb mic not detected
20 minutes ago
Applications and Utilities
Add ext2 inode field
9 hours ago
Linux kernel
the kernel how to power off the machine
19 hours ago
Linux kernel
struct gendisk via request_queue
21 hours ago
Linux kernel
page initialization during kernel initialization
1 day ago
Linux kernel
Read Transport Layer Data form network packets (tcp/ip)
2 days ago
Linux kernel
Getting blinking screen in Fedora 9
2 days ago
Linux general
Problem with kernel + libata
3 days ago
Linux kernel
How to detect usb device insertioin and removal event ?
3 days ago
Linux general
toshiba m30x-129 herbinaiton problem
3 days ago
Hardware
Show all forums...
Recent Tags
Intel
2.6.27
-rc
quote
-rc8
Linux
2.6.27-rc8
Linus Torvalds
bugs
more tags
Colocation donated by:
Who's online
There are currently
2 users
and
963 guests
online.
Online users
thorfinn@kernel...
Anusha
Syndicate
speck-geostationary