Re: [PATCH v2] exec: don't use void* in pointer arithmetic in headers

2024-06-26 Thread Roman Kiryanov
On Thu, Jun 20, 2024 at 11:42 PM Philippe Mathieu-Daudé wrote: > > Hi Roman, > > On 20/6/24 22:16, Roman Kiryanov wrote: > > Google-Bug-Id: 331190993 > > Again [*] I'm trying to figure what this tag is, no hit on > https://issuetracker.google.com/issues?q=id:331190993; is > this useful to commit

Re: [PATCH v2] exec: don't use void* in pointer arithmetic in headers

2024-06-21 Thread Paolo Bonzini
On 6/20/24 22:16, Roman Kiryanov wrote: void* pointer arithmetic is a GCC extentension which could not be available in other build tools (e.g. C++). This changes removes this assumption. Google-Bug-Id: 331190993 Change-Id: I5a064853429f627c17a9213910811dea4ced6174 Signed-off-by: Roman Kiryanov

Re: [PATCH v2] exec: don't use void* in pointer arithmetic in headers

2024-06-21 Thread Philippe Mathieu-Daudé
Hi Roman, On 20/6/24 22:16, Roman Kiryanov wrote: void* pointer arithmetic is a GCC extentension which could not be available in other build tools (e.g. C++). This changes removes this assumption. Google-Bug-Id: 331190993 Again [*] I'm trying to figure what this tag is, no hit on

[PATCH v2] exec: don't use void* in pointer arithmetic in headers

2024-06-20 Thread Roman Kiryanov
void* pointer arithmetic is a GCC extentension which could not be available in other build tools (e.g. C++). This changes removes this assumption. Google-Bug-Id: 331190993 Change-Id: I5a064853429f627c17a9213910811dea4ced6174 Signed-off-by: Roman Kiryanov --- v2: renamed from "use char* for