* [drm:drm-next 23/23] drivers/gpu/drm/vgem/vgem_drv.c:198:5: sparse: symbol 'vgem_gem_dumb_map' was not declared. Should it be static?
@ 2015-04-02 2:59 kbuild test robot
2015-04-02 2:59 ` [PATCH drm] drm/vgem: vgem_gem_dumb_map() can be static kbuild test robot
0 siblings, 1 reply; 5+ messages in thread
From: kbuild test robot @ 2015-04-02 2:59 UTC (permalink / raw)
To: Zach Reizner
Cc: Ben Widawsky, linux-kernel, dri-devel, kbuild-all,
Stéphane Marchesin, Dave Airlie
tree: git://people.freedesktop.org/~airlied/linux.git drm-next
head: 502e95c6678505474f1056480310cd9382bacbac
commit: 502e95c6678505474f1056480310cd9382bacbac [23/23] drm/vgem: implement virtual GEM
reproduce:
# apt-get install sparse
git checkout 502e95c6678505474f1056480310cd9382bacbac
make ARCH=x86_64 allmodconfig
make C=1 CF=-D__CHECK_ENDIAN__
sparse warnings: (new ones prefixed by >>)
>> drivers/gpu/drm/vgem/vgem_drv.c:198:5: sparse: symbol 'vgem_gem_dumb_map' was not declared. Should it be static?
>> drivers/gpu/drm/vgem/vgem_drv.c:238:5: sparse: symbol 'vgem_drm_gem_mmap' was not declared. Should it be static?
>> drivers/gpu/drm/vgem/vgem_drv.c:328:19: sparse: symbol 'vgem_device' was not declared. Should it be static?
Please review and possibly fold the followup patch.
---
0-DAY kernel test infrastructure Open Source Technology Center
http://lists.01.org/mailman/listinfo/kbuild Intel Corporation
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH drm] drm/vgem: vgem_gem_dumb_map() can be static 2015-04-02 2:59 [drm:drm-next 23/23] drivers/gpu/drm/vgem/vgem_drv.c:198:5: sparse: symbol 'vgem_gem_dumb_map' was not declared. Should it be static? kbuild test robot @ 2015-04-02 2:59 ` kbuild test robot 2015-04-02 3:04 ` Joe Perches 2015-04-02 23:01 ` Zachary Reizner 0 siblings, 2 replies; 5+ messages in thread From: kbuild test robot @ 2015-04-02 2:59 UTC (permalink / raw) To: Zach Reizner Cc: Ben Widawsky, linux-kernel, dri-devel, kbuild-all, Dave Airlie Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> --- vgem_drv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/vgem/vgem_drv.c b/drivers/gpu/drm/vgem/vgem_drv.c index cb3b435..f7440e8c8 100644 --- a/drivers/gpu/drm/vgem/vgem_drv.c +++ b/drivers/gpu/drm/vgem/vgem_drv.c @@ -195,7 +195,7 @@ static int vgem_gem_dumb_create(struct drm_file *file, struct drm_device *dev, return 0; } -int vgem_gem_dumb_map(struct drm_file *file, struct drm_device *dev, +static int vgem_gem_dumb_map(struct drm_file *file, struct drm_device *dev, uint32_t handle, uint64_t *offset) { int ret = 0; @@ -235,7 +235,7 @@ unlock: return ret; } -int vgem_drm_gem_mmap(struct file *filp, struct vm_area_struct *vma) +static int vgem_drm_gem_mmap(struct file *filp, struct vm_area_struct *vma) { struct drm_file *priv = filp->private_data; struct drm_device *dev = priv->minor->dev; @@ -325,7 +325,7 @@ static struct drm_driver vgem_driver = { .minor = DRIVER_MINOR, }; -struct drm_device *vgem_device; +static struct drm_device *vgem_device; static int __init vgem_init(void) { _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH drm] drm/vgem: vgem_gem_dumb_map() can be static 2015-04-02 2:59 ` [PATCH drm] drm/vgem: vgem_gem_dumb_map() can be static kbuild test robot @ 2015-04-02 3:04 ` Joe Perches 2015-04-02 9:14 ` Fengguang Wu 2015-04-02 23:01 ` Zachary Reizner 1 sibling, 1 reply; 5+ messages in thread From: Joe Perches @ 2015-04-02 3:04 UTC (permalink / raw) To: kbuild test robot Cc: Ben Widawsky, dri-devel, linux-kernel, Zach Reizner, kbuild-all, Dave Airlie On Thu, 2015-04-02 at 10:59 +0800, kbuild test robot wrote: > Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> [] > diff --git a/drivers/gpu/drm/vgem/vgem_drv.c b/drivers/gpu/drm/vgem/vgem_drv.c [] > @@ -195,7 +195,7 @@ static int vgem_gem_dumb_create(struct drm_file *file, struct drm_device *dev, > return 0; > } > > -int vgem_gem_dumb_map(struct drm_file *file, struct drm_device *dev, > +static int vgem_gem_dumb_map(struct drm_file *file, struct drm_device *dev, > uint32_t handle, uint64_t *offset) Hello Fengguang. When you or your robot does these, can you please make sure the entire statement is indented properly? thanks, _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH drm] drm/vgem: vgem_gem_dumb_map() can be static 2015-04-02 3:04 ` Joe Perches @ 2015-04-02 9:14 ` Fengguang Wu 0 siblings, 0 replies; 5+ messages in thread From: Fengguang Wu @ 2015-04-02 9:14 UTC (permalink / raw) To: Joe Perches Cc: Ben Widawsky, dri-devel, linux-kernel, Zach Reizner, kbuild-all, Dave Airlie On Wed, Apr 01, 2015 at 08:04:55PM -0700, Joe Perches wrote: > On Thu, 2015-04-02 at 10:59 +0800, kbuild test robot wrote: > > Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> > [] > > diff --git a/drivers/gpu/drm/vgem/vgem_drv.c b/drivers/gpu/drm/vgem/vgem_drv.c > [] > > @@ -195,7 +195,7 @@ static int vgem_gem_dumb_create(struct drm_file *file, struct drm_device *dev, > > return 0; > > } > > > > -int vgem_gem_dumb_map(struct drm_file *file, struct drm_device *dev, > > +static int vgem_gem_dumb_map(struct drm_file *file, struct drm_device *dev, > > uint32_t handle, uint64_t *offset) > > Hello Fengguang. > > When you or your robot does these, can you please > make sure the entire statement is indented properly? OK, added it to the TODO list. Sorry for the inconvenience! Thanks, Fengguang _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH drm] drm/vgem: vgem_gem_dumb_map() can be static 2015-04-02 2:59 ` [PATCH drm] drm/vgem: vgem_gem_dumb_map() can be static kbuild test robot 2015-04-02 3:04 ` Joe Perches @ 2015-04-02 23:01 ` Zachary Reizner 1 sibling, 0 replies; 5+ messages in thread From: Zachary Reizner @ 2015-04-02 23:01 UTC (permalink / raw) To: kbuild test robot Cc: Ben Widawsky, linux-kernel, dri-devel, kbuild-all, Dave Airlie [-- Attachment #1.1: Type: text/plain, Size: 1423 bytes --] Once the indentation is fixed: Reviewed-by: Zach Reizner <zachr@google.com> On Wed, Apr 1, 2015 at 8:00 PM kbuild test robot <fengguang.wu@intel.com> wrote: > > Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> > --- > vgem_drv.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/vgem/vgem_drv.c b/drivers/gpu/drm/vgem/vgem_ > drv.c > index cb3b435..f7440e8c8 100644 > --- a/drivers/gpu/drm/vgem/vgem_drv.c > +++ b/drivers/gpu/drm/vgem/vgem_drv.c > @@ -195,7 +195,7 @@ static int vgem_gem_dumb_create(struct drm_file *file, > struct drm_device *dev, > return 0; > } > > -int vgem_gem_dumb_map(struct drm_file *file, struct drm_device *dev, > +static int vgem_gem_dumb_map(struct drm_file *file, struct drm_device > *dev, > uint32_t handle, uint64_t *offset) > { > int ret = 0; > @@ -235,7 +235,7 @@ unlock: > return ret; > } > > -int vgem_drm_gem_mmap(struct file *filp, struct vm_area_struct *vma) > +static int vgem_drm_gem_mmap(struct file *filp, struct vm_area_struct > *vma) > { > struct drm_file *priv = filp->private_data; > struct drm_device *dev = priv->minor->dev; > @@ -325,7 +325,7 @@ static struct drm_driver vgem_driver = { > .minor = DRIVER_MINOR, > }; > > -struct drm_device *vgem_device; > +static struct drm_device *vgem_device; > > static int __init vgem_init(void) > { > [-- Attachment #1.2: Type: text/html, Size: 2122 bytes --] [-- Attachment #2: Type: text/plain, Size: 159 bytes --] _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-04-02 23:01 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-04-02 2:59 [drm:drm-next 23/23] drivers/gpu/drm/vgem/vgem_drv.c:198:5: sparse: symbol 'vgem_gem_dumb_map' was not declared. Should it be static? kbuild test robot 2015-04-02 2:59 ` [PATCH drm] drm/vgem: vgem_gem_dumb_map() can be static kbuild test robot 2015-04-02 3:04 ` Joe Perches 2015-04-02 9:14 ` Fengguang Wu 2015-04-02 23:01 ` Zachary Reizner
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox