Daniel Xu
Daniel Xu
@ajor sounds like you've either volunteered or been volunteered :) https://lore.kernel.org/netdev/[email protected]/T/#m384a26b0b4e714f4ecb75186cac7b169882d46fb
Gave this some more thought. Here's what I propose as API: let printf() `%s` specifier take an enum variant. If you try that today, it's a type error b/c printf()...
> I'd also add that `$myenum` should be displayed as a string in `print($myenum)` and `@[$myenum] = $myenum`. It would be a change in behaviour, but I'd say it's more...
> > Because fundamentally an enum is an integer. Adding another primitive type is always an option, but it's an expensive choice to make. If you wanted to add a...
I think deciding whether or not to make enums behave differently than integers is a separate and much bigger discussion. For one, I am fairly skeptical the costs outweigh the...
Hi @javierhonduco ! Thanks for giving vmtest a try. I'm not immediately sure what the issue is from the description, but will take a look as soon as I can...
Makes sense to me! Originally I was thinking that kind of stuff would go into https://github.com/danobi/vmtest-action. But if that action is not actually useful feel free to put it in...
Disabling shared directory support might make sense for an image target, but IIUC almost all distros ship module support for 9pfs. For the kernel target, we need some way to...
But don't we control the guest kernel? We already have instructions for users to build their guest kernels with a few configs set to `=y`. Virtiofs module on host shouldn't...
Don't most distros already build 9p support as =m? ``` dlxu@dlxu-fedora~ $ grep 9P /boot/config-$(uname -r) CONFIG_NET_9P=m CONFIG_NET_9P_FD=m CONFIG_NET_9P_VIRTIO=m CONFIG_NET_9P_XEN=m CONFIG_NET_9P_RDMA=m # CONFIG_NET_9P_DEBUG is not set CONFIG_VIDEO_MT9P031=m CONFIG_9P_FS=m CONFIG_9P_FSCACHE=y CONFIG_9P_FS_POSIX_ACL=y...