linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
@ 2007-01-05  6:36 Ahmed S. Darwish
  2007-01-05  6:56 ` Robert P. J. Day
  2007-01-05  8:10 ` Rolf Eike Beer
  0 siblings, 2 replies; 15+ messages in thread
From: Ahmed S. Darwish @ 2007-01-05  6:36 UTC (permalink / raw)
  To: linux-kernel

Remove unnecessary kmalloc casts in drivers/char/tty_io.c

Signed-off-by: Ahmed Darwish <darwish.07@gmail.com>

diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c
index 47a6eac..97f54b0 100644
--- a/drivers/char/tty_io.c
+++ b/drivers/char/tty_io.c
@@ -1932,16 +1932,14 @@ static int init_dev(struct tty_driver *driver, int idx,
 	}
 
 	if (!*tp_loc) {
-		tp = (struct ktermios *) kmalloc(sizeof(struct ktermios),
-						GFP_KERNEL);
+		tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
 		if (!tp)
 			goto free_mem_out;
 		*tp = driver->init_termios;
 	}
 
 	if (!*ltp_loc) {
-		ltp = (struct ktermios *) kmalloc(sizeof(struct ktermios),
-						 GFP_KERNEL);
+		ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
 		if (!ltp)
 			goto free_mem_out;
 		memset(ltp, 0, sizeof(struct ktermios));
@@ -1965,16 +1963,14 @@ static int init_dev(struct tty_driver *driver, int idx,
 		}
 
 		if (!*o_tp_loc) {
-			o_tp = (struct ktermios *)
-				kmalloc(sizeof(struct ktermios), GFP_KERNEL);
+			o_tp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
 			if (!o_tp)
 				goto free_mem_out;
 			*o_tp = driver->other->init_termios;
 		}
 
 		if (!*o_ltp_loc) {
-			o_ltp = (struct ktermios *)
-				kmalloc(sizeof(struct ktermios), GFP_KERNEL);
+			o_ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
 			if (!o_ltp)
 				goto free_mem_out;
 			memset(o_ltp, 0, sizeof(struct ktermios));

-- 
Ahmed S. Darwish
http://darwish-07.blogspot.com

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05  6:36 [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts Ahmed S. Darwish
@ 2007-01-05  6:56 ` Robert P. J. Day
  2007-01-05  7:14   ` Ahmed S. Darwish
  2007-01-05  8:10 ` Rolf Eike Beer
  1 sibling, 1 reply; 15+ messages in thread
From: Robert P. J. Day @ 2007-01-05  6:56 UTC (permalink / raw)
  To: Ahmed S. Darwish; +Cc: linux-kernel

On Fri, 5 Jan 2007, Ahmed S. Darwish wrote:

> Remove unnecessary kmalloc casts in drivers/char/tty_io.c

rather than remove these casts a file or two at a time, why not just
do them all at once and submit a single patch?  there aren't that many
of them:

  grep -Er "\([^\)\*]+\*\) ?k[cmz]alloc ?\(" .

rday

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05  6:56 ` Robert P. J. Day
@ 2007-01-05  7:14   ` Ahmed S. Darwish
  0 siblings, 0 replies; 15+ messages in thread
From: Ahmed S. Darwish @ 2007-01-05  7:14 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: linux-kernel

On Fri, Jan 05, 2007 at 01:56:09AM -0500, Robert P. J. Day wrote:
> On Fri, 5 Jan 2007, Ahmed S. Darwish wrote:
> 
> > Remove unnecessary kmalloc casts in drivers/char/tty_io.c
> 
> rather than remove these casts a file or two at a time, why not just
> do them all at once and submit a single patch?  there aren't that many
> of them:

OK, Thanks for the tip ..

-- 
Ahmed S. Darwish
http://darwish-07.blogspot.com

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05  6:36 [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts Ahmed S. Darwish
  2007-01-05  6:56 ` Robert P. J. Day
@ 2007-01-05  8:10 ` Rolf Eike Beer
  2007-01-05 10:06   ` Ahmed S. Darwish
  1 sibling, 1 reply; 15+ messages in thread
From: Rolf Eike Beer @ 2007-01-05  8:10 UTC (permalink / raw)
  To: Ahmed S. Darwish; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 810 bytes --]

Ahmed S. Darwish wrote:
> Remove unnecessary kmalloc casts in drivers/char/tty_io.c
>
> Signed-off-by: Ahmed Darwish <darwish.07@gmail.com>

>  	if (!*ltp_loc) {
> -		ltp = (struct ktermios *) kmalloc(sizeof(struct ktermios),
> -						 GFP_KERNEL);
> +		ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
                      ^^^^^^^
>  		if (!ltp)
>  			goto free_mem_out;
>  		memset(ltp, 0, sizeof(struct ktermios));
                ^^^^^^

kzalloc

>  		if (!*o_ltp_loc) {
> -			o_ltp = (struct ktermios *)
> -				kmalloc(sizeof(struct ktermios), GFP_KERNEL);
> +			o_ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
                                ^^^^^^^
>  			if (!o_ltp)
>  				goto free_mem_out;
>  			memset(o_ltp, 0, sizeof(struct ktermios));
                        ^^^^^^

kzalloc

HTH

Eike

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05  8:10 ` Rolf Eike Beer
@ 2007-01-05 10:06   ` Ahmed S. Darwish
  2007-01-05 10:18     ` Robert P. J. Day
  2007-01-05 10:26     ` Rolf Eike Beer
  0 siblings, 2 replies; 15+ messages in thread
From: Ahmed S. Darwish @ 2007-01-05 10:06 UTC (permalink / raw)
  To: Rolf Eike Beer; +Cc: linux-kernel

On Fri, Jan 05, 2007 at 09:10:01AM +0100, Rolf Eike Beer wrote:
> Ahmed S. Darwish wrote:
> > Remove unnecessary kmalloc casts in drivers/char/tty_io.c
> >
> > Signed-off-by: Ahmed Darwish <darwish.07@gmail.com>
> 
>   	if (!*ltp_loc) {
>  -		ltp = (struct ktermios *) kmalloc(sizeof(struct ktermios),
>  -						 GFP_KERNEL);
>  +		ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
>                       ^^^^^^^
>   		if (!ltp)
>   			goto free_mem_out;
>   		memset(ltp, 0, sizeof(struct ktermios));
>                 ^^^^^^ 
> kzalloc
> 
>   		if (!*o_ltp_loc) {
>  -			o_ltp = (struct ktermios *)
>  -				kmalloc(sizeof(struct ktermios), GFP_KERNEL);
>  +			o_ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
>                                 ^^^^^^^
>   			if (!o_ltp)
>   				goto free_mem_out;
>   			memset(o_ltp, 0, sizeof(struct ktermios));
>                         ^^^^^^
> kzalloc

Currently I'm dropping this patch and writing a big patch to remove all the 
k[mzc]alloc castings in the 20-rc3 tree as suggested by Mr. Robert Day.
I think this will be better done in another patch to let every patch do one
single thing. right ?

-- 
Ahmed S. Darwish
http://darwish-07.blogspot.com

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05 10:06   ` Ahmed S. Darwish
@ 2007-01-05 10:18     ` Robert P. J. Day
  2007-01-05 10:39       ` Pekka Enberg
                         ` (2 more replies)
  2007-01-05 10:26     ` Rolf Eike Beer
  1 sibling, 3 replies; 15+ messages in thread
From: Robert P. J. Day @ 2007-01-05 10:18 UTC (permalink / raw)
  To: Ahmed S. Darwish; +Cc: Rolf Eike Beer, linux-kernel

On Fri, 5 Jan 2007, Ahmed S. Darwish wrote:

> On Fri, Jan 05, 2007 at 09:10:01AM +0100, Rolf Eike Beer wrote:
> > Ahmed S. Darwish wrote:
> > > Remove unnecessary kmalloc casts in drivers/char/tty_io.c
> > >
> > > Signed-off-by: Ahmed Darwish <darwish.07@gmail.com>
> >
> >   	if (!*ltp_loc) {
> >  -		ltp = (struct ktermios *) kmalloc(sizeof(struct ktermios),
> >  -						 GFP_KERNEL);
> >  +		ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
> >                       ^^^^^^^
> >   		if (!ltp)
> >   			goto free_mem_out;
> >   		memset(ltp, 0, sizeof(struct ktermios));
> >                 ^^^^^^
> > kzalloc
> >
> >   		if (!*o_ltp_loc) {
> >  -			o_ltp = (struct ktermios *)
> >  -				kmalloc(sizeof(struct ktermios), GFP_KERNEL);
> >  +			o_ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
> >                                 ^^^^^^^
> >   			if (!o_ltp)
> >   				goto free_mem_out;
> >   			memset(o_ltp, 0, sizeof(struct ktermios));
> >                         ^^^^^^
> > kzalloc
>
> Currently I'm dropping this patch and writing a big patch to remove
> all the k[mzc]alloc castings in the 20-rc3 tree as suggested by Mr.
> Robert Day. I think this will be better done in another patch to let
> every patch do one single thing. right ?

almost.  as i've learned (the hard way), while each patch should
logically accomplish one thing, while you're there, you might as well
clean up other issues *at the same locations*.

in this case, as mr. beer suggests, you should also check if this
represents a kmalloc->kzalloc cleanup (there's lots of those), and
also see if you can replace one of these:

  sizeof(struct blah)

with one of these:

  sizeof(*blahptr)

according to the CodingStyle guide.

rday

p.s.  just FYI, i have a patch that does most of this, but i was going
to hold off submitting it until 2.6.20 had arrived.  but if you want
to take a shot at it, it's all yours.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05 10:06   ` Ahmed S. Darwish
  2007-01-05 10:18     ` Robert P. J. Day
@ 2007-01-05 10:26     ` Rolf Eike Beer
  2007-01-05 10:32       ` Ahmed S. Darwish
  1 sibling, 1 reply; 15+ messages in thread
From: Rolf Eike Beer @ 2007-01-05 10:26 UTC (permalink / raw)
  To: Ahmed S. Darwish; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1989 bytes --]

Am Freitag, 5. Januar 2007 11:06 schrieb Ahmed S. Darwish:
> On Fri, Jan 05, 2007 at 09:10:01AM +0100, Rolf Eike Beer wrote:
> > Ahmed S. Darwish wrote:
> > > Remove unnecessary kmalloc casts in drivers/char/tty_io.c
> > >
> > > Signed-off-by: Ahmed Darwish <darwish.07@gmail.com>
> >
> >   	if (!*ltp_loc) {
> >  -		ltp = (struct ktermios *) kmalloc(sizeof(struct ktermios),
> >  -						 GFP_KERNEL);
> >  +		ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
> >                       ^^^^^^^
> >   		if (!ltp)
> >   			goto free_mem_out;
> >   		memset(ltp, 0, sizeof(struct ktermios));
> >                 ^^^^^^
> > kzalloc
> >
> >   		if (!*o_ltp_loc) {
> >  -			o_ltp = (struct ktermios *)
> >  -				kmalloc(sizeof(struct ktermios), GFP_KERNEL);
> >  +			o_ltp = kmalloc(sizeof(struct ktermios), GFP_KERNEL);
> >                                 ^^^^^^^
> >   			if (!o_ltp)
> >   				goto free_mem_out;
> >   			memset(o_ltp, 0, sizeof(struct ktermios));
> >                         ^^^^^^
> > kzalloc
>
> Currently I'm dropping this patch and writing a big patch to remove all the
> k[mzc]alloc castings in the 20-rc3 tree as suggested by Mr. Robert Day.

One big patch for the whole kernel will not work anyway. You have to split it 
up to allow subsystems to integrate them in their own trees. With one big 
patch you would get collisions all over the tree causing the complete patch 
to get dropped. Also CC subsystem maintainers on their parts. And please send 
the patches as replies to the first one as it cleans up readability of lkml a 
lot :)

> I think this will be better done in another patch to let every patch do one
> single thing. right ?

Yes. But I would suggest starting with the kmalloc()->kzalloc() things. When 
you do this conversions just remove the casts of the lines you're touching. 
This will reduce the size of the complete thing avoiding two rather trivial 
patches touching the same line twice.

Eike

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05 10:26     ` Rolf Eike Beer
@ 2007-01-05 10:32       ` Ahmed S. Darwish
  2007-01-05 11:54         ` Rolf Eike Beer
  0 siblings, 1 reply; 15+ messages in thread
From: Ahmed S. Darwish @ 2007-01-05 10:32 UTC (permalink / raw)
  To: Rolf Eike Beer; +Cc: linux-kernel

On Fri, Jan 05, 2007 at 11:26:07AM +0100, Rolf Eike Beer wrote:

> One big patch for the whole kernel will not work anyway. You have to split it 
> up to allow subsystems to integrate them in their own trees. With one big 
> patch you would get collisions all over the tree causing the complete patch 
> to get dropped. Also CC subsystem maintainers on their parts. And please send 
> the patches as replies to the first one as it cleans up readability of lkml a 
> lot :)

Oops, Just read this warning after sending the (big) patch. Sorry It's my first
patch :). I'll split it and do as written. Thanks alot :).

> > I think this will be better done in another patch to let every patch do one
> > single thing. right ?
> 
> Yes. But I would suggest starting with the kmalloc()->kzalloc() things. When 
> you do this conversions just remove the casts of the lines you're touching. 
> This will reduce the size of the complete thing avoiding two rather trivial 
> patches touching the same line twice.
> 
> Eike

OK. In progress

-- 
Ahmed S. Darwish
http://darwish-07.blogspot.com

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05 10:18     ` Robert P. J. Day
@ 2007-01-05 10:39       ` Pekka Enberg
  2007-01-05 10:51       ` Alan
  2007-01-06  2:36       ` Ahmed S. Darwish
  2 siblings, 0 replies; 15+ messages in thread
From: Pekka Enberg @ 2007-01-05 10:39 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Ahmed S. Darwish, Rolf Eike Beer, linux-kernel

On 1/5/07, Robert P. J. Day <rpjday@mindspring.com> wrote:
> in this case, as mr. beer suggests, you should also check if this
> represents a kmalloc->kzalloc cleanup (there's lots of those), and
> also see if you can replace one of these:
>
>   sizeof(struct blah)
>
> with one of these:
>
>   sizeof(*blahptr)
>
> according to the CodingStyle guide.

Unfortunately, not all maintainers like sizeof() changes, so you're
better off leaving them as-is.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05 10:51       ` Alan
@ 2007-01-05 10:41         ` Robert P. J. Day
  2007-01-05 11:03         ` Ahmed S. Darwish
  1 sibling, 0 replies; 15+ messages in thread
From: Robert P. J. Day @ 2007-01-05 10:41 UTC (permalink / raw)
  To: Alan; +Cc: Ahmed S. Darwish, Rolf Eike Beer, linux-kernel

On Fri, 5 Jan 2007, Alan wrote:

> > represents a kmalloc->kzalloc cleanup (there's lots of those), and
> > also see if you can replace one of these:
> >
> >   sizeof(struct blah)
> >
> > with one of these:
> >
> >   sizeof(*blahptr)
>
> Patches that do this will get rejected by the tty maintainer in favour of
> the clarity of the sizeof(struct xyz) format 8)

ok, i was just going by the recommendations of the CodingStyle guide.

rday

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05 10:18     ` Robert P. J. Day
  2007-01-05 10:39       ` Pekka Enberg
@ 2007-01-05 10:51       ` Alan
  2007-01-05 10:41         ` Robert P. J. Day
  2007-01-05 11:03         ` Ahmed S. Darwish
  2007-01-06  2:36       ` Ahmed S. Darwish
  2 siblings, 2 replies; 15+ messages in thread
From: Alan @ 2007-01-05 10:51 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: Ahmed S. Darwish, Rolf Eike Beer, linux-kernel

> represents a kmalloc->kzalloc cleanup (there's lots of those), and
> also see if you can replace one of these:
> 
>   sizeof(struct blah)
> 
> with one of these:
> 
>   sizeof(*blahptr)

Patches that do this will get rejected by the tty maintainer in favour of
the clarity of the sizeof(struct xyz) format 8)

Ahmed - if you can send me a patch for the tty_io/tty_ioctl code which
switches to kzalloc where it makes sense and removes un-needed casts I'll
review it and push the bits that look sane upstream. 

Alan

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05 10:51       ` Alan
  2007-01-05 10:41         ` Robert P. J. Day
@ 2007-01-05 11:03         ` Ahmed S. Darwish
  1 sibling, 0 replies; 15+ messages in thread
From: Ahmed S. Darwish @ 2007-01-05 11:03 UTC (permalink / raw)
  To: Alan; +Cc: linux-kernel

On Fri, Jan 05, 2007 at 10:51:13AM +0000, Alan wrote:

> Ahmed - if you can send me a patch for the tty_io/tty_ioctl code which
> switches to kzalloc where it makes sense and removes un-needed casts I'll
> review it and push the bits that look sane upstream. 
> 
> Alan

OK I'll try this now.
Are you Mr. Alan Cox. ?. Sorry, "Alan" alone is ambiguous.

-- 
Ahmed S. Darwish
http://darwish-07.blogspot.com

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05 10:32       ` Ahmed S. Darwish
@ 2007-01-05 11:54         ` Rolf Eike Beer
  0 siblings, 0 replies; 15+ messages in thread
From: Rolf Eike Beer @ 2007-01-05 11:54 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ahmed S. Darwish

[-- Attachment #1: Type: text/plain, Size: 1083 bytes --]

Am Freitag, 5. Januar 2007 11:32 schrieb Ahmed S. Darwish:
> On Fri, Jan 05, 2007 at 11:26:07AM +0100, Rolf Eike Beer wrote:
> > One big patch for the whole kernel will not work anyway. You have to
> > split it up to allow subsystems to integrate them in their own trees.
> > With one big patch you would get collisions all over the tree causing the
> > complete patch to get dropped. Also CC subsystem maintainers on their
> > parts. And please send the patches as replies to the first one as it
> > cleans up readability of lkml a lot :)
>
> Oops, Just read this warning after sending the (big) patch. Sorry It's my
> first patch :). I'll split it and do as written. Thanks alot :).

That wasn't meant for resending. If you resend the whole series it's good to 
start a new thread. But if you have several related patches (usually this 
[PATCH N/xx] thing) it helps if you either send a 0/xx first describing the 
whole series or at least sending everything as reply to 1/xx. This way the 
mail program will help everybody by keeping this things together.

Eike

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-05 10:18     ` Robert P. J. Day
  2007-01-05 10:39       ` Pekka Enberg
  2007-01-05 10:51       ` Alan
@ 2007-01-06  2:36       ` Ahmed S. Darwish
  2007-01-06  7:35         ` Robert P. J. Day
  2 siblings, 1 reply; 15+ messages in thread
From: Ahmed S. Darwish @ 2007-01-06  2:36 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: linux-kernel

> On Fri, Jan 05, 2007 at 09:10:01AM +0100, rday wrote:
> > Ahmed S. Darwish wrote:
> > Remove unnecessary kmalloc casts in drivers/char/tty_io.c
> > Signed-off-by: Ahmed Darwish <darwish.07@gmail.com>
>
> rday
> 
> p.s.  just FYI, i have a patch that does most of this, but i was going
> to hold off submitting it until 2.6.20 had arrived.  but if you want
> to take a shot at it, it's all yours.

OK, then I should stop sending new patches related to that matter to avoid
patch conflicts. right ?

-- 
Ahmed S. Darwish
http://darwish-07.blogspot.com

^ permalink raw reply	[flat|nested] 15+ messages in thread

* Re: [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts
  2007-01-06  2:36       ` Ahmed S. Darwish
@ 2007-01-06  7:35         ` Robert P. J. Day
  0 siblings, 0 replies; 15+ messages in thread
From: Robert P. J. Day @ 2007-01-06  7:35 UTC (permalink / raw)
  To: Ahmed S. Darwish; +Cc: linux-kernel

On Sat, 6 Jan 2007, Ahmed S. Darwish wrote:

> > On Fri, Jan 05, 2007 at 09:10:01AM +0100, rday wrote:
> > > Ahmed S. Darwish wrote:
> > > Remove unnecessary kmalloc casts in drivers/char/tty_io.c
> > > Signed-off-by: Ahmed Darwish <darwish.07@gmail.com>
> >
> > rday
> >
> > p.s.  just FYI, i have a patch that does most of this, but i was going
> > to hold off submitting it until 2.6.20 had arrived.  but if you want
> > to take a shot at it, it's all yours.
>
> OK, then I should stop sending new patches related to that matter to
> avoid patch conflicts. right ?

no, no, go ahead.  i have enough to do to keep me busy.

rday

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2007-01-06  7:41 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-05  6:36 [PATCH 2.6.20-rc3] TTY_IO: Remove unnecessary kmalloc casts Ahmed S. Darwish
2007-01-05  6:56 ` Robert P. J. Day
2007-01-05  7:14   ` Ahmed S. Darwish
2007-01-05  8:10 ` Rolf Eike Beer
2007-01-05 10:06   ` Ahmed S. Darwish
2007-01-05 10:18     ` Robert P. J. Day
2007-01-05 10:39       ` Pekka Enberg
2007-01-05 10:51       ` Alan
2007-01-05 10:41         ` Robert P. J. Day
2007-01-05 11:03         ` Ahmed S. Darwish
2007-01-06  2:36       ` Ahmed S. Darwish
2007-01-06  7:35         ` Robert P. J. Day
2007-01-05 10:26     ` Rolf Eike Beer
2007-01-05 10:32       ` Ahmed S. Darwish
2007-01-05 11:54         ` Rolf Eike Beer

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).