From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH v2 1/7] libxl: get rid of the SEDF scheduler Date: Fri, 3 Jul 2015 15:23:02 +0100 Message-ID: <1435933382.9447.127.camel@citrix.com> References: <20150703101558.5144.46511.stgit@Solace.station> <20150703102438.5144.35293.stgit@Solace.station> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZB1rv-0000z2-66 for xen-devel@lists.xenproject.org; Fri, 03 Jul 2015 14:23:07 +0000 In-Reply-To: <20150703102438.5144.35293.stgit@Solace.station> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Dario Faggioli Cc: George Dunlap , xen-devel@lists.xenproject.org, Ian Jackson , Wei Liu , Stefano Stabellini List-Id: xen-devel@lists.xenproject.org On Fri, 2015-07-03 at 12:24 +0200, Dario Faggioli wrote: > @@ -5932,7 +5865,8 @@ int libxl_domain_sched_params_set(libxl_ctx *ctx, uint32_t domid, > > switch (sched) { > case LIBXL_SCHEDULER_SEDF: > - ret=sched_sedf_domain_set(gc, domid, scinfo); > + LOG(ERROR, "SEDF scheduler no longer available"); > + ret=ERROR_INVAL; Should we have a specific error code for removed functionality? Ian.