From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-la0-f49.google.com (mail-la0-f49.google.com [209.85.215.49]) by dpdk.org (Postfix) with ESMTP id 90A212A5F for ; Sun, 9 Aug 2015 23:50:32 +0200 (CEST) Received: by lagz9 with SMTP id z9so44804276lag.3 for ; Sun, 09 Aug 2015 14:50:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=XArd2sSt+Dwy8xe5yHDuHM4zgFjICcjnAAENJswk6Dc=; b=O+4SHu576iYPlUbQX24gbSOfdHIaoYPYGmiueGxF00zamqST1n5nWidOo3JDxp7QeA 09w061W8SOCmcIp9aTTIm5ne1PGABKIpZZ6R/INGiTgTo1yv8SzREyl17Cx5mEGUV8N2 nBk8fa3LjxkNWFnRcJi1kQwlfXGGlxb3ZjB04hXATYVvzkg11+yomzBuil1yMKRV5jU9 pvp0I3sqXRCnboKXjfPIkfa7mXsxJAVDagCBXfuMgmfKSzKoR72cMkWyumsd/JYdiVKb 3X1gfVUxjZ3VsV5SdsTDzPyHhMEQEmauVgq7syLqNlEDG15MACHgB+/SgA+lvSn+7ax6 7NIw== MIME-Version: 1.0 X-Received: by 10.112.144.69 with SMTP id sk5mr17581438lbb.6.1439157031944; Sun, 09 Aug 2015 14:50:31 -0700 (PDT) Received: by 10.112.190.100 with HTTP; Sun, 9 Aug 2015 14:50:31 -0700 (PDT) Date: Mon, 10 Aug 2015 06:50:31 +0900 Message-ID: From: Hyun Yoo To: dev@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] Crash when 'ifconfig vEth0 X.X.X.X' X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Aug 2015 21:50:32 -0000 After kni, I want to wake vEth0 up automatically. so, I executed 'ifconfig vEth0 X.X.X.X' programatically with various ways. A) put system('ifconfig...)' right after check_all_ports_link_status() in main() examples/kni/main.c B) put system('ifconfig...)' in callback using rte_eth_dev_callback_register(). C) in shell script, examples/kni/build/kni & for loop ifconfig ... In either ways, linux crashes sometimes. No keyboard, mouse works. I have to reboot. There was usually no error message but once time I saw something about irq balance... It seems ifconfig shouldn't be run right after(or before) link is up, maybe. Has anyone experienced the same? I'm using DPDK 2.0.0 on RHEL 6.5 (kernel 2.6.32).