mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 12:50:52 +07:00
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
@ -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…
Reference in New Issue
Block a user