From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi0-f53.google.com (mail-oi0-f53.google.com [209.85.218.53]) by dpdk.org (Postfix) with ESMTP id 9A3762A5E for ; Tue, 21 Feb 2017 23:54:50 +0100 (CET) Received: by mail-oi0-f53.google.com with SMTP id 2so36364097oif.0 for ; Tue, 21 Feb 2017 14:54:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=UwNWrHr+D0zFB0A166p9aQHcFKRUCKLzVD0UBaJnB7o=; b=HdA8bI+PHuE9SwrD/JOlT7U0clE8pnU6hVlAq5yn6WeD3YXw3c7+K9Y4Wqn4EnIDVi kXvZcSZ3Gys+9G1KoiQh/UjAETqAwZyJvwq6o3I+/gvhwiJYNWEkdhntfuPypczjOMRC P8qFsuXvA4t/HcLL9OCgAx8salJsQAqD1nvbqGDdyZ/uM83Wmsvb2mLuUK7dOU08KTlZ Cx3nHFR1hud+mrZVtZFrsyYWg2lE0tpzBAFP4xNDu8eGDsDa2Mb/aljsf4Ykn/eN+b98 d4teDbp6dCGUtZ82Qb3o+/CwI36zgObpDYMEfz6xty2eBLuMmqezBE2+0/glE4cg5QDX v9hw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=UwNWrHr+D0zFB0A166p9aQHcFKRUCKLzVD0UBaJnB7o=; b=GTeYAnpfS79ioso7iy9ukSrCLqC/gi9JotB4HiAqabCjGspkP2AP0jpuiLN8lpBqvt TMPFuWN8UINxopj/CwT0lkTFZcS1o8m/JSvkGH5Athjs4ToQzukTvXwv5iifHIimctlv ABXm+1NEMOr8yBphcmnDsn/Yh/7SyY+uyg7hEsoBJ/cTyfzhPCkFurnYkuQuR9OSHiyz S5t26kSPAJI46hQmHELTr4bLo0KFUsvz1O2/pAFcaZtnUCBGoSk4RoJWLCKo9fHN5DwH vMR0yimOUBIxl3SMhPY0hEX5Jt24jvWhOcOMRh5CM3OsxEaYBLW0xJz9POtMCY7i3GkC xiFA== X-Gm-Message-State: AMke39nMnkDvfuRFK1gyLRND4XVCD1YomaDEnG58Skf3vqDA68nBwzmUiLhZbNRGNeIqSef69Q4nQ4wxRFnzSw== X-Received: by 10.202.252.216 with SMTP id a207mr13355914oii.98.1487717689923; Tue, 21 Feb 2017 14:54:49 -0800 (PST) MIME-Version: 1.0 Received: by 10.182.110.38 with HTTP; Tue, 21 Feb 2017 14:54:29 -0800 (PST) From: Sushil Adhikari Date: Tue, 21 Feb 2017 16:54:29 -0600 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-users] BUG: unable to handle kernel paging request, DPDK X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Feb 2017 22:54:51 -0000 I am trying to run the kni sample application from dpdk, so I did the following steps: 1. Compiled the program 2. Allocated 256 hugepages 3. Unbinded the ethernet port from the ixgbe driver and binded them to the igb_uio driver When I tried to run the program, it crashed, with the following error: BUG: Unable to handle kernel paging request at xxxxxxx So I tried to find the line which causes the crash. I narrowed it down to line 260: num = rte_kni_tx_burst(p->kni[i], pkts_burst, nb_rx); Which is part of function kni_ingress. It looks like it crashes when doing fifo read/write, but I'm not sure why. Any idea on what could be wrong or any suggestion would be appreciated!