From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 475 invoked by alias); 3 Sep 2013 03:22:08 -0000 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 Received: (qmail 388 invoked by uid 89); 3 Sep 2013 03:22:07 -0000 Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 03 Sep 2013 03:22:07 +0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,KHOP_THREADED autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: smtp.gentoo.org Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 404D433EAC5; Tue, 3 Sep 2013 03:22:04 +0000 (UTC) From: Mike Frysinger To: libc-ports@sourceware.org, libc-alpha@sourceware.org Cc: carlos@systemhalted.org Subject: [PATCH 2/2 v3] hppa: add fanotify_mark Date: Tue, 03 Sep 2013 03:22:00 -0000 Message-Id: <1378178437-16147-2-git-send-email-vapier@gentoo.org> In-Reply-To: <1378178437-16147-1-git-send-email-vapier@gentoo.org> References: <1377100993-9438-1-git-send-email-vapier@gentoo.org> <1378178437-16147-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes X-SW-Source: 2013-09/txt/msg00013.txt.bz2 Another example of all the 64bit arches getting the definition via a common file, but the 32bit ones all adding it by themselves and hppa was missed. I'm not entirely sure about the usage of GLIBC_2.19 symbols here. We'd like to backport this so people can use it, but it means we'd be releasing a glibc-2.17/glibc-2.18 with a GLIBC_2.19 symbol in it. But maybe it won't be a big deal since you'd only get that 2.19 ref if you actually used the symbol ? There hasn't been a glibc release where hppa worked w/out a bunch of patches, so in reality there's only two distros that matter -- Gentoo and Debian. Reported-by: Jeroen Roovers Signed-off-by: Mike Frysinger --- v3 - split test out ChangeLog | 4 ++++ Versions.def | 1 + ports/ChangeLog | 7 +++++++ ports/sysdeps/unix/sysv/linux/hppa/Versions | 3 +++ ports/sysdeps/unix/sysv/linux/hppa/syscalls.list | 1 + 5 files changed, 16 insertions(+) diff --git a/ChangeLog b/ChangeLog index 2c300a5..2210a9c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2013-09-02 Mike Frysinger + * Versions.def (libc): Add GLIBC_2.19. + +2013-09-02 Mike Frysinger + * sysdeps/unix/sysv/linux/tst-fanotify.c: New test. * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-fanotify. diff --git a/Versions.def b/Versions.def index 0854e6e..bca4ff4 100644 --- a/Versions.def +++ b/Versions.def @@ -35,6 +35,7 @@ libc { GLIBC_2.16 GLIBC_2.17 GLIBC_2.18 + GLIBC_2.19 HURD_CTHREADS_0.3 %ifdef EXPORT_UNWIND_FIND_FDE GCC_3.0 diff --git a/ports/ChangeLog b/ports/ChangeLog index fcb58cc..9b63801 100644 --- a/ports/ChangeLog +++ b/ports/ChangeLog @@ -1,3 +1,10 @@ +2013-09-02 Mike Frysinger + + * sysdeps/unix/sysv/linux/hppa/syscalls.list (fanotify_mark): New + entry. + * sysdeps/unix/sysv/linux/hppa/Versions (libc): Add GLIBC_2.19 and + fanotify_mark. + 2013-01-02 Joseph Myers * README: Update copyright dates in example. diff --git a/ports/sysdeps/unix/sysv/linux/hppa/Versions b/ports/sysdeps/unix/sysv/linux/hppa/Versions index a62ef19..a392fee 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/Versions +++ b/ports/sysdeps/unix/sysv/linux/hppa/Versions @@ -32,6 +32,9 @@ libc { _sys_errlist; sys_errlist; _sys_nerr; sys_nerr; prlimit64; } + GLIBC_2.19 { + fanotify_mark; + } } librt { GLIBC_2.3 { diff --git a/ports/sysdeps/unix/sysv/linux/hppa/syscalls.list b/ports/sysdeps/unix/sysv/linux/hppa/syscalls.list index ae36d46..ae462ed 100644 --- a/ports/sysdeps/unix/sysv/linux/hppa/syscalls.list +++ b/ports/sysdeps/unix/sysv/linux/hppa/syscalls.list @@ -36,3 +36,4 @@ socketpair - socketpair i:iiif __socketpair socketpair setrlimit - setrlimit i:ip __setrlimit setrlimit getrlimit - getrlimit i:ip __getrlimit getrlimit prlimit64 EXTRA prlimit64 i:iipp __prlimit64 prlimit64@@GLIBC_2.17 +fanotify_mark EXTRA fanotify_mark i:iiiiis __fanotify_mark fanotify_mark@@GLIBC_2.19 -- 1.8.3.2