From patchwork Tue Feb 24 05:19:45 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 442803 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 67889140157 for ; Tue, 24 Feb 2015 16:19:57 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=izLo8ushe6tZlDJOWsQ3RF1We3sJSZH1NAgxQhcl2xg/BckYR5xVa 7DTN/jx3sYAHAilnMSnwcckHOikI54lhJmk6Of9oqwMtDhNz+RYAvWdejXCdyWWN 24uX/xfjkOCKkJjPTdjR3gqDoG4iPivzKsy5kA9Vf1KKfQo/t/WkEU= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; s=default; bh=/mJrVezbWemxn/83j+ixEnnDrxg=; b=ceA/c+4eFoG2p4j5UmkADH/yhoyT v/NBHQlYSVMZK4BXf/+L2UTlA7KJazajyXcpBFTzFhfcIIhuoCZTTKdTb8br/sMT 52NM9YdXZTLT5jQJs6FctmWMWDr6gOhI3CvOcZ4YpGpmiv5wJf/remmrwvqbnAiO 8VdkzRFWOiFV4PY= Received: (qmail 11870 invoked by alias); 24 Feb 2015 05:19:50 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 11861 invoked by uid 89); 24 Feb 2015 05:19:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: smtp.gentoo.org From: Mike Frysinger To: libc-alpha@sourceware.org Cc: carlos@systemhalted.org, John David Anglin Subject: [PATCH] hppa: fix __O_SYNC to match the kernel Date: Tue, 24 Feb 2015 00:19:45 -0500 Message-Id: <1424755185-27627-1-git-send-email-vapier@gentoo.org> From: John David Anglin 2015-02-24 John David Anglin * sysdeps/unix/sysv/linux/hppa/bits/fcntl.h (__O_SYNC): Change to 00100000. --- sysdeps/unix/sysv/linux/hppa/bits/fcntl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h b/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h index 9aad095..a800e28 100644 --- a/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h @@ -27,7 +27,7 @@ #define O_NONBLOCK 00200004 /* HPUX has separate NDELAY & NONBLOCK */ #define __O_DSYNC 01000000 #define __O_RSYNC 02000000 /* HPUX only */ -#define __O_SYNC 01000000 +#define __O_SYNC 00100000 #define O_SYNC (__O_SYNC|__O_DSYNC) #define O_BLKSEEK 00000100 /* HPUX only */