All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fixes a small error in Documentation/HOWTO
@ 2011-04-02 20:03 Someone Something
  2011-04-02 23:48 ` Someone Something
  2011-04-03  4:52 ` Harry Wei
  0 siblings, 2 replies; 10+ messages in thread
From: Someone Something @ 2011-04-02 20:03 UTC (permalink / raw)
  To: rdunlap, linux-kernel

Description: This patch fixes a small error in Documentation/HOWTO
which gives a really old link for LXR.

This will be my first patch, so, any feedback is very welcome The
Patch follows this line. I'm not sure if I'm supposed to include the
HOWTO.orig stuff.


--- linux-2.6.38.2/Documentation/HOWTO.orig     2011-04-02
15:55:03.000000000 -0400
+++ linux-2.6.38.2/Documentation/HOWTO  2011-04-02 15:56:25.000000000 -0400
@@ -209,8 +209,7 @@ tools.  One such tool that is particular
 Cross-Reference project, which is able to present source code in a
 self-referential, indexed webpage format. An excellent up-to-date
 repository of the kernel code may be found at:
-       http://users.sosdg.org/~qiyong/lxr/
-
+       http://lxr.linux.no/linux+v2.6.38/Documentation/

 The development process
 -----------------------

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

* [PATCH] Fixes a small error in Documentation/HOWTO
  2011-04-02 20:03 [PATCH] Fixes a small error in Documentation/HOWTO Someone Something
@ 2011-04-02 23:48 ` Someone Something
  2011-04-03  4:52 ` Harry Wei
  1 sibling, 0 replies; 10+ messages in thread
From: Someone Something @ 2011-04-02 23:48 UTC (permalink / raw)
  To: linux-kernel

(I'm think I might be sending this for the second time, if you can see
this, can you reply to it?)

Description: This patch fixes a small error in Documentation/HOWTO
which gives a really old link for LXR.

This will be my first patch, so, any feedback is very welcome The
Patch follows this line. I'm not sure if I'm supposed to include the
HOWTO.orig stuff.


--- linux-2.6.38.2/Documentation/HOWTO.orig     2011-04-02
15:55:03.000000000 -0400
+++ linux-2.6.38.2/Documentation/HOWTO  2011-04-02 15:56:25.000000000 -0400
@@ -209,8 +209,7 @@ tools.  One such tool that is particular
 Cross-Reference project, which is able to present source code in a
 self-referential, indexed webpage format. An excellent up-to-date
 repository of the kernel code may be found at:
-       http://users.sosdg.org/~qiyong/lxr/
-
+       http://lxr.linux.no/linux+v2.6.38/Documentation/

 The development process
 -----------------------

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

* Re: [PATCH] Fixes a small error in Documentation/HOWTO
  2011-04-02 20:03 [PATCH] Fixes a small error in Documentation/HOWTO Someone Something
  2011-04-02 23:48 ` Someone Something
@ 2011-04-03  4:52 ` Harry Wei
  2011-04-03  6:32   ` Xiaochen Wang
  2011-04-04  1:46   ` Li Zefan
  1 sibling, 2 replies; 10+ messages in thread
From: Harry Wei @ 2011-04-03  4:52 UTC (permalink / raw)
  To: Someone Something; +Cc: greg, linux-kernel, rdunlap, joe, akpm, linux-doc

On Sat, Apr 02, 2011 at 03:03:43PM -0500, Someone Something wrote:
> Description: This patch fixes a small error in Documentation/HOWTO
> which gives a really old link for LXR.
> 
> This will be my first patch, so, any feedback is very welcome The
> Patch follows this line. I'm not sure if I'm supposed to include the
> HOWTO.orig stuff.
> 
> 
> --- linux-2.6.38.2/Documentation/HOWTO.orig     2011-04-02
> 15:55:03.000000000 -0400
> +++ linux-2.6.38.2/Documentation/HOWTO  2011-04-02 15:56:25.000000000 -0400
> @@ -209,8 +209,7 @@ tools.  One such tool that is particular
>  Cross-Reference project, which is able to present source code in a
>  self-referential, indexed webpage format. An excellent up-to-date
>  repository of the kernel code may be found at:
> -       http://users.sosdg.org/~qiyong/lxr/
> -
> +       http://lxr.linux.no/linux+v2.6.38/Documentation/
>
Your updated link for HOWTO is just for linux-2.6.38. This link
should be up-to-date kernel code. So i have corrected your
patch like following.

Thanks.
Best Regards.
Harry Wei.

Signed-off-by: Someone Something <fordhaivat@gmail.com>
Signed-off-by: Harry Wei <harryxiyou@gmail.com>
---
 Documentation/HOWTO |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Documentation/HOWTO b/Documentation/HOWTO
index 365bda9..81bc1a9 100644
--- a/Documentation/HOWTO
+++ b/Documentation/HOWTO
@@ -209,7 +209,7 @@ tools.  One such tool that is particularly recommended is the Linux
 Cross-Reference project, which is able to present source code in a
 self-referential, indexed webpage format. An excellent up-to-date
 repository of the kernel code may be found at:
-	http://users.sosdg.org/~qiyong/lxr/
+	http://lxr.linux.no/+trees
 
 
 The development process
-- 
1.7.0.4


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

* Re: [PATCH] Fixes a small error in Documentation/HOWTO
  2011-04-03  4:52 ` Harry Wei
@ 2011-04-03  6:32   ` Xiaochen Wang
  2011-04-04  1:46   ` Li Zefan
  1 sibling, 0 replies; 10+ messages in thread
From: Xiaochen Wang @ 2011-04-03  6:32 UTC (permalink / raw)
  To: Someone Something, greg, linux-kernel, rdunlap, joe, akpm, linux-doc
  Cc: Harry Wei

On Sun, Apr 3, 2011 at 12:52 PM, Harry Wei <jiaweiwei.xiyou@gmail.com> wrote:
> Signed-off-by: Someone Something <fordhaivat@gmail.com>
You should use your real name ( no pseudonyms or anonymous contributions).

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

* Re: [PATCH] Fixes a small error in Documentation/HOWTO
  2011-04-03  4:52 ` Harry Wei
  2011-04-03  6:32   ` Xiaochen Wang
@ 2011-04-04  1:46   ` Li Zefan
  2011-04-04 18:18     ` Randy Dunlap
  1 sibling, 1 reply; 10+ messages in thread
From: Li Zefan @ 2011-04-04  1:46 UTC (permalink / raw)
  To: Someone Something, greg, linux-kernel, rdunlap, joe, akpm, linux-doc

> Your updated link for HOWTO is just for linux-2.6.38. This link
> should be up-to-date kernel code. So i have corrected your
> patch like following.
> 
> Thanks.
> Best Regards.
> Harry Wei.
> 
> Signed-off-by: Someone Something <fordhaivat@gmail.com>
> Signed-off-by: Harry Wei <harryxiyou@gmail.com>

Did he sign the patch? If not, you can't do this, and Instead you
must ask him for his SOB.

And I'll appreciate if you add:

	From: Someone ...

because your change is not significant enough to make you the author
of the patch.

> ---
>  Documentation/HOWTO |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/Documentation/HOWTO b/Documentation/HOWTO
> index 365bda9..81bc1a9 100644
> --- a/Documentation/HOWTO
> +++ b/Documentation/HOWTO
> @@ -209,7 +209,7 @@ tools.  One such tool that is particularly recommended is the Linux
>  Cross-Reference project, which is able to present source code in a
>  self-referential, indexed webpage format. An excellent up-to-date
>  repository of the kernel code may be found at:
> -	http://users.sosdg.org/~qiyong/lxr/
> +	http://lxr.linux.no/+trees
>  
>  
>  The development process

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

* Re: [PATCH] Fixes a small error in Documentation/HOWTO
  2011-04-04  1:46   ` Li Zefan
@ 2011-04-04 18:18     ` Randy Dunlap
       [not found]       ` <BANLkTinSC1UTEQxS0iCKu4tMX-9CUY3rJg@mail.gmail.com>
  0 siblings, 1 reply; 10+ messages in thread
From: Randy Dunlap @ 2011-04-04 18:18 UTC (permalink / raw)
  To: Li Zefan; +Cc: Someone Something, greg, linux-kernel, joe, akpm, linux-doc

On Mon, 04 Apr 2011 09:46:52 +0800 Li Zefan wrote:

> > Your updated link for HOWTO is just for linux-2.6.38. This link
> > should be up-to-date kernel code. So i have corrected your
> > patch like following.
> > 
> > Thanks.
> > Best Regards.
> > Harry Wei.
> > 
> > Signed-off-by: Someone Something <fordhaivat@gmail.com>
> > Signed-off-by: Harry Wei <harryxiyou@gmail.com>
> 
> Did he sign the patch? If not, you can't do this, and Instead you
> must ask him for his SOB.
> 
> And I'll appreciate if you add:
> 
> 	From: Someone ...
> 
> because your change is not significant enough to make you the author
> of the patch.

Regardless of that latter part, we cannot merge the patch from SS,
like Xiaochen Wang said, since the name is false.


> > ---
> >  Documentation/HOWTO |    2 +-
> >  1 files changed, 1 insertions(+), 1 deletions(-)
> > 
> > diff --git a/Documentation/HOWTO b/Documentation/HOWTO
> > index 365bda9..81bc1a9 100644
> > --- a/Documentation/HOWTO
> > +++ b/Documentation/HOWTO
> > @@ -209,7 +209,7 @@ tools.  One such tool that is particularly recommended is the Linux
> >  Cross-Reference project, which is able to present source code in a
> >  self-referential, indexed webpage format. An excellent up-to-date
> >  repository of the kernel code may be found at:
> > -	http://users.sosdg.org/~qiyong/lxr/
> > +	http://lxr.linux.no/+trees
> >  
> >  
> >  The development process


---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

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

* Re: [PATCH] Fixes a small error in Documentation/HOWTO
       [not found]       ` <BANLkTinSC1UTEQxS0iCKu4tMX-9CUY3rJg@mail.gmail.com>
@ 2011-04-05  2:07         ` Harry Wei
  2011-05-05 22:07           ` Randy Dunlap
  0 siblings, 1 reply; 10+ messages in thread
From: Harry Wei @ 2011-04-05  2:07 UTC (permalink / raw)
  To: rdunlap; +Cc: linux-kernel, greg, akpm

On Tue, Apr 05, 2011 at 09:59:55AM +0800, harryxiyou wrote:
> On Tue, Apr 5, 2011 at 2:18 AM, Randy Dunlap <rdunlap@xenotime.net> wrote:
> 
> > On Mon, 04 Apr 2011 09:46:52 +0800 Li Zefan wrote:
> >
> > > > Your updated link for HOWTO is just for linux-2.6.38. This link
> > > > should be up-to-date kernel code. So i have corrected your
> > > > patch like following.
> > > >
> > > > Thanks.
> > > > Best Regards.
> > > > Harry Wei.
> > > >
> > > > Signed-off-by: Someone Something <fordhaivat@gmail.com>
> > > > Signed-off-by: Harry Wei <harryxiyou@gmail.com>
> > >
> > > Did he sign the patch? If not, you can't do this, and Instead you
> > > must ask him for his SOB.
> > >
> > > And I'll appreciate if you add:
> > >
> > >       From: Someone ...
> > >
> > > because your change is not significant enough to make you the author
> > > of the patch.
> >
> > Regardless of that latter part, we cannot merge the patch from SS,
> > like Xiaochen Wang said, since the name is false.
Hi Randy,
    I have corrected this patch like following. This may be well 
for us.

Thanks.
BR.
Harry Wei.

From: Someone Something <fordhaivat@gmail.com>
Signed-off-by: Harry Wei <harryxiyou@gmail.com>
---
 Documentation/HOWTO |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Documentation/HOWTO b/Documentation/HOWTO
index 365bda9..81bc1a9 100644
--- a/Documentation/HOWTO
+++ b/Documentation/HOWTO
@@ -209,7 +209,7 @@ tools.  One such tool that is particularly recommended is the Linux
 Cross-Reference project, which is able to present source code in a
 self-referential, indexed webpage format. An excellent up-to-date
 repository of the kernel code may be found at:
-	http://users.sosdg.org/~qiyong/lxr/
+	http://lxr.linux.no/+trees
 
 
 The development process
-- 
1.7.0.4


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

* Re: [PATCH] Fixes a small error in Documentation/HOWTO
  2011-04-05  2:07         ` Harry Wei
@ 2011-05-05 22:07           ` Randy Dunlap
  2011-05-05 23:55             ` Harry Wei
  0 siblings, 1 reply; 10+ messages in thread
From: Randy Dunlap @ 2011-05-05 22:07 UTC (permalink / raw)
  To: Harry Wei; +Cc: linux-kernel, greg, akpm

On Tue, 5 Apr 2011 10:07:20 +0800 Harry Wei wrote:

> On Tue, Apr 05, 2011 at 09:59:55AM +0800, harryxiyou wrote:
> > On Tue, Apr 5, 2011 at 2:18 AM, Randy Dunlap <rdunlap@xenotime.net> wrote:
> > 
> > > On Mon, 04 Apr 2011 09:46:52 +0800 Li Zefan wrote:
> > >
> > > > > Your updated link for HOWTO is just for linux-2.6.38. This link
> > > > > should be up-to-date kernel code. So i have corrected your
> > > > > patch like following.
> > > > >
> > > > > Thanks.
> > > > > Best Regards.
> > > > > Harry Wei.
> > > > >
> > > > > Signed-off-by: Someone Something <fordhaivat@gmail.com>
> > > > > Signed-off-by: Harry Wei <harryxiyou@gmail.com>
> > > >
> > > > Did he sign the patch? If not, you can't do this, and Instead you
> > > > must ask him for his SOB.
> > > >
> > > > And I'll appreciate if you add:
> > > >
> > > >       From: Someone ...
> > > >
> > > > because your change is not significant enough to make you the author
> > > > of the patch.
> > >
> > > Regardless of that latter part, we cannot merge the patch from SS,
> > > like Xiaochen Wang said, since the name is false.
> Hi Randy,
>     I have corrected this patch like following. This may be well 
> for us.
> 
> Thanks.
> BR.
> Harry Wei.
> 
> From: Someone Something <fordhaivat@gmail.com>


Linus tells me that we don't want fake names or email addresses in
the development tree, so this won't do.

Harry, can you just send me a patch from you, with your Signed-off-by:
so that I can apply it, please?


> Signed-off-by: Harry Wei <harryxiyou@gmail.com>
> ---
>  Documentation/HOWTO |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/Documentation/HOWTO b/Documentation/HOWTO
> index 365bda9..81bc1a9 100644
> --- a/Documentation/HOWTO
> +++ b/Documentation/HOWTO
> @@ -209,7 +209,7 @@ tools.  One such tool that is particularly recommended is the Linux
>  Cross-Reference project, which is able to present source code in a
>  self-referential, indexed webpage format. An excellent up-to-date
>  repository of the kernel code may be found at:
> -	http://users.sosdg.org/~qiyong/lxr/
> +	http://lxr.linux.no/+trees
>  
>  
>  The development process
> -- 


---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

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

* Re: [PATCH] Fixes a small error in Documentation/HOWTO
  2011-05-05 22:07           ` Randy Dunlap
@ 2011-05-05 23:55             ` Harry Wei
  2011-05-06 21:43               ` Randy Dunlap
  0 siblings, 1 reply; 10+ messages in thread
From: Harry Wei @ 2011-05-05 23:55 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-kernel, greg, akpm

On Thu, May 05, 2011 at 03:07:19PM -0700, Randy Dunlap wrote:
> 
> Linus tells me that we don't want fake names or email addresses in
> the development tree, so this won't do.
> 
> Harry, can you just send me a patch from you, with your Signed-off-by:
> so that I can apply it, please?
Hi Randy,
	My pleasure, the patch is below. If you have any other questions,
please let me know.

Thanks.
Harry Wei.

Signed-off-by: Harry Wei <harryxiyou@gmail.com>
---
 Documentation/HOWTO |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Documentation/HOWTO b/Documentation/HOWTO
index 365bda9..81bc1a9 100644
--- a/Documentation/HOWTO
+++ b/Documentation/HOWTO
@@ -209,7 +209,7 @@ tools.  One such tool that is particularly recommended is the Linux
 Cross-Reference project, which is able to present source code in a
 self-referential, indexed webpage format. An excellent up-to-date
 repository of the kernel code may be found at:
-	http://users.sosdg.org/~qiyong/lxr/
+	http://lxr.linux.no/+trees
 
 
 The development process
-- 
1.7.0.4


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

* Re: [PATCH] Fixes a small error in Documentation/HOWTO
  2011-05-05 23:55             ` Harry Wei
@ 2011-05-06 21:43               ` Randy Dunlap
  0 siblings, 0 replies; 10+ messages in thread
From: Randy Dunlap @ 2011-05-06 21:43 UTC (permalink / raw)
  To: Harry Wei; +Cc: linux-kernel, greg, akpm

On Fri, 6 May 2011 07:55:51 +0800 Harry Wei wrote:

> On Thu, May 05, 2011 at 03:07:19PM -0700, Randy Dunlap wrote:
> > 
> > Linus tells me that we don't want fake names or email addresses in
> > the development tree, so this won't do.
> > 
> > Harry, can you just send me a patch from you, with your Signed-off-by:
> > so that I can apply it, please?
> Hi Randy,
> 	My pleasure, the patch is below. If you have any other questions,
> please let me know.


Applied..  thanks, Harry.

> Thanks.
> Harry Wei.
> 
> Signed-off-by: Harry Wei <harryxiyou@gmail.com>
> ---
>  Documentation/HOWTO |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/Documentation/HOWTO b/Documentation/HOWTO
> index 365bda9..81bc1a9 100644
> --- a/Documentation/HOWTO
> +++ b/Documentation/HOWTO
> @@ -209,7 +209,7 @@ tools.  One such tool that is particularly recommended is the Linux
>  Cross-Reference project, which is able to present source code in a
>  self-referential, indexed webpage format. An excellent up-to-date
>  repository of the kernel code may be found at:
> -	http://users.sosdg.org/~qiyong/lxr/
> +	http://lxr.linux.no/+trees
>  
>  
>  The development process
> -- 
> 1.7.0.4
> 


---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

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

end of thread, other threads:[~2011-05-06 21:43 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-02 20:03 [PATCH] Fixes a small error in Documentation/HOWTO Someone Something
2011-04-02 23:48 ` Someone Something
2011-04-03  4:52 ` Harry Wei
2011-04-03  6:32   ` Xiaochen Wang
2011-04-04  1:46   ` Li Zefan
2011-04-04 18:18     ` Randy Dunlap
     [not found]       ` <BANLkTinSC1UTEQxS0iCKu4tMX-9CUY3rJg@mail.gmail.com>
2011-04-05  2:07         ` Harry Wei
2011-05-05 22:07           ` Randy Dunlap
2011-05-05 23:55             ` Harry Wei
2011-05-06 21:43               ` Randy Dunlap

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.