Deomid Ryabkov
Deomid Ryabkov
my current plan is to add a step to the CircleCI build when building a branch other than master, after collecting stats, to fetch latest master build stats via CircleCI...
@hugelgupf what do you think of this? do you have other suggestions?
i don't believe so. PoCs are no longer available
so, the problem seems to be in allowing unary `--` on `print`. minimum repro is: ``` --print; print(1); ``` this segfaults in mjs_builtin call, presumably `print` having been corrupted by...
naturally, we must at least know the block size. here's my quick and dirty take: https://gist.github.com/rojer/cf1a99497c1f1e807fe0e44c059daa17 pulled out the relevant part of lfs_rawmount
is lfs_mount guaranteed to not modify the fs? the reason for probing is that we want to provide exact disk_version to lfs_mount to avoid upgrading the disk format (we want...
there is no runtime read-only mount option, only LFS_READONLY. i guess lfs_mount ro + lfs_fs_stat would be a way. but also, probing, for example, should be quiet about finding gibberish,...
> setting cfg.disk_version = 0x00020000 yes, but that would hard-code the version and won't be as flexible during migration. right now we mount with `cfg.disk_version = probed_version`. you may or...
can't mount flags be added to `struct lfs_config`?
> trying to add flags to lfs_mount is the way to go. but we'd need to store them anyway and presumably check? e.g. `LFS_M_READONLY` would need to be consulted on...