[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH 2/2] xen/xsm: Add new SILO mode for XSM
> -----Original Message----- > From: Jan Beulich [mailto:JBeulich@xxxxxxxx] > Sent: Tuesday, July 3, 2018 6:16 PM > To: Xin Li (Talons) <xin.li@xxxxxxxxxx>; Xin Li <talons.lee@xxxxxxxxx> > Cc: Andrew Cooper <Andrew.Cooper3@xxxxxxxxxx>; George Dunlap > <George.Dunlap@xxxxxxxxxx>; Ming Lu <ming.lu@xxxxxxxxxx>; Sergey Dyasli > <sergey.dyasli@xxxxxxxxxx>; Wei Liu <wei.liu2@xxxxxxxxxx>; Stefano Stabellini > <sstabellini@xxxxxxxxxx>; xen-devel@xxxxxxxxxxxxx; Konrad Rzeszutek Wilk > <konrad.wilk@xxxxxxxxxx>; Daniel de Graaf <dgdegra@xxxxxxxxxxxxx>; Tim > (Xen.org) <tim@xxxxxxx> > Subject: RE: [PATCH 2/2] xen/xsm: Add new SILO mode for XSM > > >>> On 03.07.18 at 11:07, <xin.li@xxxxxxxxxx> wrote: > >> From: Jan Beulich [mailto:JBeulich@xxxxxxxx] > >> Sent: Tuesday, July 3, 2018 3:34 PM > >> >>> On 03.07.18 at 03:26, <talons.lee@xxxxxxxxx> wrote: > >> > + return (is_control_domain(cur_dom) || is_control_domain(ldom) || > >> > + is_control_domain(rdom) || ldom == rdom); } > >> > + > >> > +static int silo_evtchn_unbound(struct domain *d1, struct evtchn *chn, > >> > + domid_t id2) { > >> > + int rc = -EPERM; > >> > + struct domain *d2 = rcu_lock_domain_by_id(id2); > >> > + if ( d2 != NULL && silo_mode_dom_check(d1, d2) ) > >> > >> Blank line please between declaration(s) and statement(s). And const > >> on the local variable declaration again. > >> > >> Also, is DOMID_SELF really not allowed here for id2? I don't think > >> so, looking at e.g. evtchn_alloc_unbound(). > > > > static int silo_evtchn_unbound(struct domain *d1, struct evtchn *chn, > > domid_t id2) > > { > > int rc = -EPERM; > > struct domain *d2; > > > > if ( id2 == DOMID_SELF ) > > id2 = current->domain->domain_id; > > d2 = rcu_lock_domain_by_id(id2); > > No - simply call rcu_lock_domain_by_any_id(). Sure. + int rc = -EPERM; + struct domain *d2 = rcu_lock_domain_by_any_id(id2); + + if ( d2 != NULL && silo_mode_dom_check(d1, d2) ) > > Jan > _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |