From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8384 invoked by alias); 23 Feb 2011 12:48:10 -0000 Received: (qmail 8374 invoked by uid 22791); 23 Feb 2011 12:48:10 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,TW_FC,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from weizen.linux-kernel.at (HELO mail.linux-kernel.at) (213.129.242.86) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 23 Feb 2011 12:48:06 +0000 Received: by mail.linux-kernel.at with ESMTP id p1NClraP028360; Wed, 23 Feb 2011 13:47:54 +0100 Message-ID: <4D6501F9.9010202@linux-kernel.at> Date: Wed, 23 Feb 2011 12:48:00 -0000 From: Oliver Falk User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Fedora/3.1.7-0.35.b3pre.fc14 Thunderbird/3.1.7 MIME-Version: 1.0 To: libc-ports@sourceware.org Subject: Re: alpha fcntl bits missing defines References: <4D64F4E6.8000702@linux-kernel.at> In-Reply-To: <4D64F4E6.8000702@linux-kernel.at> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-lkernAT-MailScanner-Information: Please contact the ISP for more information X-lkernAT-MailScanner-ID: p1NClraP028360 X-lkernAT-MailScanner: Found to be clean X-lkernAT-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-1.901, required 5, autolearn=not spam, BAYES_00 -1.90, NO_RELAYS -0.00) X-lkernAT-MailScanner-Watermark: 1299070074.47714@ddDiOxy6vbtpsVBNRsJRLQ Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2011-02/txt/msg00024.txt.bz2 Hi! On 02/23/2011 12:52 PM, Oliver Falk wrote: > Just noticed, that [ports]/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h is > missing the following 2 defines: > > --- fcntl.h.PIPE_SZ 2011-02-23 10:46:09.000000000 +0100 > +++ fcntl.h 2011-02-23 10:46:11.000000000 +0100 > @@ -97,6 +97,8 @@ > # define F_SETLEASE 1024 /* Set a lease. */ > # define F_GETLEASE 1025 /* Enquire what lease is active. */ > # define F_NOTIFY 1026 /* Request notfications on a directory. */ > +# define F_SETPIPE_SZ 1031 /* Set pipe page size array. */ > +# define F_GETPIPE_SZ 1032 /* Set pipe page size array. */ > #endif > #ifdef __USE_XOPEN2K8 > # define F_DUPFD_CLOEXEC 1030 /* Duplicate file descriptor with > > Would be great if one could add it. And another small patch for statfs.h: --- statfs.h.f_flags 2011-02-23 11:23:06.000000000 +0100 +++ statfs.h 2011-02-23 11:26:21.000000000 +0100 @@ -42,6 +42,7 @@ __fsid_t f_fsid; int f_namelen; int f_frsize; + int f_flags; int f_spare[5]; }; @@ -58,6 +59,7 @@ __fsid_t f_fsid; int f_namelen; int f_frsize; + int f_flags; int f_spare[5]; }; #endif -of