All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrew Cooper <andrew.cooper3@citrix.com>
To: David Vrabel <david.vrabel@citrix.com>, xen-devel@lists.xenproject.org
Cc: Tim Deegan <tim@xen.org>, Keir Fraser <keir@xen.org>,
	Ian Campbell <ian.campbell@citrix.com>,
	Jan Beulich <jbeulich@suse.com>
Subject: Re: [PATCHv1 3/6] evtchn: simplify port_is_valid()
Date: Tue, 9 Jun 2015 16:08:54 +0100	[thread overview]
Message-ID: <55770186.4070603@citrix.com> (raw)
In-Reply-To: <1433861999-15771-4-git-send-email-david.vrabel@citrix.com>

On 09/06/15 15:59, David Vrabel wrote:
> By keeping a count of the number of currently valid event channels,
> port_is_valid() can be simplified.
>
> d->valid_evtchns can also be tested without holding d->event_lock which
> will be useful later on.
>
> Signed-off-by: David Vrabel <david.vrabel@citrix.com>
> ---
>  xen/common/event_channel.c |    3 +++
>  xen/include/xen/event.h    |    4 +---
>  xen/include/xen/sched.h    |    5 +++--
>  3 files changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/xen/common/event_channel.c b/xen/common/event_channel.c
> index e4ade17..482c3ac 100644
> --- a/xen/common/event_channel.c
> +++ b/xen/common/event_channel.c
> @@ -189,6 +189,8 @@ static int get_free_port(struct domain *d)
>          return -ENOMEM;
>      bucket_from_port(d, port) = chn;
>  
> +    atomic_add(EVTCHNS_PER_BUCKET, &d->valid_evtchns);
> +
>      return port;
>  }
>  
> @@ -1254,6 +1256,7 @@ int evtchn_init(struct domain *d)
>      d->evtchn = alloc_evtchn_bucket(d, 0);
>      if ( !d->evtchn )
>          return -ENOMEM;
> +    atomic_set(&d->valid_evtchns, EVTCHNS_PER_BUCKET);
>  
>      spin_lock_init_prof(d, event_lock);
>      if ( get_free_port(d) != 0 )
> diff --git a/xen/include/xen/event.h b/xen/include/xen/event.h
> index 690f865..77b4d31 100644
> --- a/xen/include/xen/event.h
> +++ b/xen/include/xen/event.h
> @@ -91,9 +91,7 @@ static inline bool_t port_is_valid(struct domain *d, unsigned int p)
>          return 0;
>      if ( !d->evtchn )
>          return 0;
> -    if ( p < EVTCHNS_PER_BUCKET )
> -        return 1;
> -    return group_from_port(d, p) != NULL && bucket_from_port(d, p) != NULL;
> +    return p < atomic_read(&d->valid_evtchns);
>  }
>  
>  static inline struct evtchn *evtchn_from_port(struct domain *d, unsigned int p)
> diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h
> index 80c6f62..fab2e08 100644
> --- a/xen/include/xen/sched.h
> +++ b/xen/include/xen/sched.h
> @@ -336,8 +336,9 @@ struct domain
>      /* Event channel information. */
>      struct evtchn   *evtchn;                         /* first bucket only */
>      struct evtchn  **evtchn_group[NR_EVTCHN_GROUPS]; /* all other buckets */
> -    unsigned int     max_evtchns;
> -    unsigned int     max_evtchn_port;
> +    unsigned int     max_evtchns;     /* number supported by ABI */
> +    unsigned int     max_evtchn_port; /* max permitted port number */
> +    atomic_t         valid_evtchns;   /* number of allocated event channels */

atomic_t contains a signed integer.  You probably want a BUILD_BUG_ON()
if any ABI maximum value exceeds INT_MAX.

~Andrew

>      spinlock_t       event_lock;
>      const struct evtchn_port_ops *evtchn_port_ops;
>      struct evtchn_fifo_domain *evtchn_fifo;

  reply	other threads:[~2015-06-09 15:10 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-09 14:59 [PATCHv1 0/6] evtchn: Improve scalebility David Vrabel
2015-06-09 14:59 ` [PATCHv1 1/6] evtchn: profile event channel lock David Vrabel
2015-06-09 14:59 ` [PATCHv1 2/6] evtchn: factor out freeing an event channel David Vrabel
2015-06-09 14:59 ` [PATCHv1 3/6] evtchn: simplify port_is_valid() David Vrabel
2015-06-09 15:08   ` Andrew Cooper [this message]
2015-06-09 15:16     ` David Vrabel
2015-06-09 14:59 ` [PATCHv1 4/6] evtchn: use a per-event channel lock for sending events David Vrabel
2015-06-09 15:17   ` Andrew Cooper
2015-06-10  8:59     ` Jan Beulich
2015-06-09 14:59 ` [PATCHv1 5/6] evtchn: remove the locking when unmasking an event channel David Vrabel
2015-06-09 14:59 ` [PATCHv1 6/6] evtchn: pad struct evtchn to 64 bytes David Vrabel
2015-06-10  9:04   ` Jan Beulich

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=55770186.4070603@citrix.com \
    --to=andrew.cooper3@citrix.com \
    --cc=david.vrabel@citrix.com \
    --cc=ian.campbell@citrix.com \
    --cc=jbeulich@suse.com \
    --cc=keir@xen.org \
    --cc=tim@xen.org \
    --cc=xen-devel@lists.xenproject.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.