We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ecdb48 commit e013611Copy full SHA for e013611
arch/x86/kvm/svm/sev.c
@@ -1594,11 +1594,11 @@ static int sev_send_update_data(struct kvm *kvm, struct kvm_sev_cmd *argp)
1594
1595
/* allocate memory for header and transport buffer */
1596
ret = -ENOMEM;
1597
- hdr = kzalloc(params.hdr_len, GFP_KERNEL_ACCOUNT);
+ hdr = kzalloc(params.hdr_len, GFP_KERNEL);
1598
if (!hdr)
1599
goto e_unpin;
1600
1601
- trans_data = kzalloc(params.trans_len, GFP_KERNEL_ACCOUNT);
+ trans_data = kzalloc(params.trans_len, GFP_KERNEL);
1602
if (!trans_data)
1603
goto e_free_hdr;
1604
0 commit comments