Staging: hv: check return value of osd_PageAlloc()
The return value of osd_PageAlloc() was checked using an ASSERT(). Change that to more useful behaviour. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Hank Janssen <hjanssen@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
75910f236a
commit
7e052d98f2
1 changed files with 3 additions and 1 deletions
|
@ -192,7 +192,9 @@ int VmbusChannelOpen(struct vmbus_channel *NewChannel, u32 SendRingBufferSize,
|
|||
/* Allocate the ring buffer */
|
||||
out = osd_PageAlloc((SendRingBufferSize + RecvRingBufferSize)
|
||||
>> PAGE_SHIFT);
|
||||
ASSERT(out);
|
||||
if (!out)
|
||||
return -ENOMEM;
|
||||
|
||||
ASSERT(((unsigned long)out & (PAGE_SIZE-1)) == 0);
|
||||
|
||||
in = (void *)((unsigned long)out + SendRingBufferSize);
|
||||
|
|
Loading…
Add table
Reference in a new issue