From: Ulrich Drepper Date: Sat, 7 Feb 2009 19:44:02 +0000 (+0000) Subject: * sunrpc/rpc_common.c: We cannot move _null_auth into .rodata that X-Git-Tag: cvs/fedora-glibc-20090218T1534~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7dddb4bd1e22d8aa3cb2af9f5116ceec394d2d44;p=platform%2Fupstream%2Fglibc.git * sunrpc/rpc_common.c: We cannot move _null_auth into .rodata that easily. --- diff --git a/ChangeLog b/ChangeLog index a56b396..82bfe92 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2009-02-07 Ulrich Drepper + * sunrpc/rpc_common.c: We cannot move _null_auth into .rodata that + easily. + * malloc/malloc.c: Add branch prediction for use of the hooks. * grp/compat-initgroups.c [NOT_IN_libc] (__libc_use_alloca): Define. diff --git a/sunrpc/rpc_common.c b/sunrpc/rpc_common.c index f7ad961..3fb0bda 100644 --- a/sunrpc/rpc_common.c +++ b/sunrpc/rpc_common.c @@ -42,7 +42,7 @@ /* We are very tricky here. We want to have _null_auth in a read-only section but we cannot add const to the type because this isn't how the variable is declared. So we use the section attribute. */ -struct opaque_auth _null_auth __attribute__ ((nocommon, section (".rodata"))); +struct opaque_auth _null_auth __attribute__ ((nocommon)); libc_hidden_def (_null_auth) fd_set svc_fdset; struct rpc_createerr rpc_createerr;