Skip to content

Commit f933239

Browse files
committed
Internal change.
PiperOrigin-RevId: 808674701
1 parent 2925932 commit f933239

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pkg/sentry/kernel/kernel.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,13 @@ import (
7676
"gvisor.dev/gvisor/pkg/sentry/socket/unix/transport"
7777
sentrytime "gvisor.dev/gvisor/pkg/sentry/time"
7878
"gvisor.dev/gvisor/pkg/sentry/unimpl"
79-
uspb "gvisor.dev/gvisor/pkg/sentry/unimpl/unimplemented_syscall_go_proto"
8079
"gvisor.dev/gvisor/pkg/sentry/uniqueid"
8180
"gvisor.dev/gvisor/pkg/sentry/vfs"
8281
"gvisor.dev/gvisor/pkg/state"
8382
"gvisor.dev/gvisor/pkg/sync"
8483
"gvisor.dev/gvisor/pkg/tcpip/stack"
84+
85+
uspb "gvisor.dev/gvisor/pkg/sentry/unimpl/unimplemented_syscall_go_proto"
8586
)
8687

8788
// IOUringEnabled is set to true when IO_URING is enabled. Added as a global to
@@ -1051,7 +1052,7 @@ func (ctx *createProcessContext) getMemoryCgroupID() uint32 {
10511052
func (k *Kernel) CreateProcess(args CreateProcessArgs) (*ThreadGroup, ThreadID, error) {
10521053
k.extMu.Lock()
10531054
defer k.extMu.Unlock()
1054-
log.Infof("EXEC: %v", args.Argv)
1055+
log.Infof("EXEC: %#v", args.Argv)
10551056

10561057
ctx := args.NewContext(k)
10571058
mntns := args.MountNamespace

0 commit comments

Comments
 (0)