-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x/build/cmd/gomote: 'gomote ssh' on plan9 can't see files installed by 'gomote put' #28485
Comments
I think the /tmp mount is private per process unless explicitly shared to children. And gomote ssh connects to a sibling process of the buildlet. Perhaps on Plan 9 the $WORKDIR should be not in /tmp. But we wanted the in-memory filesystem. @0intro, how do we get the in-memory speed with a OS-wide visible filesystem mount? |
We could use ramfs to have an in-memory filesystem mount, however I'm not sure this is the issue. By default, /tmp is private to the user logged with. The $home/tmp directory is bound to /tmp. Could you run Another possibility would be that the $home/tmp directory hasn't been bound to /tmp. You could run |
|
They're not:
|
The issue is that ramfs has been started from the rc session that ran the buildlet, The easiest way would be to change /cfg/helix/cpustart to pass the "-s" parameter to ramfs, Then, you could run I'll submit a change to |
Change https://golang.org/cl/146038 mentions this issue: |
We add -s flag to ramfs to post its channel on /srv/ramfs, so multiple clients could access its files. Updates golang/go#28485. Change-Id: Id39b17fcc3bec2b5fae3a16841ab2414e60361b3 Reviewed-on: https://go-review.googlesource.com/c/146038 Reviewed-by: Bryan C. Mills <bcmills@google.com>
What did you do?
What did you expect to see?
The files reported by
gomote run […] /bin/ls /tmp/workdir
are also visible when runningls /tmp/workdir
undergomote ssh
.What did you see instead?
The files placed by
gomote put14
andgomote push
are not visible to thegomote ssh
process.@bradfitz tells me that the the ssh and buildlet processes don't share that part of the filesystem namespace.
@0intro, any ideas?
The text was updated successfully, but these errors were encountered: