brho

Results 16 issues of brho

https://github.com/brho/akaros/blob/80eabffc10a755f8e1817b639297d255e0246f5d/user/vmm/biostables.c#L36 should be XSDT (spotted by changyuan)

Dan mentioned that multiboot's tables can be anywhere in memory - let alone an initrd. Right now, we don't use an initrd, and we copy-out the command line. But if...

For the most part, we intercept every MSR write. We are explicit about saving/restoring the MSRs that aren't intercepted. However the intercepted MSRs run through an emulator, and some of...

VMX has a lot of issues that we aren't dealing with. Do a git log on arch/x86/kvm/vmx.c in Linux, and you'll find a list of things to fix. For instance,...

http://comments.gmane.org/gmane.os.plan9.general/76188 We have this problem too. The hash tables might need a little more work too. We have multiple NHASH defines which we might be able to consolidate.

If you try to run snoopy without the "-p" flag (which turns _off_ promiscuous mode) on an mlx4 NIC, you'll trigger the panic in ether_promiscuous() (kern/drivers/net/mlx4/main.c

The one from coreutils: bash-4.3$ rm hello.txt rm: cannot remove 'hello.txt': Function not implemented Busybox's still works: bash-4.3$ busybox rm hello.txt

All pipes are globally allocated with a unique ID: ``` spin_lock(&(&pipealloc)->lock); p->path = ++pipealloc.path; spin_unlock(&(&pipealloc)->lock); ``` After making 4 billion pipes, we'll start reusing the ID numbers from pipealloc.path. If...

This won't actually handle the extra wstat - I didn't get into the "dotu" bool business. But it won't error out and barf an insane amount of null bytes when...

if you set cpu -namespace "" (empty string), instead of none or ":", cpu will complain. notably debug lines (target machine is 7 hours ahead, which helps with debugging!): ```...