about summary refs log tree commit diff
path: root/pkgs/applications/virtualization/stratovirt/micro_vm-allow-SYS_clock_gettime.patch
blob: 11d2a0e88e194c96bccd108d1ffdba9361880996 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
From c5ef87eb831f7f77c0564dd1dce92a579e7c4747 Mon Sep 17 00:00:00 2001
From: Astro <astro@spaceboyz.net>
Date: Sun, 18 Jun 2023 23:10:23 +0200
Subject: [PATCH] micro_vm: allow SYS_clock_gettime

---
 machine/src/micro_vm/syscall.rs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/machine/src/micro_vm/syscall.rs b/machine/src/micro_vm/syscall.rs
index c37d3f4e..f9e7cce2 100644
--- a/machine/src/micro_vm/syscall.rs
+++ b/machine/src/micro_vm/syscall.rs
@@ -125,6 +125,8 @@ pub fn syscall_whitelist() -> Vec<BpfRule> {
         BpfRule::new(libc::SYS_readlink),
         BpfRule::new(libc::SYS_getrandom),
         BpfRule::new(libc::SYS_fallocate),
+        #[cfg(target_env = "gnu")]
+        BpfRule::new(libc::SYS_clock_gettime),
         madvise_rule(),
     ]
 }
-- 
2.41.0