Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/glibc/2.16.0: 1508_all_hppa-fanotify_mark.patch README.history
Date: Sat, 23 Nov 2013 05:19:24
Message-Id: 20131123051921.6F5292004B@flycatcher.gentoo.org
1 vapier 13/11/23 05:19:21
2
3 Modified: README.history
4 Added: 1508_all_hppa-fanotify_mark.patch
5 Log:
6 add fix from upstream for adding fanotify_mark to older hppa versions #480268 by Jeroen Roovers
7
8 Revision Changes Path
9 1.18 src/patchsets/glibc/2.16.0/README.history
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.16.0/README.history?rev=1.18&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.16.0/README.history?rev=1.18&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.16.0/README.history?r1=1.17&r2=1.18
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/2.16.0/README.history,v
18 retrieving revision 1.17
19 retrieving revision 1.18
20 diff -u -r1.17 -r1.18
21 --- README.history 23 Jun 2013 05:01:25 -0000 1.17
22 +++ README.history 23 Nov 2013 05:19:21 -0000 1.18
23 @@ -1,3 +1,9 @@
24 +12 22 Nov 2013
25 + + 0059_all_glibc-2.19-make-4.0.patch
26 + + 1507_all_hppa-ia64-DL_AUTO_FUNCTION_ADDRESS.patch
27 + + 1508_all_hppa-fanotify_mark.patch
28 + + 6024_all_alpha-fix-signal-thunk-unwind-info.patch
29 +
30 11 23 Jun 2013
31 + 0065_all_glibc-2.18-qecvt-guards.patch
32
33
34
35
36 1.1 src/patchsets/glibc/2.16.0/1508_all_hppa-fanotify_mark.patch
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.16.0/1508_all_hppa-fanotify_mark.patch?rev=1.1&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.16.0/1508_all_hppa-fanotify_mark.patch?rev=1.1&content-type=text/plain
40
41 Index: 1508_all_hppa-fanotify_mark.patch
42 ===================================================================
43 https://bugs.gentoo.org/480268
44
45 From 18d4371683fbe347bf4fbaef05d18b5a4918887a Mon Sep 17 00:00:00 2001
46 From: Mike Frysinger <vapier@g.o>
47 Date: Mon, 2 Sep 2013 23:13:57 -0400
48 Subject: [PATCH] hppa: add fanotify_mark
49
50 Another example of all the 64bit arches getting the definition via a
51 common file, but the 32bit ones all adding it by themselves and hppa
52 was missed.
53
54 I'm not entirely sure about the usage of GLIBC_2.19 symbols here.
55 We'd like to backport this so people can use it, but it means we'd
56 be releasing a glibc-2.17/glibc-2.18 with a GLIBC_2.19 symbol in it.
57 But maybe it won't be a big deal since you'd only get that 2.19 ref
58 if you actually used the symbol ?
59
60 There hasn't been a glibc release where hppa worked w/out a bunch of
61 patches, so in reality there's only two distros that matter -- Gentoo
62 and Debian.
63
64 Reported-by: Jeroen Roovers <jer@g.o>
65 Signed-off-by: Mike Frysinger <vapier@g.o>
66 ---
67 ChangeLog | 4 ++++
68 Versions.def | 1 +
69 ports/ChangeLog | 7 +++++++
70 ports/sysdeps/unix/sysv/linux/hppa/Versions | 3 +++
71 ports/sysdeps/unix/sysv/linux/hppa/syscalls.list | 1 +
72 5 files changed, 16 insertions(+)
73
74 2013-09-02 Mike Frysinger <vapier@g.o>
75
76 * sysdeps/unix/sysv/linux/hppa/syscalls.list (fanotify_mark): New
77 entry.
78
79 diff --git a/ports/sysdeps/unix/sysv/linux/hppa/syscalls.list b/ports/sysdeps/unix/sysv/linux/hppa/syscalls.list
80 index ae36d46..ae462ed 100644
81 --- a/ports/sysdeps/unix/sysv/linux/hppa/syscalls.list
82 +++ b/ports/sysdeps/unix/sysv/linux/hppa/syscalls.list
83 @@ -36,3 +36,4 @@ socketpair - socketpair i:iiif __socketpair socketpair
84 setrlimit - setrlimit i:ip __setrlimit setrlimit
85 getrlimit - getrlimit i:ip __getrlimit getrlimit
86 prlimit64 EXTRA prlimit64 i:iipp prlimit64
87 +fanotify_mark EXTRA fanotify_mark i:iiiiis fanotify_mark
88 --
89 1.8.4.3