summaryrefslogtreecommitdiffstats
path: root/OvmfPkg/VirtioFsDxe/FuseForget.c
diff options
context:
space:
mode:
Diffstat (limited to 'OvmfPkg/VirtioFsDxe/FuseForget.c')
-rw-r--r--OvmfPkg/VirtioFsDxe/FuseForget.c23
1 files changed, 14 insertions, 9 deletions
diff --git a/OvmfPkg/VirtioFsDxe/FuseForget.c b/OvmfPkg/VirtioFsDxe/FuseForget.c
index fdee42cffb..0ed83f1e19 100644
--- a/OvmfPkg/VirtioFsDxe/FuseForget.c
+++ b/OvmfPkg/VirtioFsDxe/FuseForget.c
@@ -34,15 +34,15 @@
**/
EFI_STATUS
VirtioFsFuseForget (
- IN OUT VIRTIO_FS *VirtioFs,
- IN UINT64 NodeId
+ IN OUT VIRTIO_FS *VirtioFs,
+ IN UINT64 NodeId
)
{
- VIRTIO_FS_FUSE_REQUEST CommonReq;
- VIRTIO_FS_FUSE_FORGET_REQUEST ForgetReq;
- VIRTIO_FS_IO_VECTOR ReqIoVec[2];
- VIRTIO_FS_SCATTER_GATHER_LIST ReqSgList;
- EFI_STATUS Status;
+ VIRTIO_FS_FUSE_REQUEST CommonReq;
+ VIRTIO_FS_FUSE_FORGET_REQUEST ForgetReq;
+ VIRTIO_FS_IO_VECTOR ReqIoVec[2];
+ VIRTIO_FS_SCATTER_GATHER_LIST ReqSgList;
+ EFI_STATUS Status;
//
// Set up the scatter-gather list (note: only request).
@@ -66,8 +66,13 @@ VirtioFsFuseForget (
//
// Populate the common request header.
//
- Status = VirtioFsFuseNewRequest (VirtioFs, &CommonReq, ReqSgList.TotalSize,
- VirtioFsFuseOpForget, NodeId);
+ Status = VirtioFsFuseNewRequest (
+ VirtioFs,
+ &CommonReq,
+ ReqSgList.TotalSize,
+ VirtioFsFuseOpForget,
+ NodeId
+ );
if (EFI_ERROR (Status)) {
return Status;
}