From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:54586) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1BMr-0004N8-LE for qemu-devel@nongnu.org; Fri, 01 Feb 2013 02:49:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U1BMq-0005aY-P2 for qemu-devel@nongnu.org; Fri, 01 Feb 2013 02:49:01 -0500 Received: from mx1.redhat.com ([209.132.183.28]:16710) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1BMq-0005aQ-HK for qemu-devel@nongnu.org; Fri, 01 Feb 2013 02:49:00 -0500 From: Jason Wang Date: Fri, 1 Feb 2013 15:39:36 +0800 Message-Id: <1359704396-55327-3-git-send-email-jasowang@redhat.com> In-Reply-To: <1359704396-55327-1-git-send-email-jasowang@redhat.com> References: <1359704396-55327-1-git-send-email-jasowang@redhat.com> Subject: [Qemu-devel] [PATCH V4 RESEND 02/22] net: tap: use abort() instead of assert(0) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aliguori@us.ibm.com, mst@redhat.com, qemu-devel@nongnu.org, blauwirbel@gmail.com, shajnocz@redhat.com Cc: krkumar2@in.ibm.com, kvm@vger.kernel.org, mprivozn@redhat.com, Jason Wang , rusty@rustcorp.com.au, jwhan@filewood.snu.ac.kr, gaowanlong@cn.fujitsu.com Signed-off-by: Jason Wang Signed-off-by: Michael S. Tsirkin --- net/tap-linux.c | 4 ++-- net/tap-win32.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/tap-linux.c b/net/tap-linux.c index 059f5f3..0a6acc7 100644 --- a/net/tap-linux.c +++ b/net/tap-linux.c @@ -164,7 +164,7 @@ int tap_probe_vnet_hdr_len(int fd, int len) if (ioctl(fd, TUNSETVNETHDRSZ, &orig) == -1) { fprintf(stderr, "TUNGETVNETHDRSZ ioctl() failed: %s. Exiting.\n", strerror(errno)); - assert(0); + abort(); return -errno; } return 1; @@ -175,7 +175,7 @@ void tap_fd_set_vnet_hdr_len(int fd, int len) if (ioctl(fd, TUNSETVNETHDRSZ, &len) == -1) { fprintf(stderr, "TUNSETVNETHDRSZ ioctl() failed: %s. Exiting.\n", strerror(errno)); - assert(0); + abort(); } } diff --git a/net/tap-win32.c b/net/tap-win32.c index 3052bba..601437e 100644 --- a/net/tap-win32.c +++ b/net/tap-win32.c @@ -762,5 +762,5 @@ int tap_has_vnet_hdr_len(NetClientState *nc, int len) void tap_set_vnet_hdr_len(NetClientState *nc, int len) { - assert(0); + abort(); } -- 1.7.1