Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions repos/patches/proxmox/fix-result-ok.patch

This file was deleted.

5 changes: 2 additions & 3 deletions repos/patches/pve-common/mknodat.patch
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@ diff --git a/src/PVE/Tools.pm b/src/PVE/Tools.pm
index fe9616e..e9b7578 100644
--- a/src/PVE/Tools.pm
+++ b/src/PVE/Tools.pm
@@ -1817,7 +1817,8 @@ sub mkdirat($$$) {
@@ -1817,7 +1817,7 @@ sub mkdirat($$$) {

sub mknod($$$) {
my ($filename, $mode, $dev) = @_;
- return syscall(PVE::Syscall::mknod, $filename, int($mode), int($dev)) == 0;
+ # AT_FDCWD = -100
+ return syscall(PVE::Syscall::mknodat, -100, $filename, int($mode), int($dev)) == 0;
+ return syscall(PVE::Syscall::mknodat, AT_FDCWD, $filename, int($mode), int($dev)) == 0;
}

sub fchownat($$$$$) {