From owner-dev-commits-src-all@freebsd.org Mon Aug 23 18:38:17 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 9323E66FE48; Mon, 23 Aug 2021 18:38:17 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Gtgwm5k26z4tyb; Mon, 23 Aug 2021 18:38:16 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9384319594; Mon, 23 Aug 2021 18:38:16 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 17NIcGwH006093; Mon, 23 Aug 2021 18:38:16 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 17NIcGft006092; Mon, 23 Aug 2021 18:38:16 GMT (envelope-from git) Date: Mon, 23 Aug 2021 18:38:16 GMT Message-Id: <202108231838.17NIcGft006092@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Mateusz Guzik Subject: git: a4c33d65f2f3 - main - mips: retire bzero MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: mjg X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: a4c33d65f2f3d0f16e5824b320e226b0c9ba31af Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2021 18:38:18 -0000 The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=a4c33d65f2f3d0f16e5824b320e226b0c9ba31af commit a4c33d65f2f3d0f16e5824b320e226b0c9ba31af Author: Mateusz Guzik AuthorDate: 2021-08-23 16:26:02 +0000 Commit: Mateusz Guzik CommitDate: 2021-08-23 18:38:05 +0000 mips: retire bzero Unused since ba96f37758412151 ("Use __builtin for various mem* and b* (e.g. bzero) routines.") Sponsored by: Rubicon Communications, LLC ("Netgate") --- sys/mips/mips/support.S | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sys/mips/mips/support.S b/sys/mips/mips/support.S index 4cf1f750fdad..9fd5b919d89e 100644 --- a/sys/mips/mips/support.S +++ b/sys/mips/mips/support.S @@ -440,10 +440,9 @@ memsetsmallclr: END(memset) /* - * bzero(s1, n) + * blkclr(s1, n) */ -LEAF(bzero) -XLEAF(blkclr) +LEAF(blkclr) .set noreorder blt a1, 12, smallclr # small amount to clear? PTR_SUBU a3, zero, a0 # compute # bytes to word align address @@ -471,7 +470,7 @@ smallclr: 2: j ra nop -END(bzero) +END(blkclr) /* * bit = ffs(value)