linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] A couple of minor typo fix's to stat{,x}.2
@ 2017-04-25 12:18 Andrew Clayton
       [not found] ` <1493122695-8001-1-git-send-email-andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Clayton @ 2017-04-25 12:18 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, Andrew Clayton

Hi.

A couple of minor fix's.

- stat.2: tfix

Looks like in a recent edit a 'for' got turned into a 'f'.

- statx.2: tfix

Change a note about no glibc wrapper for 'renameat2' to 'statx'.

Cheers,
Andrew

Andrew Clayton (2):
  stat.2: tfix
  statx.2: tfix

 man2/stat.2  | 2 +-
 man2/statx.2 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.7.4

--
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] 5+ messages in thread

* [PATCH 1/2] stat.2: tfix
       [not found] ` <1493122695-8001-1-git-send-email-andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
@ 2017-04-25 12:18   ` Andrew Clayton
       [not found]     ` <1493122695-8001-2-git-send-email-andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
  2017-04-25 12:18   ` [PATCH 2/2] statx.2: tfix Andrew Clayton
  1 sibling, 1 reply; 5+ messages in thread
From: Andrew Clayton @ 2017-04-25 12:18 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, Andrew Clayton

Signed-off-by: Andrew Clayton <andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
---
 man2/stat.2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man2/stat.2 b/man2/stat.2
index dec44e2..23fe7e5 100644
--- a/man2/stat.2
+++ b/man2/stat.2
@@ -179,7 +179,7 @@ if you need to know the details.
 .\" Background: inode attributes are modified with i_mutex held, but
 .\" read by stat() without taking the mutex.
 .IR Note :
-f performance and simplicity reasons, different fields in the
+for performance and simplicity reasons, different fields in the
 .I stat
 structure may contain state information from different moments
 during the execution of the system call.
-- 
2.7.4

--
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] 5+ messages in thread

* [PATCH 2/2] statx.2: tfix
       [not found] ` <1493122695-8001-1-git-send-email-andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
  2017-04-25 12:18   ` [PATCH 1/2] stat.2: tfix Andrew Clayton
@ 2017-04-25 12:18   ` Andrew Clayton
       [not found]     ` <1493122695-8001-3-git-send-email-andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
  1 sibling, 1 reply; 5+ messages in thread
From: Andrew Clayton @ 2017-04-25 12:18 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, Andrew Clayton

Signed-off-by: Andrew Clayton <andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
---
 man2/statx.2 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man2/statx.2 b/man2/statx.2
index 12e0846..b2ff1ed 100644
--- a/man2/statx.2
+++ b/man2/statx.2
@@ -44,7 +44,7 @@ statx \- get file status (extended)
 
 .IR Note :
 There is no glibc wrapper for
-.BR renameat2 ();
+.BR statx ();
 see NOTES.
 .SH DESCRIPTION
 .PP
-- 
2.7.4

--
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] 5+ messages in thread

* Re: [PATCH 1/2] stat.2: tfix
       [not found]     ` <1493122695-8001-2-git-send-email-andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
@ 2017-04-25 12:47       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Kerrisk (man-pages) @ 2017-04-25 12:47 UTC (permalink / raw)
  To: Andrew Clayton
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w,
	linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/25/2017 02:18 PM, Andrew Clayton wrote:
> Signed-off-by: Andrew Clayton <andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>

Thanks, Andrew. Applied.

Cheers,

Michael


> ---
>  man2/stat.2 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man2/stat.2 b/man2/stat.2
> index dec44e2..23fe7e5 100644
> --- a/man2/stat.2
> +++ b/man2/stat.2
> @@ -179,7 +179,7 @@ if you need to know the details.
>  .\" Background: inode attributes are modified with i_mutex held, but
>  .\" read by stat() without taking the mutex.
>  .IR Note :
> -f performance and simplicity reasons, different fields in the
> +for performance and simplicity reasons, different fields in the
>  .I stat
>  structure may contain state information from different moments
>  during the execution of the system call.
> 


-- 
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] 5+ messages in thread

* Re: [PATCH 2/2] statx.2: tfix
       [not found]     ` <1493122695-8001-3-git-send-email-andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
@ 2017-04-25 12:47       ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Kerrisk (man-pages) @ 2017-04-25 12:47 UTC (permalink / raw)
  To: Andrew Clayton
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w,
	linux-man-u79uwXL29TY76Z2rM5mHXA

On 04/25/2017 02:18 PM, Andrew Clayton wrote:
> Signed-off-by: Andrew Clayton <andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>

Thanks, Andrew. Applied.

Cheers,

Michael


> ---
>  man2/statx.2 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man2/statx.2 b/man2/statx.2
> index 12e0846..b2ff1ed 100644
> --- a/man2/statx.2
> +++ b/man2/statx.2
> @@ -44,7 +44,7 @@ statx \- get file status (extended)
>  
>  .IR Note :
>  There is no glibc wrapper for
> -.BR renameat2 ();
> +.BR statx ();
>  see NOTES.
>  .SH DESCRIPTION
>  .PP
> 


-- 
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] 5+ messages in thread

end of thread, other threads:[~2017-04-25 12:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-25 12:18 [PATCH 0/2] A couple of minor typo fix's to stat{,x}.2 Andrew Clayton
     [not found] ` <1493122695-8001-1-git-send-email-andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
2017-04-25 12:18   ` [PATCH 1/2] stat.2: tfix Andrew Clayton
     [not found]     ` <1493122695-8001-2-git-send-email-andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
2017-04-25 12:47       ` Michael Kerrisk (man-pages)
2017-04-25 12:18   ` [PATCH 2/2] statx.2: tfix Andrew Clayton
     [not found]     ` <1493122695-8001-3-git-send-email-andrew-gyMb1R/nBgN3uBD2Ct+Y/qxOck334EZe@public.gmane.org>
2017-04-25 12:47       ` 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).