[PATCH] drm: Simplify GETRESOURCES ioctl

Chris Wilson chris at chris-wilson.co.uk
Sun Dec 11 15:02:09 UTC 2016


On Sun, Dec 11, 2016 at 01:39:15PM +0100, Daniel Vetter wrote:
> +	count = 0;
> +	fb_id = u64_to_user_ptr(card_res->fb_id_ptr);
> +	list_for_each_entry(fb, &file_priv->fbs, filp_head) {
> +		count++;
> +		if (count > card_res->count_fbs)
> +			continue;
> +
> +		if (put_user(fb->base.id, fb_id + count)) {

On the first iteration what is the value of count here?
What should it be?
-Chris

-- 
Chris Wilson, Intel Open Source Technology Centre


More information about the dri-devel mailing list