All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers/net/s2io.h - lvalue fix
@ 2005-08-29 22:24 Stephane Wirtel
  2005-08-29 22:43 ` Jesper Juhl
  0 siblings, 1 reply; 4+ messages in thread
From: Stephane Wirtel @ 2005-08-29 22:24 UTC (permalink / raw)
  To: linux-kernel

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

Hi all , 

Sorry if I don't send this patch to the maintainer of s2io, but I don't
know who is he.

This patch is based on Kernel 2.6.13 release from the Linus tree.

Is there a process to send patch to the mailing list ?

Best regards, 

Stephane

-- 
Stephane Wirtel <stephane.wirtel@belgacom.net>
                <stephane.wirtel@gmail.com>



[-- Attachment #2: patch_lvalue_s2io.diff --]
[-- Type: text/plain, Size: 310 bytes --]

diff --git a/drivers/net/s2io.h b/drivers/net/s2io.h
--- a/drivers/net/s2io.h
+++ b/drivers/net/s2io.h
@@ -762,8 +762,8 @@ static inline u64 readq(void __iomem *ad
 {
 	u64 ret = 0;
 	ret = readl(addr + 4);
-	(u64) ret <<= 32;
-	(u64) ret |= readl(addr);
+	ret <<= 32;
+	ret |= readl(addr);
 
 	return ret;
 }

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

* Re: [PATCH] drivers/net/s2io.h - lvalue fix
  2005-08-29 22:24 [PATCH] drivers/net/s2io.h - lvalue fix Stephane Wirtel
@ 2005-08-29 22:43 ` Jesper Juhl
  2005-08-29 23:07   ` Stephane Wirtel
  0 siblings, 1 reply; 4+ messages in thread
From: Jesper Juhl @ 2005-08-29 22:43 UTC (permalink / raw)
  To: Stephane Wirtel; +Cc: linux-kernel

On 8/30/05, Stephane Wirtel <stephane.wirtel@belgacom.net> wrote:
> Hi all ,
> 
> Sorry if I don't send this patch to the maintainer of s2io, but I don't
> know who is he.
> 
Hmm, neither do I. Looking in MAINTAINERS I don't see anybody, and
looking in the sources I find just a company name `Neterion'.
So, lacking an email address for a maintainer, sending your patch to
linux-kernel is the right thing to do (even if you had found a
maintainer, adding linux-kernel to Cc: would usually also be proper).
If you get no response at all from the list or maintainer, then Andrew
Morton is the head 2.6 maintainer.


> This patch is based on Kernel 2.6.13 release from the Linus tree.
> 
> Is there a process to send patch to the mailing list ?
> 

Check out 
   - Documentation/SubmittingPatches
   - http://www.zip.com.au/~akpm/linux/patches/stuff/tpp.txt
   - http://linux.yyz.us/patch-format.html
   - http://www.tux.org/lkml/#s1-10
   - http://www.tux.org/lkml/#s1-15


-- 
Jesper Juhl <jesper.juhl@gmail.com>
Don't top-post  http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please      http://www.expita.com/nomime.html

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

* Re: [PATCH] drivers/net/s2io.h - lvalue fix
  2005-08-29 22:43 ` Jesper Juhl
@ 2005-08-29 23:07   ` Stephane Wirtel
  2005-08-30  7:22     ` Alexey Dobriyan
  0 siblings, 1 reply; 4+ messages in thread
From: Stephane Wirtel @ 2005-08-29 23:07 UTC (permalink / raw)
  To: Jesper Juhl; +Cc: Stephane Wirtel, linux-kernel

Hi Jesper, 
> Hmm, neither do I. Looking in MAINTAINERS I don't see anybody, and
> looking in the sources I find just a company name `Neterion'.
> So, lacking an email address for a maintainer, sending your patch to
> linux-kernel is the right thing to do (even if you had found a
> maintainer, adding linux-kernel to Cc: would usually also be proper).
> If you get no response at all from the list or maintainer, then Andrew
> Morton is the head 2.6 maintainer.
Ok, thanks for your response.
> 
> 
> > This patch is based on Kernel 2.6.13 release from the Linus tree.
> > 
> > Is there a process to send patch to the mailing list ?
> > 
> 
> Check out 
>    - Documentation/SubmittingPatches
>    - http://www.zip.com.au/~akpm/linux/patches/stuff/tpp.txt
>    - http://linux.yyz.us/patch-format.html
>    - http://www.tux.org/lkml/#s1-10
>    - http://www.tux.org/lkml/#s1-15
Thanks

Best Regards, 

Stephane

-- 
Stephane Wirtel <stephane.wirtel@belgacom.net>
                <stephane.wirtel@gmail.com>



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

* Re: [PATCH] drivers/net/s2io.h - lvalue fix
  2005-08-29 23:07   ` Stephane Wirtel
@ 2005-08-30  7:22     ` Alexey Dobriyan
  0 siblings, 0 replies; 4+ messages in thread
From: Alexey Dobriyan @ 2005-08-30  7:22 UTC (permalink / raw)
  To: Stephane Wirtel; +Cc: Jesper Juhl, linux-kernel

On Tue, Aug 30, 2005 at 01:07:25AM +0200, Stephane Wirtel wrote:
> > Hmm, neither do I. Looking in MAINTAINERS I don't see anybody, and
> > looking in the sources I find just a company name `Neterion'.
> > So, lacking an email address for a maintainer, sending your patch to
> > linux-kernel is the right thing to do (even if you had found a
> > maintainer, adding linux-kernel to Cc: would usually also be proper).
> > If you get no response at all from the list or maintainer, then Andrew
> > Morton is the head 2.6 maintainer.
> Ok, thanks for your response.

s2io is a network driver, so Cc'ing netdev@ should be enough.


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

end of thread, other threads:[~2005-08-30  7:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-29 22:24 [PATCH] drivers/net/s2io.h - lvalue fix Stephane Wirtel
2005-08-29 22:43 ` Jesper Juhl
2005-08-29 23:07   ` Stephane Wirtel
2005-08-30  7:22     ` Alexey Dobriyan

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.