From: Stefan Wahren Date: Sat, 28 Apr 2018 15:47:43 +0000 (+0200) Subject: staging: vchiq_arm: Rework second abort criterion X-Git-Tag: v4.19~841^2~327 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b134c5d7e60b4b9e6fbcd5f6d4cba5b6da4a189;p=platform%2Fkernel%2Flinux-rpi3.git staging: vchiq_arm: Rework second abort criterion In order to make the code easier to review, move the second abort criterion into the loop and the incrementation into a separate line. Signed-off-by: Stefan Wahren Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c index d46a5b8..01fcd15 100644 --- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c +++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c @@ -3455,7 +3455,7 @@ vchiq_dump_service_use_state(VCHIQ_STATE_T *state) if (active_services > MAX_SERVICES) only_nonzero = 1; - for (i = 0; (i < active_services) && (j < MAX_SERVICES); i++) { + for (i = 0; i < active_services; i++) { VCHIQ_SERVICE_T *service_ptr = state->services[i]; if (!service_ptr) @@ -3469,7 +3469,10 @@ vchiq_dump_service_use_state(VCHIQ_STATE_T *state) service_data[j].fourcc = service_ptr->base.fourcc; service_data[j].clientid = service_ptr->client_id; - service_data[j++].use_count = service_ptr->service_use_count; + service_data[j].use_count = service_ptr->service_use_count; + j++; + if (j >= MAX_SERVICES) + break; } read_unlock_bh(&arm_state->susp_res_lock);