Re: [PATCH] drm/i915: Uninitialized variable in i915_gem_object_map_page()

2020-09-24 Thread Stephen Rothwell
Hi Dan, On Thu, 24 Sep 2020 11:18:30 +0300 Dan Carpenter wrote: > > The "i" iterator is never set to zero. This probably doesn't affect > testing because GCC sometimes initializes variables and also we have a > new pluggin to initialize stack variables to zero. > > Fixes: 7edd32a9e614

Re: [PATCH] drm/i915: Uninitialized variable in i915_gem_object_map_page()

2020-09-24 Thread Christoph Hellwig
On Thu, Sep 24, 2020 at 11:18:30AM +0300, Dan Carpenter wrote: > The "i" iterator is never set to zero. This probably doesn't affect > testing because GCC sometimes initializes variables and also we have a > new pluggin to initialize stack variables to zero. > > Fixes: 7edd32a9e614 ("drm/i915:

[PATCH] drm/i915: Uninitialized variable in i915_gem_object_map_page()

2020-09-24 Thread Dan Carpenter
The "i" iterator is never set to zero. This probably doesn't affect testing because GCC sometimes initializes variables and also we have a new pluggin to initialize stack variables to zero. Fixes: 7edd32a9e614 ("drm/i915: use vmap in i915_gem_object_map") Signed-off-by: Dan Carpenter --- Hi