Skip to content

Commit

Permalink
Merge pull request #13013 from spowelljr/fixBadMount
Browse files Browse the repository at this point in the history
mount: fix `Bad file descriptor`
  • Loading branch information
medyagh authored Nov 23, 2021
2 parents d94b301 + 2d20e0a commit 0d21fb4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion test/integration/functional_test_mount_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ func validateMountCmd(ctx context.Context, t *testing.T, profile string) { // no
}

t.Run("any-port", func(t *testing.T) {
t.Skip("Skipping until https://github.com/kubernetes/minikube/issues/12301 is resolved.")
tempDir, err := os.MkdirTemp("", "mounttest")
defer func() { // clean up tempdir
err := os.RemoveAll(tempDir)
Expand Down
6 changes: 0 additions & 6 deletions third_party/go9p/srv_fcall.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,6 @@ func (srv *Srv) walk(req *SrvReq) {
return
}

/* we can't walk open files */
if fid.opened {
req.RespondError(Ebaduse)
return
}

if tc.Fid != tc.Newfid {
req.Newfid = conn.FidNew(tc.Newfid)
if req.Newfid == nil {
Expand Down

0 comments on commit 0d21fb4

Please sign in to comment.