Re: [Xen-devel] [PATCH] vtpmmgr: make inline functions static

2017-08-09 Thread Wei Liu
On Tue, Aug 01, 2017 at 05:13:21PM +0200, Olaf Hering wrote: > Ping Acked-by: Wei Liu I'm going to do a build test with gcc7 and push this patch. ___ Xen-devel mailing list Xen-devel@lists.xen.org https://lists.xen.org/xen-devel

Re: [Xen-devel] [PATCH] vtpmmgr: make inline functions static

2017-08-01 Thread Olaf Hering
Ping On Fri, Jun 23, Olaf Hering wrote: > gcc7 is more strict with functions marked as inline. They are not > automatically inlined. Instead a function call is generated, but the > actual code is not visible by the linker. > > Do a mechanical change and mark every 'inline' as 'static inline'.

[Xen-devel] [PATCH] vtpmmgr: make inline functions static

2017-06-23 Thread Olaf Hering
gcc7 is more strict with functions marked as inline. They are not automatically inlined. Instead a function call is generated, but the actual code is not visible by the linker. Do a mechanical change and mark every 'inline' as 'static inline'. For simpler review the static goes into an extra