diff options
author | Wilco Dijkstra <wdijkstr@arm.com> | 2017-06-12 14:56:53 +0100 |
---|---|---|
committer | Wilco Dijkstra <wdijkstr@arm.com> | 2017-06-12 14:56:53 +0100 |
commit | d99431e519fdeb16edb1222b77430ac9853a2334 (patch) | |
tree | 25fd7c2817fa801a8228a5936f150faada6802e8 /sunrpc | |
parent | b05eca0e1d96aecb25516287913c54bbb93d3d92 (diff) | |
download | glibc-d99431e519fdeb16edb1222b77430ac9853a2334.tar.gz |
Replace all internal uses of __bzero with memset. This removes the need
to redirect it to a builtin and means memset is inlined whenever possible,
including with -Os.
* sunrpc/bindrsvprt.c (bindresvport): Change __bzero to memset.
* sunrpc/clnt_gen.c (clnt_create): Likewise.
* sunrpc/des_impl.c (_des_crypt): Likewise.
* sunrpc/key_call.c (key_gendes): Likewise.
* sunrpc/pmap_rmt.c (clnt_broadcast): Likewise.
* sunrpc/svc_simple.c (universal): Likewise.
* sunrpc/svc_tcp.c (svctcp_create): Likewise.
* sunrpc/svc_udp.c (svcudp_bufcreate): Likewise.
* sysdeps/arm/aeabi_memclr.c (__aeabi_memclr): Likewise.
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/bindrsvprt.c | 2 | ||||
-rw-r--r-- | sunrpc/clnt_gen.c | 2 | ||||
-rw-r--r-- | sunrpc/des_impl.c | 2 | ||||
-rw-r--r-- | sunrpc/key_call.c | 2 | ||||
-rw-r--r-- | sunrpc/pmap_rmt.c | 2 | ||||
-rw-r--r-- | sunrpc/svc_simple.c | 2 | ||||
-rw-r--r-- | sunrpc/svc_tcp.c | 2 | ||||
-rw-r--r-- | sunrpc/svc_udp.c | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/sunrpc/bindrsvprt.c b/sunrpc/bindrsvprt.c index 13bcb27d4d..da33c05101 100644 --- a/sunrpc/bindrsvprt.c +++ b/sunrpc/bindrsvprt.c @@ -61,7 +61,7 @@ bindresvport (int sd, struct sockaddr_in *sin) if (sin == (struct sockaddr_in *) 0) { sin = &myaddr; - __bzero (sin, sizeof (*sin)); + memset (sin, 0, sizeof (*sin)); sin->sin_family = AF_INET; } else if (sin->sin_family != AF_INET) diff --git a/sunrpc/clnt_gen.c b/sunrpc/clnt_gen.c index 542f85dd35..13ced8994e 100644 --- a/sunrpc/clnt_gen.c +++ b/sunrpc/clnt_gen.c @@ -57,7 +57,7 @@ clnt_create (const char *hostname, u_long prog, u_long vers, if (strcmp (proto, "unix") == 0) { - __bzero ((char *)&sun, sizeof (sun)); + memset ((char *)&sun, 0, sizeof (sun)); sun.sun_family = AF_UNIX; strcpy (sun.sun_path, hostname); sock = RPC_ANYSOCK; diff --git a/sunrpc/des_impl.c b/sunrpc/des_impl.c index 1757dc1fb2..da0b8cee15 100644 --- a/sunrpc/des_impl.c +++ b/sunrpc/des_impl.c @@ -590,7 +590,7 @@ _des_crypt (char *buf, unsigned len, struct desparams *desp) } tin0 = tin1 = tout0 = tout1 = xor0 = xor1 = 0; tbuf[0] = tbuf[1] = 0; - __bzero (schedule, sizeof (schedule)); + memset (schedule, 0, sizeof (schedule)); return (1); } diff --git a/sunrpc/key_call.c b/sunrpc/key_call.c index b871c04648..4bd3d31b19 100644 --- a/sunrpc/key_call.c +++ b/sunrpc/key_call.c @@ -219,7 +219,7 @@ key_gendes (des_block *key) sin.sin_family = AF_INET; sin.sin_port = 0; sin.sin_addr.s_addr = htonl (INADDR_LOOPBACK); - __bzero (sin.sin_zero, sizeof (sin.sin_zero)); + memset (sin.sin_zero, 0, sizeof (sin.sin_zero)); socket = RPC_ANYSOCK; client = clntudp_bufcreate (&sin, (u_long) KEY_PROG, (u_long) KEY_VERS, trytimeout, &socket, RPCSMALLMSGSIZE, diff --git a/sunrpc/pmap_rmt.c b/sunrpc/pmap_rmt.c index c036d889ef..6d4ed7206c 100644 --- a/sunrpc/pmap_rmt.c +++ b/sunrpc/pmap_rmt.c @@ -257,7 +257,7 @@ clnt_broadcast (/* program number */ fd.fd = sock; fd.events = POLLIN; nets = getbroadcastnets (addrs, sizeof (addrs) / sizeof (addrs[0])); - __bzero ((char *) &baddr, sizeof (baddr)); + memset ((char *) &baddr, 0, sizeof (baddr)); baddr.sin_family = AF_INET; baddr.sin_port = htons (PMAPPORT); baddr.sin_addr.s_addr = htonl (INADDR_ANY); diff --git a/sunrpc/svc_simple.c b/sunrpc/svc_simple.c index acc9b9db14..f12ed31441 100644 --- a/sunrpc/svc_simple.c +++ b/sunrpc/svc_simple.c @@ -154,7 +154,7 @@ universal (struct svc_req *rqstp, SVCXPRT *transp_l) if (pl->p_prognum == prog && pl->p_procnum == proc) { /* decode arguments into a CLEAN buffer */ - __bzero (xdrbuf, sizeof (xdrbuf)); /* required ! */ + memset (xdrbuf, 0, sizeof (xdrbuf)); /* required ! */ if (!svc_getargs (transp_l, pl->p_inproc, xdrbuf)) { svcerr_decode (transp_l); diff --git a/sunrpc/svc_tcp.c b/sunrpc/svc_tcp.c index fd9c1e83ca..de2d6a9855 100644 --- a/sunrpc/svc_tcp.c +++ b/sunrpc/svc_tcp.c @@ -167,7 +167,7 @@ svctcp_create (int sock, u_int sendsize, u_int recvsize) } madesock = TRUE; } - __bzero ((char *) &addr, sizeof (addr)); + memset ((char *) &addr, 0, sizeof (addr)); addr.sin_family = AF_INET; if (bindresvport (sock, &addr)) { diff --git a/sunrpc/svc_udp.c b/sunrpc/svc_udp.c index 1592bcca9e..54ec331e1b 100644 --- a/sunrpc/svc_udp.c +++ b/sunrpc/svc_udp.c @@ -138,7 +138,7 @@ svcudp_bufcreate (int sock, u_int sendsz, u_int recvsz) } madesock = TRUE; } - __bzero ((char *) &addr, sizeof (addr)); + memset ((char *) &addr, 0, sizeof (addr)); addr.sin_family = AF_INET; if (bindresvport (sock, &addr)) { |