mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
vmm: pass M_WAITOK to uma_zalloc when allocating FPU save area
Submitted by: patrick.sullivan3@dell.com Reviewed by: markj MFC after: 2 weeks Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D22276
This commit is contained in:
parent
a3b299f0cf
commit
854e90da4e
2 changed files with 2 additions and 2 deletions
|
|
@ -1190,7 +1190,7 @@ struct savefpu *
|
|||
fpu_save_area_alloc(void)
|
||||
{
|
||||
|
||||
return (uma_zalloc(fpu_save_area_zone, 0));
|
||||
return (uma_zalloc(fpu_save_area_zone, M_WAITOK));
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -1473,7 +1473,7 @@ union savefpu *
|
|||
fpu_save_area_alloc(void)
|
||||
{
|
||||
|
||||
return (uma_zalloc(fpu_save_area_zone, 0));
|
||||
return (uma_zalloc(fpu_save_area_zone, M_WAITOK));
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in a new issue