Skip to content

Commit

Permalink
Merge pull request #10 from amorenoz/move_to_npwg
Browse files Browse the repository at this point in the history
move package to k8snetworkplumbingwg
  • Loading branch information
amorenoz authored Dec 23, 2021
2 parents 9e60308 + 01014d7 commit 1c0391a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#

PACKAGE=govdpa
ORG_PATH=github.com/redhat-virtio-net
ORG_PATH=github.com/k8snetworkplumbingwg
REPO_PATH=$(ORG_PATH)/$(PACKAGE)
GOPATH=$(CURDIR)/.gopath
GOBIN=$(CURDIR)/bin
Expand Down
2 changes: 1 addition & 1 deletion cmd/kvdpa-cli/kvdpa-cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

vdpa "github.com/redhat-virtio-net/govdpa/pkg/kvdpa"
vdpa "github.com/k8snetworkplumbingwg/govdpa/pkg/kvdpa"
cli "github.com/urfave/cli/v2"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/uvdpa-cli/uvdpa-cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"strings"

vdpa "github.com/redhat-virtio-net/govdpa/pkg/uvdpa"
vdpa "github.com/k8snetworkplumbingwg/govdpa/pkg/uvdpa"
)

var client vdpa.UserDaemonStub
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/redhat-virtio-net/govdpa
module github.com/k8snetworkplumbingwg/govdpa

go 1.14

Expand Down
1 change: 0 additions & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeV
github.com/urfave/cli/v2 v2.2.0 h1:JTTnM6wKzdA0Jqodd966MVj4vWbbquZykeX1sKbe2C4=
github.com/urfave/cli/v2 v2.2.0/go.mod h1:SE9GqnLQmjVa0iPEY0f1w3ygNIYcIJ0OKPMoW2caLfQ=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
3 changes: 2 additions & 1 deletion pkg/uvdpa/dpdkVdpaC.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package uvdpa

import (
jsonrpc "github.com/redhat-virtio-net/govdpa/pkg/internal/jsonrpc"
"net/rpc"
"sync"

jsonrpc "github.com/k8snetworkplumbingwg/govdpa/pkg/internal/jsonrpc"
)

const (
Expand Down

0 comments on commit 1c0391a

Please sign in to comment.