Skip to content

Commit

Permalink
Merge pull request #5151 from edwintorok/private/edvint/bumpQ
Browse files Browse the repository at this point in the history
CA-381503: bump qemu filesize limit
  • Loading branch information
edwintorok authored Aug 15, 2023
2 parents 88c2e48 + 177aead commit 6b0ddfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocaml/xenopsd/scripts/qemu-wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def unshare(flags):
raise OSError(ctypes.get_errno(), os.strerror(ctypes.get_errno()))

def restrict_fsize():
limit = 256 * 1024
limit = 1024 * 1024
setrlimit(RLIMIT_FSIZE, (limit, limit))

def enable_core_dumps():
Expand Down

0 comments on commit 6b0ddfe

Please sign in to comment.