[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xen: credit2: cleanup patch for type betterness
commit e7998ad2f2ea96465ea481b8a023c90b41b59ca1 Author: Praveen Kumar <kpraveen.lkml@xxxxxxxxx> AuthorDate: Tue Apr 11 23:38:42 2017 +0530 Commit: George Dunlap <george.dunlap@xxxxxxxxxx> CommitDate: Thu Apr 13 15:06:00 2017 +0100 xen: credit2: cleanup patch for type betterness The patch actually doesn't impact the functionality as such. This only replaces bool_t with bool in credit2. Signed-off-by: Praveen Kumar <kpraveen.lkml@xxxxxxxxx> Reviewed-by: George Dunlap <george.dunlap@xxxxxxxxxx> Release-acked-by: Julien Grall <julien.grall@xxxxxxx> --- xen/common/sched_credit2.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/xen/common/sched_credit2.c b/xen/common/sched_credit2.c index a76bedb..126417c 100644 --- a/xen/common/sched_credit2.c +++ b/xen/common/sched_credit2.c @@ -635,17 +635,17 @@ static void deactivate_runqueue(struct csched2_private *prv, int rqi) __cpumask_clear_cpu(rqi, &prv->active_queues); } -static inline bool_t same_node(unsigned int cpua, unsigned int cpub) +static inline bool same_node(unsigned int cpua, unsigned int cpub) { return cpu_to_node(cpua) == cpu_to_node(cpub); } -static inline bool_t same_socket(unsigned int cpua, unsigned int cpub) +static inline bool same_socket(unsigned int cpua, unsigned int cpub) { return cpu_to_socket(cpua) == cpu_to_socket(cpub); } -static inline bool_t same_core(unsigned int cpua, unsigned int cpub) +static inline bool same_core(unsigned int cpua, unsigned int cpub) { return same_socket(cpua, cpub) && cpu_to_core(cpua) == cpu_to_core(cpub); @@ -1882,7 +1882,7 @@ static void migrate(const struct scheduler *ops, * - svc is not already flagged to migrate, * - if svc is allowed to run on at least one of the pcpus of rqd. */ -static bool_t vcpu_is_migrateable(struct csched2_vcpu *svc, +static bool vcpu_is_migrateable(struct csched2_vcpu *svc, struct csched2_runqueue_data *rqd) { struct vcpu *v = svc->vcpu; @@ -1900,7 +1900,7 @@ static void balance_load(const struct scheduler *ops, int cpu, s_time_t now) struct csched2_private *prv = csched2_priv(ops); int i, max_delta_rqi = -1; struct list_head *push_iter, *pull_iter; - bool_t inner_load_updated = 0; + bool inner_load_updated = 0; balance_state_t st = { .best_push_svc = NULL, .best_pull_svc = NULL }; @@ -2584,7 +2584,7 @@ runq_candidate(struct csched2_runqueue_data *rqd, */ static struct task_slice csched2_schedule( - const struct scheduler *ops, s_time_t now, bool_t tasklet_work_scheduled) + const struct scheduler *ops, s_time_t now, bool tasklet_work_scheduled) { const int cpu = smp_processor_id(); struct csched2_runqueue_data *rqd; @@ -2592,7 +2592,7 @@ csched2_schedule( struct csched2_vcpu *snext = NULL; unsigned int skipped_vcpus = 0; struct task_slice ret; - bool_t tickled; + bool tickled; SCHED_STAT_CRANK(schedule); CSCHED2_VCPU_CHECK(current); -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |