Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Dec 2021 22:37:20 GMT
From:      =?utf-8?Q?Stefan E=C3=9Fer?= <se@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: e9aeb50797fc - main - sys/_bitset.h: revert commit 74e014dbfab
Message-ID:  <202112072237.1B7MbK6E095956@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by se:

URL: https://cgit.FreeBSD.org/src/commit/?id=e9aeb50797fcaab1829ea626c1efd75de203a410

commit e9aeb50797fcaab1829ea626c1efd75de203a410
Author:     Stefan Eßer <se@FreeBSD.org>
AuthorDate: 2021-12-07 22:34:33 +0000
Commit:     Stefan Eßer <se@FreeBSD.org>
CommitDate: 2021-12-07 22:34:33 +0000

    sys/_bitset.h: revert commit 74e014dbfab
    
    It caused kernel build for PowerPC64 to fail.
    
    A different patch is being tested with make universe to make sure it
    works on all architectures.
    
    MFC after:      1 month<N [day[s]|week[s]|month[s]].  Request a reminder email>
---
 sys/sys/_bitset.h | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sys/sys/_bitset.h b/sys/sys/_bitset.h
index 8ce63233389a..1c167daf3f09 100644
--- a/sys/sys/_bitset.h
+++ b/sys/sys/_bitset.h
@@ -61,13 +61,11 @@ struct _t {								\
  * Define a default type that can be used while manually specifying size
  * to every call.
  */
-__BITSET_DEFINE(__bitset, 1);
+__BITSET_DEFINE(bitset, 1);
 
 #if defined(_KERNEL) || defined(_WANT_FREEBSD_BITSET)
 #define	BITSET_DEFINE(_t, _s)	__BITSET_DEFINE(_t, _s)
 #define	BITSET_DEFINE_VAR(_t)	__BITSET_DEFINE_VAR(_t)
-
-#define	bitset			__bitset
 #endif
 
 #endif /* !_SYS__BITSET_H_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202112072237.1B7MbK6E095956>