linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] vdso.7: repetition fix
@ 2014-02-01  2:50 David Prévot
       [not found] ` <1391223052-20777-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: David Prévot @ 2014-02-01  2:50 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, David Prévot

---
 man7/vdso.7 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/man7/vdso.7 b/man7/vdso.7
index 7251561..986cb2c 100644
--- a/man7/vdso.7
+++ b/man7/vdso.7
@@ -32,7 +32,7 @@ There are some system calls the kernel provides that
 user-space code ends up using frequently,
 to the point that such calls can dominate overall performance.
 This is due both to the frequency of the call as well as the
-context-switch overhead that results from
+context-switch overhead that results
 from exiting user space and entering the kernel.
 
 The rest of this documentation is geared toward the curious and/or
@@ -135,7 +135,7 @@ You will frequently find it under the architecture-specific directory:
     find arch/$ARCH/ -name '*vdso*.so*' -o -name '*gate*.so*'
 
 .SS vDSO names
-The name of vDSO shared object varies across architectures.
+The name of vDSO varies across architectures.
 It will often show up in things like glibc's
 .BR ldd (1)
 output.
-- 
1.9.rc1

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 2/2] getauxval.3: wfix
       [not found] ` <1391223052-20777-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
@ 2014-02-01  2:50   ` David Prévot
       [not found]     ` <1391223052-20777-2-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  2014-02-01  3:23   ` [PATCH 1/2] vdso.7: repetition fix Mike Frysinger
  2014-02-01  6:46   ` Michael Kerrisk (man-pages)
  2 siblings, 1 reply; 6+ messages in thread
From: David Prévot @ 2014-02-01  2:50 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, David Prévot

---
 man3/getauxval.3 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/man3/getauxval.3 b/man3/getauxval.3
index 38eafe0..efcb28f 100755
--- a/man3/getauxval.3
+++ b/man3/getauxval.3
@@ -157,11 +157,11 @@ and glibc changes other aspects of its behavior.
 .BR secure_getenv (3).)
 .TP
 .BR AT_SYSINFO
-The entry point to the system call function in the VDSO.
+The entry point to the system call function in the vDSO.
 Not present/needed on all architectures (e.g., absent on x86-64).
 .TP
 .BR AT_SYSINFO_EHDR
-The address of a page containing the Virtual Dynamic Shared Object (VDSO)
+The address of a page containing the virtual Dynamic Shared Object (vDSO)
 that the kernel creates in order to provide fast implementations of
 certain system calls.
 .TP
-- 
1.9.rc1

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 1/2] vdso.7: repetition fix
       [not found] ` <1391223052-20777-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  2014-02-01  2:50   ` [PATCH 2/2] getauxval.3: wfix David Prévot
@ 2014-02-01  3:23   ` Mike Frysinger
  2014-02-01  6:47     ` Michael Kerrisk (man-pages)
  2014-02-01  6:46   ` Michael Kerrisk (man-pages)
  2 siblings, 1 reply; 6+ messages in thread
From: Mike Frysinger @ 2014-02-01  3:23 UTC (permalink / raw)
  To: David Prévot
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w,
	linux-man-u79uwXL29TY76Z2rM5mHXA

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

On Friday, January 31, 2014 22:50:51 David Prévot wrote:
>  .SS vDSO names
> -The name of vDSO shared object varies across architectures.
> +The name of vDSO varies across architectures.

probably should be "the vDSO" or "The vDSO name"
-mike

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [PATCH 1/2] vdso.7: repetition fix
       [not found] ` <1391223052-20777-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
  2014-02-01  2:50   ` [PATCH 2/2] getauxval.3: wfix David Prévot
  2014-02-01  3:23   ` [PATCH 1/2] vdso.7: repetition fix Mike Frysinger
@ 2014-02-01  6:46   ` Michael Kerrisk (man-pages)
  2 siblings, 0 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2014-02-01  6:46 UTC (permalink / raw)
  To: David Prévot
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w,
	linux-man-u79uwXL29TY76Z2rM5mHXA

Thanks, David. Applied.

Cheers,

Michael


On 02/01/2014 03:50 AM, David Prévot wrote:
> ---
>  man7/vdso.7 | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/man7/vdso.7 b/man7/vdso.7
> index 7251561..986cb2c 100644
> --- a/man7/vdso.7
> +++ b/man7/vdso.7
> @@ -32,7 +32,7 @@ There are some system calls the kernel provides that
>  user-space code ends up using frequently,
>  to the point that such calls can dominate overall performance.
>  This is due both to the frequency of the call as well as the
> -context-switch overhead that results from
> +context-switch overhead that results
>  from exiting user space and entering the kernel.
>  
>  The rest of this documentation is geared toward the curious and/or
> @@ -135,7 +135,7 @@ You will frequently find it under the architecture-specific directory:
>      find arch/$ARCH/ -name '*vdso*.so*' -o -name '*gate*.so*'
>  
>  .SS vDSO names
> -The name of vDSO shared object varies across architectures.
> +The name of vDSO varies across architectures.
>  It will often show up in things like glibc's
>  .BR ldd (1)
>  output.
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 1/2] vdso.7: repetition fix
  2014-02-01  3:23   ` [PATCH 1/2] vdso.7: repetition fix Mike Frysinger
@ 2014-02-01  6:47     ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2014-02-01  6:47 UTC (permalink / raw)
  To: Mike Frysinger, David Prévot
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w,
	linux-man-u79uwXL29TY76Z2rM5mHXA

On 02/01/2014 04:23 AM, Mike Frysinger wrote:
> On Friday, January 31, 2014 22:50:51 David Prévot wrote:
>>  .SS vDSO names
>> -The name of vDSO shared object varies across architectures.
>> +The name of vDSO varies across architectures.
> 
> probably should be "the vDSO" or "The vDSO name"
> -mike
> 

Yup. Fixed. Thanks, Mike.

Cheers,

Michael

-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 2/2] getauxval.3: wfix
       [not found]     ` <1391223052-20777-2-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
@ 2014-02-01  6:56       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2014-02-01  6:56 UTC (permalink / raw)
  To: David Prévot
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w,
	linux-man-u79uwXL29TY76Z2rM5mHXA

Thanks, David.

Applied.

Cheers,

Michael


On 02/01/2014 03:50 AM, David Prévot wrote:
> ---
>  man3/getauxval.3 | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/man3/getauxval.3 b/man3/getauxval.3
> index 38eafe0..efcb28f 100755
> --- a/man3/getauxval.3
> +++ b/man3/getauxval.3
> @@ -157,11 +157,11 @@ and glibc changes other aspects of its behavior.
>  .BR secure_getenv (3).)
>  .TP
>  .BR AT_SYSINFO
> -The entry point to the system call function in the VDSO.
> +The entry point to the system call function in the vDSO.
>  Not present/needed on all architectures (e.g., absent on x86-64).
>  .TP
>  .BR AT_SYSINFO_EHDR
> -The address of a page containing the Virtual Dynamic Shared Object (VDSO)
> +The address of a page containing the virtual Dynamic Shared Object (vDSO)
>  that the kernel creates in order to provide fast implementations of
>  certain system calls.
>  .TP
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2014-02-01  6:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-01  2:50 [PATCH 1/2] vdso.7: repetition fix David Prévot
     [not found] ` <1391223052-20777-1-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
2014-02-01  2:50   ` [PATCH 2/2] getauxval.3: wfix David Prévot
     [not found]     ` <1391223052-20777-2-git-send-email-taffit-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
2014-02-01  6:56       ` Michael Kerrisk (man-pages)
2014-02-01  3:23   ` [PATCH 1/2] vdso.7: repetition fix Mike Frysinger
2014-02-01  6:47     ` Michael Kerrisk (man-pages)
2014-02-01  6:46   ` Michael Kerrisk (man-pages)

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