aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-06-17 12:37:05 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-06-17 14:41:15 +0200
commit4b2a9e225c495475272e8a67f525329afa5f892a (patch)
tree49eec6c9fa0bedf654961466e9d21dbb1901a08e
parenta853b91c58c5403428499f5cdc661033ac7a91ce (diff)
pkg/host: move from host
-rw-r--r--pkg/host/host.go (renamed from host/host.go)0
-rw-r--r--pkg/host/host_test.go (renamed from host/host_test.go)0
-rw-r--r--syz-fuzzer/fuzzer.go2
-rw-r--r--tools/syz-stress/stress.go2
4 files changed, 2 insertions, 2 deletions
diff --git a/host/host.go b/pkg/host/host.go
index 4e634f1aa..4e634f1aa 100644
--- a/host/host.go
+++ b/pkg/host/host.go
diff --git a/host/host_test.go b/pkg/host/host_test.go
index 9b44d8e36..9b44d8e36 100644
--- a/host/host_test.go
+++ b/pkg/host/host_test.go
diff --git a/syz-fuzzer/fuzzer.go b/syz-fuzzer/fuzzer.go
index 167a6a7cb..ce7b93c0c 100644
--- a/syz-fuzzer/fuzzer.go
+++ b/syz-fuzzer/fuzzer.go
@@ -22,9 +22,9 @@ import (
"time"
"github.com/google/syzkaller/cover"
- "github.com/google/syzkaller/host"
"github.com/google/syzkaller/ipc"
"github.com/google/syzkaller/pkg/hash"
+ "github.com/google/syzkaller/pkg/host"
. "github.com/google/syzkaller/pkg/log"
"github.com/google/syzkaller/pkg/osutil"
"github.com/google/syzkaller/prog"
diff --git a/tools/syz-stress/stress.go b/tools/syz-stress/stress.go
index 43bd258eb..f4b0ae565 100644
--- a/tools/syz-stress/stress.go
+++ b/tools/syz-stress/stress.go
@@ -13,9 +13,9 @@ import (
"sync/atomic"
"time"
- "github.com/google/syzkaller/host"
"github.com/google/syzkaller/ipc"
"github.com/google/syzkaller/pkg/db"
+ "github.com/google/syzkaller/pkg/host"
. "github.com/google/syzkaller/pkg/log"
"github.com/google/syzkaller/prog"
"github.com/google/syzkaller/sys"