All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fts.3 is not available in LFS builds
@ 2014-03-15 13:54 Christoph Hellwig
       [not found] ` <20140315135416.GA10430-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Christoph Hellwig @ 2014-03-15 13:54 UTC (permalink / raw)
  To: linux-man-u79uwXL29TY76Z2rM5mHXA

As pointed out during a recent discussion on libc-hacker the fts(3)
APIs can't be used with large file offsets:

	https://sourceware.org/bugzilla/show_bug.cgi?id=15838

The manpage should mention this.  Note: the text probably needs some
better formatting at least, but I couldn't come up with proper markup
for compiler arguments.

Signed-off-by: Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org>

diff --git a/man3/fts.3 b/man3/fts.3
index 9374463..2b14c0d 100644
--- a/man3/fts.3
+++ b/man3/fts.3
@@ -774,6 +774,10 @@ The options were invalid.
 These functions are available in Linux since glibc2.
 .SH CONFORMING TO
 4.4BSD.
+.SH BUGS
+All the APIs described in this manpage are not safe when compiling
+a program using the LFS APIs, e.g. by using
+-D_FILE_OFFSET_BITS=64.
 .\" The following statement is years old, and seems no closer to
 .\" being true -- mtk
 .\" The
--
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] 12+ messages in thread

* Re: [PATCH] fts.3 is not available in LFS builds
       [not found] ` <20140315135416.GA10430-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
@ 2014-03-15 14:47   ` Michael Kerrisk (man-pages)
       [not found]     ` <CAKgNAkgqXUf0yWaXyAD7yBJgivp9Jmwvz4EAnh_DpyActuoGwA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Michael Kerrisk (man-pages) @ 2014-03-15 14:47 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: linux-man

Christoph,

On Sat, Mar 15, 2014 at 2:54 PM, Christoph Hellwig <hch-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org> wrote:
> As pointed out during a recent discussion on libc-hacker the fts(3)
> APIs can't be used with large file offsets:
>
>         https://sourceware.org/bugzilla/show_bug.cgi?id=15838
>
> The manpage should mention this.  Note: the text probably needs some
> better formatting at least, but I couldn't come up with proper markup
> for compiler arguments.
>
> Signed-off-by: Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org>
>
> diff --git a/man3/fts.3 b/man3/fts.3
> index 9374463..2b14c0d 100644
> --- a/man3/fts.3
> +++ b/man3/fts.3
> @@ -774,6 +774,10 @@ The options were invalid.
>  These functions are available in Linux since glibc2.
>  .SH CONFORMING TO
>  4.4BSD.
> +.SH BUGS
> +All the APIs described in this manpage are not safe when compiling

Should this perhaps better read "not safe on 32-bit systems"?

> +a program using the LFS APIs, e.g. by using
> +-D_FILE_OFFSET_BITS=64.
>  .\" The following statement is years old, and seems no closer to
>  .\" being true -- mtk
>  .\" The
> --
> 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

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

* Re: [PATCH] fts.3 is not available in LFS builds
       [not found]     ` <CAKgNAkgqXUf0yWaXyAD7yBJgivp9Jmwvz4EAnh_DpyActuoGwA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2014-03-16 17:22       ` Christoph Hellwig
       [not found]         ` <20140316172219.GA16900-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Christoph Hellwig @ 2014-03-16 17:22 UTC (permalink / raw)
  To: Michael Kerrisk (man-pages); +Cc: Christoph Hellwig, linux-man

On Sat, Mar 15, 2014 at 03:47:26PM +0100, Michael Kerrisk (man-pages) wrote:
> >  4.4BSD.
> > +.SH BUGS
> > +All the APIs described in this manpage are not safe when compiling
> 
> Should this perhaps better read "not safe on 32-bit systems"?

Well, it works:

 a) on a 32-it system if _FILE_OFFSET_BITS is 32 (currently the default)
 b) on any 64-bit system

Not sure what the best langauge is to communicate this issue to the
user.

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

* Re: [PATCH] fts.3 is not available in LFS builds
       [not found]         ` <20140316172219.GA16900-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
@ 2014-03-17 13:56           ` Michael Kerrisk (man-pages)
       [not found]             ` <5326FF14.7010305-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Michael Kerrisk (man-pages) @ 2014-03-17 13:56 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man

On 03/16/2014 06:22 PM, Christoph Hellwig wrote:
> On Sat, Mar 15, 2014 at 03:47:26PM +0100, Michael Kerrisk (man-pages) wrote:
>>>  4.4BSD.
>>> +.SH BUGS
>>> +All the APIs described in this manpage are not safe when compiling
>>
>> Should this perhaps better read "not safe on 32-bit systems"?
> 
> Well, it works:
> 
>  a) on a 32-it system if _FILE_OFFSET_BITS is 32 (currently the default)
>  b) on any 64-bit system
> 
> Not sure what the best langauge is to communicate this issue to the
> user.
> 
> 

I made it

    BUGS
       All  of  the  APIs described in this man page are not safe when
       compiling a program using the LFS APIs  (e.g.,  when  compiling
       with  -D_FILE_OFFSET_BITS=64).  This means these APIs are unus‐
       able on current 32-bit systems, since those  systems  are  nor‐
       mally built with -D_FILE_OFFSET_BITS=64.


Okay?

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

* Re: [PATCH] fts.3 is not available in LFS builds
       [not found]             ` <5326FF14.7010305-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2014-03-17 14:01               ` Christoph Hellwig
       [not found]                 ` <20140317140118.GA11576-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Christoph Hellwig @ 2014-03-17 14:01 UTC (permalink / raw)
  To: Michael Kerrisk (man-pages); +Cc: Christoph Hellwig, linux-man

On Mon, Mar 17, 2014 at 02:56:36PM +0100, Michael Kerrisk (man-pages) wrote:
> I made it
> 
>     BUGS
>        All  of  the  APIs described in this man page are not safe when
>        compiling a program using the LFS APIs  (e.g.,  when  compiling
>        with  -D_FILE_OFFSET_BITS=64).  This means these APIs are unus???
>        able on current 32-bit systems, since those  systems  are  nor???
>        mally built with -D_FILE_OFFSET_BITS=64.

Unfortunately that' not quite true - the default is still
-D_FILE_OFFSET_BITS=32 for the compiler, so you'd need manual action to
change it - which generally is a good idea.

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

* Re: [PATCH] fts.3 is not available in LFS builds
       [not found]                 ` <20140317140118.GA11576-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
@ 2014-03-17 14:02                   ` Michael Kerrisk (man-pages)
       [not found]                     ` <CAKgNAkh7ES18jT2coD39ZXvjUxkrZavaG=SufNS_-16SgM3kUg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Michael Kerrisk (man-pages) @ 2014-03-17 14:02 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: linux-man

On Mon, Mar 17, 2014 at 3:01 PM, Christoph Hellwig <hch-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org> wrote:
> On Mon, Mar 17, 2014 at 02:56:36PM +0100, Michael Kerrisk (man-pages) wrote:
>> I made it
>>
>>     BUGS
>>        All  of  the  APIs described in this man page are not safe when
>>        compiling a program using the LFS APIs  (e.g.,  when  compiling
>>        with  -D_FILE_OFFSET_BITS=64).  This means these APIs are unus???
>>        able on current 32-bit systems, since those  systems  are  nor???
>>        mally built with -D_FILE_OFFSET_BITS=64.
>
> Unfortunately that' not quite true - the default is still
> -D_FILE_OFFSET_BITS=32 for the compiler, so you'd need manual action to
> change it - which generally is a good idea.

Oh! I thought most distributors built their 32-bit distros with
-D_FILE_OFFSET_BITS=64 these days? Am I wrong? (I don't have any
32-bit systems handy to sample from.)



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

* Re: [PATCH] fts.3 is not available in LFS builds
       [not found]                     ` <CAKgNAkh7ES18jT2coD39ZXvjUxkrZavaG=SufNS_-16SgM3kUg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2014-03-17 14:06                       ` Christoph Hellwig
       [not found]                         ` <20140317140616.GA15958-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Christoph Hellwig @ 2014-03-17 14:06 UTC (permalink / raw)
  To: Michael Kerrisk (man-pages); +Cc: Christoph Hellwig, linux-man

On Mon, Mar 17, 2014 at 03:02:53PM +0100, Michael Kerrisk (man-pages) wrote:
> Oh! I thought most distributors built their 32-bit distros with
> -D_FILE_OFFSET_BITS=64 these days? Am I wrong? (I don't have any
> 32-bit systems handy to sample from.)

I think some build systems try to enforce it, but last time Eric Sandeen
checked we still had lots of packages not picking it up.

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

* Re: [PATCH] fts.3 is not available in LFS builds
       [not found]                         ` <20140317140616.GA15958-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
@ 2014-03-17 14:11                           ` Michael Kerrisk (man-pages)
       [not found]                             ` <CAKgNAkinnsvoXT_FNxaS7L5Umo6va8OCVnTv-gZ5vvVSFi2--w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Michael Kerrisk (man-pages) @ 2014-03-17 14:11 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: linux-man

On Mon, Mar 17, 2014 at 3:06 PM, Christoph Hellwig <hch-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org> wrote:
> On Mon, Mar 17, 2014 at 03:02:53PM +0100, Michael Kerrisk (man-pages) wrote:
>> Oh! I thought most distributors built their 32-bit distros with
>> -D_FILE_OFFSET_BITS=64 these days? Am I wrong? (I don't have any
>> 32-bit systems handy to sample from.)
>
> I think some build systems try to enforce it, but last time Eric Sandeen
> checked we still had lots of packages not picking it up.

Okay. I trimmed it back close to your original text:

    BUGS
       All  of  the  APIs described in this man page are not safe when
       compiling a program using the LFS APIs on 32-bit systems (e.g.,
       when compiling with -D_FILE_OFFSET_BITS=64).

(Okay?)

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

* Re: [PATCH] fts.3 is not available in LFS builds
       [not found]                             ` <CAKgNAkinnsvoXT_FNxaS7L5Umo6va8OCVnTv-gZ5vvVSFi2--w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2014-03-19  3:12                               ` Mike Frysinger
  2014-03-19  5:56                                 ` Mike Frysinger
  2014-03-19 13:29                                 ` Michael Kerrisk (man-pages)
  0 siblings, 2 replies; 12+ messages in thread
From: Mike Frysinger @ 2014-03-19  3:12 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: Christoph Hellwig, linux-man

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

On Mon 17 Mar 2014 15:11:18 Michael Kerrisk wrote:
> On Mon, Mar 17, 2014 at 3:06 PM, Christoph Hellwig wrote:
> > On Mon, Mar 17, 2014 at 03:02:53PM +0100, Michael Kerrisk wrote:
> >> Oh! I thought most distributors built their 32-bit distros with
> >> -D_FILE_OFFSET_BITS=64 these days? Am I wrong? (I don't have any
> >> 32-bit systems handy to sample from.)
> > 
> > I think some build systems try to enforce it, but last time Eric Sandeen
> > checked we still had lots of packages not picking it up.
> 
> Okay. I trimmed it back close to your original text:
> 
>     BUGS
>        All  of  the  APIs described in this man page are not safe when
>        compiling a program using the LFS APIs on 32-bit systems (e.g.,
>        when compiling with -D_FILE_OFFSET_BITS=64).
> 
> (Okay?)

not to throw a wrench in there as a pedantic a$$hole, but i find the classic 
concept of "32-bit and 64-bit systems" to not really fit into modern world 
(well, it's been this way for much longer, so let's say "mainstream").

would you call all ILP32 ABIs 32-bit ?  e.g. mips' n32 or x86's x32.  
sizeof(long) == 4, but sizeof(off_t) == 8.  POSIX describes these as "ILP32 
OFF64" while the classic 32-bit systems are "ILP32 OFF".

you can (afaik) use -D_FILE_OFFSET_BITS=64 w/x32 and fts.h and have it work.  
maybe we just ignore the issue since fts.h is dead anyways ?  just add a 
section to the fts(3) page recommending people use ftw(3) instead ?
-mike

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

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

* Re: [PATCH] fts.3 is not available in LFS builds
  2014-03-19  3:12                               ` Mike Frysinger
@ 2014-03-19  5:56                                 ` Mike Frysinger
  2014-03-19 13:29                                   ` Michael Kerrisk (man-pages)
  2014-03-19 13:29                                 ` Michael Kerrisk (man-pages)
  1 sibling, 1 reply; 12+ messages in thread
From: Mike Frysinger @ 2014-03-19  5:56 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: Christoph Hellwig, linux-man

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

On Tue 18 Mar 2014 23:12:45 Mike Frysinger wrote:
> maybe we just ignore the issue since fts.h is dead anyways ?  just add a
> section to the fts(3) page recommending people use ftw(3) instead ?

i might be completely off on fts vs ftw.  there's discussion on glibc lists 
about maybe fixing fts to not suck.  perhaps we just link to the existing bug 
on the topic ?
https://sourceware.org/bugzilla/show_bug.cgi?id=11460
-mike

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

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

* Re: [PATCH] fts.3 is not available in LFS builds
  2014-03-19  3:12                               ` Mike Frysinger
  2014-03-19  5:56                                 ` Mike Frysinger
@ 2014-03-19 13:29                                 ` Michael Kerrisk (man-pages)
  1 sibling, 0 replies; 12+ messages in thread
From: Michael Kerrisk (man-pages) @ 2014-03-19 13:29 UTC (permalink / raw)
  To: Mike Frysinger
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, Christoph Hellwig, linux-man

On 03/19/2014 04:12 AM, Mike Frysinger wrote:
> On Mon 17 Mar 2014 15:11:18 Michael Kerrisk wrote:
>> On Mon, Mar 17, 2014 at 3:06 PM, Christoph Hellwig wrote:
>>> On Mon, Mar 17, 2014 at 03:02:53PM +0100, Michael Kerrisk wrote:
>>>> Oh! I thought most distributors built their 32-bit distros with
>>>> -D_FILE_OFFSET_BITS=64 these days? Am I wrong? (I don't have any
>>>> 32-bit systems handy to sample from.)
>>>
>>> I think some build systems try to enforce it, but last time Eric Sandeen
>>> checked we still had lots of packages not picking it up.
>>
>> Okay. I trimmed it back close to your original text:
>>
>>     BUGS
>>        All  of  the  APIs described in this man page are not safe when
>>        compiling a program using the LFS APIs on 32-bit systems (e.g.,
>>        when compiling with -D_FILE_OFFSET_BITS=64).
>>
>> (Okay?)
> 
> not to throw a wrench in there as a pedantic a$$hole, but i find the classic 
> concept of "32-bit and 64-bit systems" to not really fit into modern world 
> (well, it's been this way for much longer, so let's say "mainstream").
> 
> would you call all ILP32 ABIs 32-bit ?  e.g. mips' n32 or x86's x32.  
> sizeof(long) == 4, but sizeof(off_t) == 8.  POSIX describes these as "ILP32 
> OFF64" while the classic 32-bit systems are "ILP32 OFF".
> 
> you can (afaik) use -D_FILE_OFFSET_BITS=64 w/x32 and fts.h and have it work.  
> maybe we just ignore the issue since fts.h is dead anyways ?  just add a 
> section to the fts(3) page recommending people use ftw(3) instead ?

Okay, already ;-). I removed the words "on 32-bit systems".


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

* Re: [PATCH] fts.3 is not available in LFS builds
  2014-03-19  5:56                                 ` Mike Frysinger
@ 2014-03-19 13:29                                   ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 12+ messages in thread
From: Michael Kerrisk (man-pages) @ 2014-03-19 13:29 UTC (permalink / raw)
  To: Mike Frysinger
  Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, Christoph Hellwig, linux-man

On 03/19/2014 06:56 AM, Mike Frysinger wrote:
> On Tue 18 Mar 2014 23:12:45 Mike Frysinger wrote:
>> maybe we just ignore the issue since fts.h is dead anyways ?  just add a
>> section to the fts(3) page recommending people use ftw(3) instead ?
> 
> i might be completely off on fts vs ftw.  there's discussion on glibc lists 
> about maybe fixing fts to not suck.  perhaps we just link to the existing bug 
> on the topic ?
> https://sourceware.org/bugzilla/show_bug.cgi?id=11460

Who knows what'll happen. I put a link to that bug in the page source.

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

end of thread, other threads:[~2014-03-19 13:29 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-15 13:54 [PATCH] fts.3 is not available in LFS builds Christoph Hellwig
     [not found] ` <20140315135416.GA10430-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2014-03-15 14:47   ` Michael Kerrisk (man-pages)
     [not found]     ` <CAKgNAkgqXUf0yWaXyAD7yBJgivp9Jmwvz4EAnh_DpyActuoGwA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-03-16 17:22       ` Christoph Hellwig
     [not found]         ` <20140316172219.GA16900-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2014-03-17 13:56           ` Michael Kerrisk (man-pages)
     [not found]             ` <5326FF14.7010305-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-03-17 14:01               ` Christoph Hellwig
     [not found]                 ` <20140317140118.GA11576-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2014-03-17 14:02                   ` Michael Kerrisk (man-pages)
     [not found]                     ` <CAKgNAkh7ES18jT2coD39ZXvjUxkrZavaG=SufNS_-16SgM3kUg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-03-17 14:06                       ` Christoph Hellwig
     [not found]                         ` <20140317140616.GA15958-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2014-03-17 14:11                           ` Michael Kerrisk (man-pages)
     [not found]                             ` <CAKgNAkinnsvoXT_FNxaS7L5Umo6va8OCVnTv-gZ5vvVSFi2--w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-03-19  3:12                               ` Mike Frysinger
2014-03-19  5:56                                 ` Mike Frysinger
2014-03-19 13:29                                   ` Michael Kerrisk (man-pages)
2014-03-19 13:29                                 ` Michael Kerrisk (man-pages)

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.