X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fstream-unix.c;h=6dee17d7b18d8aadc3628485eb8c3aa712f3b945;hb=558e2cc58e16f6e3cee44926d69d385d84d42521;hp=dde599683e2aa4fc0bc37420e87b006de32bc903;hpb=c146b2f86a917ef7a9eb3bb1475e0527dc7e91c3;p=openvswitch diff --git a/lib/stream-unix.c b/lib/stream-unix.c index dde59968..6dee17d7 100644 --- a/lib/stream-unix.c +++ b/lib/stream-unix.c @@ -48,7 +48,7 @@ unix_open(const char *name, char *suffix, struct stream **streamp, fd = make_unix_socket(SOCK_STREAM, true, NULL, connect_path); if (fd < 0) { - VLOG_WARN("%s: connection failed (%s)", connect_path, strerror(-fd)); + VLOG_DBG("%s: connection failed (%s)", connect_path, strerror(-fd)); return -fd; } @@ -92,7 +92,7 @@ punix_open(const char *name OVS_UNUSED, char *suffix, return error; } - return new_fd_pstream(name, fd, punix_accept, + return new_fd_pstream(name, fd, punix_accept, NULL, xstrdup(suffix), pstreamp); } @@ -118,6 +118,7 @@ const struct pstream_class punix_pstream_class = { punix_open, NULL, NULL, - NULL + NULL, + NULL, };