Skip to content

Commit

Permalink
hppa: add fanotify_mark
Browse files Browse the repository at this point in the history
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 <jer@gentoo.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
  • Loading branch information
Mike Frysinger committed Sep 3, 2013
1 parent ac44401 commit 18d4371
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2013-09-02 Mike Frysinger <vapier@gentoo.org>

* Versions.def (libc): Add GLIBC_2.19.

2013-09-02 Mike Frysinger <vapier@gentoo.org>

* sysdeps/unix/sysv/linux/tst-fanotify.c: New test.
Expand Down
1 change: 1 addition & 0 deletions Versions.def
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions ports/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2013-09-02 Mike Frysinger <vapier@gentoo.org>

* 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 <joseph@codesourcery.com>

* README: Update copyright dates in example.
Expand Down
3 changes: 3 additions & 0 deletions ports/sysdeps/unix/sysv/linux/hppa/Versions
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ libc {
_sys_errlist; sys_errlist; _sys_nerr; sys_nerr;
prlimit64;
}
GLIBC_2.19 {
fanotify_mark;
}
}
librt {
GLIBC_2.3 {
Expand Down
1 change: 1 addition & 0 deletions ports/sysdeps/unix/sysv/linux/hppa/syscalls.list
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 18d4371

Please sign in to comment.