* [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in
@ 2007-05-29 21:11 Aaron Cripps
2007-05-29 21:37 ` [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups Jaco Kroon
` (7 more replies)
0 siblings, 8 replies; 9+ messages in thread
From: Aaron Cripps @ 2007-05-29 21:11 UTC (permalink / raw)
To: kernel-janitors
[-- Attachment #1: Type: text/plain, Size: 1 bytes --]
[-- Attachment #2: actisys-sir_ArraySize.patch --]
[-- Type: text/plain, Size: 3504 bytes --]
removed the MAX_SPEEDS macro in favor of the more generic ARRAY_SIZE macro
defined in kernel.h
Also cleaned up trailing whitespaces.
Compile tested, no issues found at compile time.
Signed-off-by: Aaron Cripps <cripps@cs.mun.ca>
diff -Nuar linux-2.6/drivers/net/irda/actisys-sir.c linux-2.6-patched/drivers/net/irda/actisys-sir.c
--- linux-2.6/drivers/net/irda/actisys-sir.c 2007-05-22 20:31:01.000000000 -0230
+++ linux-2.6-patched/drivers/net/irda/actisys-sir.c 2007-05-25 22:51:22.000000000 -0230
@@ -1,8 +1,8 @@
/*********************************************************************
- *
+ *
* Filename: actisys.c
* Version: 1.1
- * Description: Implementation for the ACTiSYS IR-220L and IR-220L+
+ * Description: Implementation for the ACTiSYS IR-220L and IR-220L+
* dongles
* Status: Beta.
* Authors: Dag Brattli <dagb@cs.uit.no> (initially)
@@ -11,20 +11,20 @@
* Created at: Wed Oct 21 20:02:35 1998
* Modified at: Sun Oct 27 22:02:13 2002
* Modified by: Martin Diehl <mad@mdiehl.de>
- *
+ *
* Copyright (c) 1998-1999 Dag Brattli, All Rights Reserved.
* Copyright (c) 1999 Jean Tourrilhes
* Copyright (c) 2002 Martin Diehl
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
- *
+ *
* Neither Dag Brattli nor University of Troms������ admit liability nor
- * provide warranty for any of this software. This material is
+ * provide warranty for any of this software. This material is
* provided "AS-IS" and at no charge.
- *
+ *
********************************************************************/
/*
@@ -48,7 +48,7 @@
#include "sir-dev.h"
-/*
+/*
* Define the timing of the pulses we send to the dongle (to reset it, and
* to toggle speeds). Basically, the limit here is the propagation speed of
* the signals through the serial port, the dongle being much faster. Any
@@ -67,8 +67,6 @@
/* Note : the 220L doesn't support 38400, but we will fix that below */
static unsigned baud_rates[] = { 9600, 19200, 57600, 115200, 38400 };
-#define MAX_SPEEDS (sizeof(baud_rates)/sizeof(baud_rates[0]))
-
static struct dongle_driver act220l = {
.owner = THIS_MODULE,
.driver_name = "Actisys ACT-220L",
@@ -166,17 +164,17 @@
int i = 0;
IRDA_DEBUG(4, "%s(), speed=%d (was %d)\n", __FUNCTION__,
- speed, dev->speed);
+ speed, dev->speed);
/* dongle was already resetted from irda_request state machine,
* we are in known state (dongle default)
*/
- /*
+ /*
* Now, we can set the speed requested. Send RTS pulses until we
- * reach the target speed
+ * reach the target speed
*/
- for (i = 0; i < MAX_SPEEDS; i++) {
+ for (i = 0; i < ARRAY_SIZE(baud_rates); i++) {
if (speed == baud_rates[i]) {
dev->speed = speed;
break;
@@ -191,7 +189,7 @@
}
/* Check if life is sweet... */
- if (i >= MAX_SPEEDS) {
+ if (i >= ARRAY_SIZE(baud_rates)) {
actisys_reset(dev);
ret = -EINVAL; /* This should not happen */
}
[-- Attachment #3: Type: text/plain, Size: 187 bytes --]
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups
2007-05-29 21:11 [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
@ 2007-05-29 21:37 ` Jaco Kroon
2007-05-29 21:51 ` Aaron Cripps
` (6 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Jaco Kroon @ 2007-05-29 21:37 UTC (permalink / raw)
To: kernel-janitors
This patch includes a bunch of white-space changes. I recommend passing
-B to the diff command.
Jaco
Aaron Cripps wrote:
>
>
> ------------------------------------------------------------------------
>
> removed the MAX_SPEEDS macro in favor of the more generic ARRAY_SIZE macro
> defined in kernel.h
> Also cleaned up trailing whitespaces.
> Compile tested, no issues found at compile time.
>
> Signed-off-by: Aaron Cripps <cripps@cs.mun.ca>
>
>
> diff -Nuar linux-2.6/drivers/net/irda/actisys-sir.c linux-2.6-patched/drivers/net/irda/actisys-sir.c
> --- linux-2.6/drivers/net/irda/actisys-sir.c 2007-05-22 20:31:01.000000000 -0230
> +++ linux-2.6-patched/drivers/net/irda/actisys-sir.c 2007-05-25 22:51:22.000000000 -0230
> @@ -1,8 +1,8 @@
> /*********************************************************************
> - *
> + *
> * Filename: actisys.c
> * Version: 1.1
> - * Description: Implementation for the ACTiSYS IR-220L and IR-220L+
> + * Description: Implementation for the ACTiSYS IR-220L and IR-220L+
> * dongles
> * Status: Beta.
> * Authors: Dag Brattli <dagb@cs.uit.no> (initially)
> @@ -11,20 +11,20 @@
> * Created at: Wed Oct 21 20:02:35 1998
> * Modified at: Sun Oct 27 22:02:13 2002
> * Modified by: Martin Diehl <mad@mdiehl.de>
> - *
> + *
> * Copyright (c) 1998-1999 Dag Brattli, All Rights Reserved.
> * Copyright (c) 1999 Jean Tourrilhes
> * Copyright (c) 2002 Martin Diehl
> - *
> - * This program is free software; you can redistribute it and/or
> - * modify it under the terms of the GNU General Public License as
> - * published by the Free Software Foundation; either version 2 of
> + *
> + * This program is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU General Public License as
> + * published by the Free Software Foundation; either version 2 of
> * the License, or (at your option) any later version.
> - *
> + *
> * Neither Dag Brattli nor University of Tromsø admit liability nor
> - * provide warranty for any of this software. This material is
> + * provide warranty for any of this software. This material is
> * provided "AS-IS" and at no charge.
> - *
> + *
> ********************************************************************/
>
> /*
> @@ -48,7 +48,7 @@
>
> #include "sir-dev.h"
>
> -/*
> +/*
> * Define the timing of the pulses we send to the dongle (to reset it, and
> * to toggle speeds). Basically, the limit here is the propagation speed of
> * the signals through the serial port, the dongle being much faster. Any
> @@ -67,8 +67,6 @@
> /* Note : the 220L doesn't support 38400, but we will fix that below */
> static unsigned baud_rates[] = { 9600, 19200, 57600, 115200, 38400 };
>
> -#define MAX_SPEEDS (sizeof(baud_rates)/sizeof(baud_rates[0]))
> -
> static struct dongle_driver act220l = {
> .owner = THIS_MODULE,
> .driver_name = "Actisys ACT-220L",
> @@ -166,17 +164,17 @@
> int i = 0;
>
> IRDA_DEBUG(4, "%s(), speed=%d (was %d)\n", __FUNCTION__,
> - speed, dev->speed);
> + speed, dev->speed);
>
> /* dongle was already resetted from irda_request state machine,
> * we are in known state (dongle default)
> */
>
> - /*
> + /*
> * Now, we can set the speed requested. Send RTS pulses until we
> - * reach the target speed
> + * reach the target speed
> */
> - for (i = 0; i < MAX_SPEEDS; i++) {
> + for (i = 0; i < ARRAY_SIZE(baud_rates); i++) {
> if (speed = baud_rates[i]) {
> dev->speed = speed;
> break;
> @@ -191,7 +189,7 @@
> }
>
> /* Check if life is sweet... */
> - if (i >= MAX_SPEEDS) {
> + if (i >= ARRAY_SIZE(baud_rates)) {
> actisys_reset(dev);
> ret = -EINVAL; /* This should not happen */
> }
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Kernel-janitors mailing list
> Kernel-janitors@lists.linux-foundation.org
> https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups
2007-05-29 21:11 [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
2007-05-29 21:37 ` [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups Jaco Kroon
@ 2007-05-29 21:51 ` Aaron Cripps
2007-05-29 22:17 ` Jaco Kroon
` (5 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Aaron Cripps @ 2007-05-29 21:51 UTC (permalink / raw)
To: kernel-janitors
Jaco Kroon wrote:
> This patch includes a bunch of white-space changes. I recommend
> passing -B to the diff command.
>
> Jaco
Actually, I did that on purpose, as is mentioned in the Patch. The
whitespace changes are "harmless" and
make for "better formatted" code. (okay, so the formatting is the same,
but at least the code after the whitespace
changes is somewhat uniform).
-acripps
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups
2007-05-29 21:11 [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
2007-05-29 21:37 ` [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups Jaco Kroon
2007-05-29 21:51 ` Aaron Cripps
@ 2007-05-29 22:17 ` Jaco Kroon
2007-05-29 23:12 ` Randy Dunlap
` (4 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Jaco Kroon @ 2007-05-29 22:17 UTC (permalink / raw)
To: kernel-janitors
Aaron Cripps wrote:
> Jaco Kroon wrote:
>> This patch includes a bunch of white-space changes. I recommend
>> passing -B to the diff command.
>>
>> Jaco
> Actually, I did that on purpose, as is mentioned in the Patch. The
> whitespace changes are "harmless" and
> make for "better formatted" code. (okay, so the formatting is the same,
> but at least the code after the whitespace
> changes is somewhat uniform).
> -acripps
Perhaps, but then these are two different "changes" and should probably
be separate patches.
Jaco
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups
2007-05-29 21:11 [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
` (2 preceding siblings ...)
2007-05-29 22:17 ` Jaco Kroon
@ 2007-05-29 23:12 ` Randy Dunlap
2007-05-29 23:18 ` Jaco Kroon
` (3 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Randy Dunlap @ 2007-05-29 23:12 UTC (permalink / raw)
To: kernel-janitors
On Wed, 30 May 2007 00:17:15 +0200 Jaco Kroon wrote:
> Aaron Cripps wrote:
> > Jaco Kroon wrote:
> >> This patch includes a bunch of white-space changes. I recommend
> >> passing -B to the diff command.
We really don't want to risk mis-applying a patch.
> >> Jaco
> > Actually, I did that on purpose, as is mentioned in the Patch. The
> > whitespace changes are "harmless" and
> > make for "better formatted" code. (okay, so the formatting is the same,
> > but at least the code after the whitespace
> > changes is somewhat uniform).
> > -acripps
>
> Perhaps, but then these are two different "changes" and should probably
> be separate patches.
Agreed.
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups
2007-05-29 21:11 [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
` (3 preceding siblings ...)
2007-05-29 23:12 ` Randy Dunlap
@ 2007-05-29 23:18 ` Jaco Kroon
2007-06-05 22:52 ` [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
` (2 subsequent siblings)
7 siblings, 0 replies; 9+ messages in thread
From: Jaco Kroon @ 2007-05-29 23:18 UTC (permalink / raw)
To: kernel-janitors
Randy Dunlap wrote:
> On Wed, 30 May 2007 00:17:15 +0200 Jaco Kroon wrote:
>
>> Aaron Cripps wrote:
>>> Jaco Kroon wrote:
>>>> This patch includes a bunch of white-space changes. I recommend
>>>> passing -B to the diff command.
>
> We really don't want to risk mis-applying a patch.
-B and -b does two different things. -B will simply ignore the diff
between two lines IFF the only changes is whitespace. In other words,
if the destination line is the same as the source except for whitespace
it'll pretend the destination is the same in terms of whitespace as well.
-b however is dangerous. It breaks things. Avoid.
Jaco
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 9+ messages in thread
* [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in
2007-05-29 21:11 [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
` (4 preceding siblings ...)
2007-05-29 23:18 ` Jaco Kroon
@ 2007-06-05 22:52 ` Aaron Cripps
2007-06-05 23:19 ` Aaron Cripps
2007-06-06 3:09 ` [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups Richard Knutsson
7 siblings, 0 replies; 9+ messages in thread
From: Aaron Cripps @ 2007-06-05 22:52 UTC (permalink / raw)
To: kernel-janitors
this is a simple patch to remove the MAX_SPEEDS macro in favor of the more
generic ARRAY_SIZE(arr) macro defined in kernel.h
Signed-off-by: Aaron Cripps <cripps@cs.mun.ca>
diff --git a/drivers/net/irda/actisys-sir.c b/drivers/net/irda/actisys-sir.c
index 9715ab5..44bf0c2 100644
--- a/drivers/net/irda/actisys-sir.c
+++ b/drivers/net/irda/actisys-sir.c
@@ -67,8 +67,6 @@ static int actisys_reset(struct sir_dev *);
/* Note : the 220L doesn't support 38400, but we will fix that below */
static unsigned baud_rates[] = { 9600, 19200, 57600, 115200, 38400 };
-#define MAX_SPEEDS (sizeof(baud_rates)/sizeof(baud_rates[0]))
-
static struct dongle_driver act220l = {
.owner = THIS_MODULE,
.driver_name = "Actisys ACT-220L",
@@ -176,7 +174,7 @@ static int actisys_change_speed(struct sir_dev *dev,
unsigned speed)
* Now, we can set the speed requested. Send RTS pulses until we
* reach the target speed
*/
- for (i = 0; i < MAX_SPEEDS; i++) {
+ for (i = 0; i < ARRAY_SIZE(baud_rates); i++) {
if (speed = baud_rates[i]) {
dev->speed = speed;
break;
@@ -191,7 +189,7 @@ static int actisys_change_speed(struct sir_dev *dev,
unsigned speed)
}
/* Check if life is sweet... */
- if (i >= MAX_SPEEDS) {
+ if (i >= ARRAY_SIZE(baud_rates)) {
actisys_reset(dev);
ret = -EINVAL; /* This should not happen */
}
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in
2007-05-29 21:11 [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
` (5 preceding siblings ...)
2007-06-05 22:52 ` [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
@ 2007-06-05 23:19 ` Aaron Cripps
2007-06-06 3:09 ` [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups Richard Knutsson
7 siblings, 0 replies; 9+ messages in thread
From: Aaron Cripps @ 2007-06-05 23:19 UTC (permalink / raw)
To: kernel-janitors
this is a simple patch to remove the MAX_SPEEDS macro in favor of the more
generic ARRAY_SIZE(arr) macro defined in kernel.h
RE: Forgot the #import <linux/kernel.h> statement. It's there now.
Signed-off-by: Aaron Cripps <cripps@cs.mun.ca>
diff --git a/drivers/net/irda/actisys-sir.c b/drivers/net/irda/actisys-sir.c
index 9715ab5..44bf0c2 100644
--- a/drivers/net/irda/actisys-sir.c
+++ b/drivers/net/irda/actisys-sir.c
@@ -43,7 +43,7 @@
#include <linux/module.h>
#include <linux/delay.h>
#include <linux/init.h>
-
+#include <linux/kernel.h>
#include <net/irda/irda.h>
#include "sir-dev.h"
@@ -67,8 +67,6 @@ static int actisys_reset(struct sir_dev *);
/* Note : the 220L doesn't support 38400, but we will fix that below */
static unsigned baud_rates[] = { 9600, 19200, 57600, 115200, 38400 };
-#define MAX_SPEEDS (sizeof(baud_rates)/sizeof(baud_rates[0]))
-
static struct dongle_driver act220l = {
.owner = THIS_MODULE,
.driver_name = "Actisys ACT-220L",
@@ -176,7 +174,7 @@ static int actisys_change_speed(struct sir_dev *dev,
unsigned speed)
* Now, we can set the speed requested. Send RTS pulses until we
* reach the target speed
*/
- for (i = 0; i < MAX_SPEEDS; i++) {
+ for (i = 0; i < ARRAY_SIZE(baud_rates); i++) {
if (speed = baud_rates[i]) {
dev->speed = speed;
break;
@@ -191,7 +189,7 @@ static int actisys_change_speed(struct sir_dev *dev,
unsigned speed)
}
/* Check if life is sweet... */
- if (i >= MAX_SPEEDS) {
+ if (i >= ARRAY_SIZE(baud_rates)) {
actisys_reset(dev);
ret = -EINVAL; /* This should not happen */
}
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups
2007-05-29 21:11 [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
` (6 preceding siblings ...)
2007-06-05 23:19 ` Aaron Cripps
@ 2007-06-06 3:09 ` Richard Knutsson
7 siblings, 0 replies; 9+ messages in thread
From: Richard Knutsson @ 2007-06-06 3:09 UTC (permalink / raw)
To: kernel-janitors
Aaron Cripps wrote:
> this is a simple patch to remove the MAX_SPEEDS macro in favor of the
> more
> generic ARRAY_SIZE(arr) macro defined in kernel.h
> RE: Forgot the #import <linux/kernel.h> statement. It's there now.
> Signed-off-by: Aaron Cripps <cripps@cs.mun.ca>
>
>
> diff --git a/drivers/net/irda/actisys-sir.c
> b/drivers/net/irda/actisys-sir.c
> index 9715ab5..44bf0c2 100644
> --- a/drivers/net/irda/actisys-sir.c
> +++ b/drivers/net/irda/actisys-sir.c
> @@ -43,7 +43,7 @@
> #include <linux/module.h>
> #include <linux/delay.h>
> #include <linux/init.h>
> -
> +#include <linux/kernel.h>
The patch is space-padded, please fix your client (or use ex the script
"sendpatchset") and send again. (The patch seemed correct otherwise)
> #include <net/irda/irda.h>
>
> #include "sir-dev.h"
> @@ -67,8 +67,6 @@ static int actisys_reset(struct sir_dev *);
> /* Note : the 220L doesn't support 38400, but we will fix that below */
> static unsigned baud_rates[] = { 9600, 19200, 57600, 115200, 38400 };
>
> -#define MAX_SPEEDS (sizeof(baud_rates)/sizeof(baud_rates[0]))
> -
Can anyone explain why the number of possible speeds are called
MAX_SPEEDS? Maybe it should have been NUM_MAX_SPEEDS...
Richard Knutsson
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2007-06-06 3:09 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-29 21:11 [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
2007-05-29 21:37 ` [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups Jaco Kroon
2007-05-29 21:51 ` Aaron Cripps
2007-05-29 22:17 ` Jaco Kroon
2007-05-29 23:12 ` Randy Dunlap
2007-05-29 23:18 ` Jaco Kroon
2007-06-05 22:52 ` [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups in Aaron Cripps
2007-06-05 23:19 ` Aaron Cripps
2007-06-06 3:09 ` [KJ] Re: [PATCH ARRAY_SIZE 1/4] kernel 2.6 size macro clean ups Richard Knutsson
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.