From owner-svn-src-head@freebsd.org Wed Oct 28 08:07:01 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2380BA200BC; Wed, 28 Oct 2015 08:07:01 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (mail.turbocat.net [IPv6:2a01:4f8:d16:4514::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DC57C123E; Wed, 28 Oct 2015 08:07:00 +0000 (UTC) (envelope-from hps@selasky.org) Received: from laptop015.home.selasky.org (cm-176.74.213.204.customer.telag.net [176.74.213.204]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id 9DFD91FE023; Wed, 28 Oct 2015 09:06:57 +0100 (CET) Subject: Re: svn commit: r290003 - head/sys/ofed/include/linux To: Julian Elischer , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201510261328.t9QDSYRT076892@repo.freebsd.org> <56302F9D.2020308@freebsd.org> From: Hans Petter Selasky Message-ID: <56308289.4050902@selasky.org> Date: Wed, 28 Oct 2015 09:08:41 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <56302F9D.2020308@freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Oct 2015 08:07:01 -0000 On 10/28/15 03:14, Julian Elischer wrote: > On 10/26/15 9:28 PM, Hans Petter Selasky wrote: >> Author: hselasky >> Date: Mon Oct 26 13:28:34 2015 >> New Revision: 290003 >> URL: https://svnweb.freebsd.org/changeset/base/290003 >> >> Log: >> Add support for binding IRQs to CPUs in the LinuxKPI. The new function >> added is for BSD only and does not exist in Linux. > > um, then who would use it and why? > Hi Julian, The parameters for bus_bind_intr() are not available outside the LinuxKPI. To support such a functionality we should wrap it, for the sake of maintainability. The LinuxKPI is not a binary compatibility module, and will at some point have API's diverging from Linux, to fit BSD API's better. There is a plan to use this new function alongside some new network drivers which are not yet committed, to support RSS. --HPS