Re: [Xen-devel] [PATCH] xen: xlate_mmu: add missing header to fix 'W=1' warning

2018-11-29 Thread Juergen Gross
On 27/11/2018 15:23, Srikanth Boddepalli wrote: > Add a missing header otherwise compiler warns about missed prototype: > > drivers/xen/xlate_mmu.c:183:5: warning: no previous prototype for > 'xen_xlate_unmap_gfn_range?' [-Wmissing-prototypes] > int xen_xlate_unmap_gfn_range(struct

Re: [Xen-devel] [PATCH] xen: xlate_mmu: add missing header to fix 'W=1' warning

2018-11-28 Thread Joey Pabalinas
On Tue, Nov 27, 2018 at 07:53:27PM +0530, Srikanth Boddepalli wrote: > Add a missing header otherwise compiler warns about missed prototype: > > drivers/xen/xlate_mmu.c:183:5: warning: no previous prototype for > 'xen_xlate_unmap_gfn_range?' [-Wmissing-prototypes] > int

Re: [Xen-devel] [PATCH] xen: xlate_mmu: add missing header to fix 'W=1' warning

2018-11-28 Thread Boris Ostrovsky
On 11/27/18 9:23 AM, Srikanth Boddepalli wrote: > Add a missing header otherwise compiler warns about missed prototype: > > drivers/xen/xlate_mmu.c:183:5: warning: no previous prototype for > 'xen_xlate_unmap_gfn_range?' [-Wmissing-prototypes] > int xen_xlate_unmap_gfn_range(struct

[Xen-devel] [PATCH] xen: xlate_mmu: add missing header to fix 'W=1' warning

2018-11-27 Thread Srikanth Boddepalli
Add a missing header otherwise compiler warns about missed prototype: drivers/xen/xlate_mmu.c:183:5: warning: no previous prototype for 'xen_xlate_unmap_gfn_range?' [-Wmissing-prototypes] int xen_xlate_unmap_gfn_range(struct vm_area_struct *vma, ^ Signed-off-by: