Re: [Xen-devel] [PATCH] blktap2: use abort() instead of custom crash

2016-04-26 Thread Wei Liu
On Tue, Apr 26, 2016 at 08:04:46AM -0500, Doug Goldstein wrote: > Instead of trying to write a snippet of code that crashes the process > just use abort() directly. This is to fix the build on clang which > detects that the snippet of code will crash and fails to compile. At > the same time removed

Re: [Xen-devel] [PATCH] blktap2: use abort() instead of custom crash

2016-04-26 Thread Andrew Cooper
On 26/04/16 14:04, Doug Goldstein wrote: > Instead of trying to write a snippet of code that crashes the process > just use abort() directly. This is to fix the build on clang which > detects that the snippet of code will crash and fails to compile. At > the same time removed extraneous whitespace

[Xen-devel] [PATCH] blktap2: use abort() instead of custom crash

2016-04-26 Thread Doug Goldstein
Instead of trying to write a snippet of code that crashes the process just use abort() directly. This is to fix the build on clang which detects that the snippet of code will crash and fails to compile. At the same time removed extraneous whitespace in the macro. Signed-off-by: Doug Goldstein ---