public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
From: Sebastian Huber <sh@sourceware.org>
To: newlib-cvs@sourceware.org
Subject: [newlib-cygwin] Implement several enhancements to NUMA policies.
Date: Fri, 24 Aug 2018 13:11:00 -0000	[thread overview]
Message-ID: <20180824131110.23429.qmail@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=c0f64943e7022ca10e7ca9980a6f328a05f9fc38

commit c0f64943e7022ca10e7ca9980a6f328a05f9fc38
Author: jeff <jeff@FreeBSD.org>
Date:   Thu Mar 29 02:54:50 2018 +0000

    Implement several enhancements to NUMA policies.
    
    Add a new "interleave" allocation policy which stripes pages across
    domains with a stride or width keeping contiguity within a multi-page
    region.
    
    Move the kernel to the dedicated numbered cpuset #2 making it possible
    to assign kernel threads and memory policy separately from user.  This
    also eliminates the need for the complicated interrupt binding code.
    
    Add a sysctl API for viewing and manipulating domainsets.  Refactor some
    of the cpuset_t manipulation code using the generic bitset type so that
    it can be used for both.  This probably belongs in a dedicated subr file.
    
    Attempt to improve the include situation.
    
    Reviewed by:	kib
    Discussed with:	jhb (cpuset parts)
    Tested by:	pho (before review feedback)
    Sponsored by:	Netflix, Dell/EMC Isilon
    Differential Revision:	https://reviews.freebsd.org/D14839

Diff:
---
 newlib/libc/sys/rtems/include/sys/_bitset.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/newlib/libc/sys/rtems/include/sys/_bitset.h b/newlib/libc/sys/rtems/include/sys/_bitset.h
index df8dcab..bf3f1be 100644
--- a/newlib/libc/sys/rtems/include/sys/_bitset.h
+++ b/newlib/libc/sys/rtems/include/sys/_bitset.h
@@ -57,4 +57,10 @@ struct t {								\
  */
 #define BITSET_DEFINE_VAR(t)	BITSET_DEFINE(t, 1)
 
+/*
+ * Define a default type that can be used while manually specifying size
+ * to every call.
+ */
+BITSET_DEFINE(bitset, 1);
+
 #endif /* !_SYS__BITSET_H_ */


                 reply	other threads:[~2018-08-24 13:11 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180824131110.23429.qmail@sourceware.org \
    --to=sh@sourceware.org \
    --cc=newlib-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).