From owner-dev-commits-src-main@freebsd.org Mon Jan 18 15:15:10 2021 Return-Path: Delivered-To: dev-commits-src-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 09E0F4EDD71; Mon, 18 Jan 2021 15:15:10 +0000 (UTC) (envelope-from vladimir@kondratyev.su) Received: from corp.infotel.ru (corp.infotel.ru [195.170.219.3]) by mx1.freebsd.org (Postfix) with ESMTP id 4DKFhY60mPz4XRy; Mon, 18 Jan 2021 15:15:09 +0000 (UTC) (envelope-from vladimir@kondratyev.su) Received: from corp (corp.infotel.ru [195.170.219.3]) by corp.infotel.ru (Postfix) with ESMTP id A7396197A33; Mon, 18 Jan 2021 18:15:00 +0300 (MSK) X-Virus-Scanned: amavisd-new at corp.infotel.ru Received: from corp.infotel.ru ([195.170.219.3]) by corp (corp.infotel.ru [195.170.219.3]) (amavisd-new, port 10024) with ESMTP id b2WMqEYrF90g; Mon, 18 Jan 2021 18:14:56 +0300 (MSK) Received: from mail.cicgroup.ru (unknown [195.170.219.74]) by corp.infotel.ru (Postfix) with ESMTP id 2D3B2197A26; Mon, 18 Jan 2021 18:14:56 +0300 (MSK) Received: from mail.cicgroup.ru (localhost [127.0.0.1]) by mail.cicgroup.ru (Postfix) with ESMTP id 8520642211F; Mon, 18 Jan 2021 18:14:55 +0300 (MSK) Received: from mail.cicgroup.ru ([127.0.0.1]) by mail.cicgroup.ru (mail.cicgroup.ru [127.0.0.1]) (amavisd-new, port 10024) with SMTP id DsDoHgivWMQ0; Mon, 18 Jan 2021 18:14:44 +0300 (MSK) Received: from [192.168.0.30] (gateway [10.0.2.2]) by mail.cicgroup.ru (Postfix) with ESMTPA id 7ADCA42211C; Mon, 18 Jan 2021 18:14:44 +0300 (MSK) Subject: Re: git: ec25b6fa5ffd - main - LinuxKPI: Reimplement irq_work queue on top of fast taskqueue To: Emmanuel Vadot , Hans Petter Selasky Cc: Emmanuel Vadot , src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org References: <202101171147.10HBlhip057611@gitrepo.freebsd.org> <40992eaf-97bd-b9fc-258a-63367aedc607@selasky.org> <20210118155147.7bfc3adb93b21018c2076def@bidouilliste.com> From: Vladimir Kondratyev Message-ID: Date: Mon, 18 Jan 2021 18:14:39 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:78.0) Gecko/20100101 Thunderbird/78.6.0 MIME-Version: 1.0 In-Reply-To: <20210118155147.7bfc3adb93b21018c2076def@bidouilliste.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 4DKFhY60mPz4XRy X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: dev-commits-src-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for the main branch of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jan 2021 15:15:10 -0000 On 18.01.2021 17:51, Emmanuel Vadot wrote: > On Mon, 18 Jan 2021 15:45:43 +0100 > Hans Petter Selasky wrote: > >> On 1/17/21 12:47 PM, Emmanuel Vadot wrote: >>> diff --git a/sys/compat/linuxkpi/common/include/linux/llist.h b/sys/compat/linuxkpi/common/include/linux/llist.h >>> new file mode 100644 >>> index 000000000000..b3c89516e710 >>> --- /dev/null >>> +++ b/sys/compat/linuxkpi/common/include/linux/llist.h >>> @@ -0,0 +1,101 @@ >>> +/* Public domain. */ >> >> Hi, >> >> Could you put a proper license text here? >> >> --HPS > > I think that wulf@ adapted this one from the OpenBSD version. > https://github.com/openbsd/src/blob/master/sys/dev/pci/drm/include/linux/llist.h > Yes. The file and license header is taken from OpenBSD.