Received: by 2002:a05:6a11:4021:0:0:0:0 with SMTP id ky33csp441747pxb; Wed, 22 Sep 2021 05:46:45 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxu7ZIfs7z8BBX7wVXg4kNuBO4rcMXiZ7QxXyZzBcfc/WUycl4wIC0J+Cjwv3lhiJDI85Xv X-Received: by 2002:a05:6402:897:: with SMTP id e23mr42405040edy.366.1632314805504; Wed, 22 Sep 2021 05:46:45 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1632314805; cv=none; d=google.com; s=arc-20160816; b=uzWZbrxXNEMn6Jkg8J4raoEftEjtRvaY7qE8tuGd5DNiU8evxF3JaBSeNJUh1s5AI+ pnoYEM3A+7CAY1CkmvTOVRDbX7dwHnPb/3W9bRf/RZfStSf3C/l+u5+agvaiKzj0ePqu HcD/6YMn/jk2DkNZX7T+C6fM19T31cnNTlMYMuBNcjBeyaoPBhKZERa08JIIPvjZzVhL k9nDM3AAiiSQ4YfC3ACytCzSFK8kPx3bMBkuy6r/dhFHrFDpoA/lh/PokpsSy+lhf4Ha UIfVquT53Ct+6fQC7wgz2X+RIX9ylRKHDWDT0Eew7KvLp5GSszWGJ4dShowREFLDMVgM jtFg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=xIFJ3jGSqPGrQ4SUmB1MdrLVCNKpSSaOFocbCtB3HO0=; b=DPtKnyF/Fky8iTcEPgi5ehbFwq8OHn7EuX+y5Bn72FCWhzyhlfe7wsiEzbOf2hKiF3 6fS8XQzueCgMHqvGn+/vxae14yflXSIvF7EY6ZUZ1HnBYN0dIiE9I+l7Mfx4yXKcg1Jp ivkgkBB+FMb3bogqkErHTkqEdxRRR6F51qcXE4/kg0cOXipnUoeYBIfYjZI55Nb7dp9w 7N3SBQD2ettb/OuZvYYIthcrx9hXjb9aRi/eKRRHfLomS4PgUKbCVPWyz8F8WNjVMWHc 1Kd7+jRRbZilyg/5WiG74bgAl6xjEc78nljXVnieiF8eDXsYkqJDmtTgjZK5RmM7jsoH 7hKg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id j24si2618338ejo.673.2021.09.22.05.46.21; Wed, 22 Sep 2021 05:46:45 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235958AbhIVMqP (ORCPT + 99 others); Wed, 22 Sep 2021 08:46:15 -0400 Received: from mail.kernel.org ([198.145.29.99]:49578 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235227AbhIVMqP (ORCPT ); Wed, 22 Sep 2021 08:46:15 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id EFEB8610A0; Wed, 22 Sep 2021 12:44:42 +0000 (UTC) Date: Wed, 22 Sep 2021 14:44:40 +0200 From: Christian Brauner To: Mike Christie Cc: hdanton@sina.com, hch@infradead.org, stefanha@redhat.com, jasowang@redhat.com, mst@redhat.com, sgarzare@redhat.com, virtualization@lists.linux-foundation.org, axboe@kernel.dk, linux-kernel@vger.kernel.org Subject: Re: [PATCH V2 1/9] fork: Make IO worker options flag based Message-ID: <20210922124440.2jndok5s6wym6h2d@wittgenstein> References: <20210921215218.89844-1-michael.christie@oracle.com> <20210921215218.89844-2-michael.christie@oracle.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20210921215218.89844-2-michael.christie@oracle.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Sep 21, 2021 at 04:52:10PM -0500, Mike Christie wrote: > This patchset adds a couple new options to kernel_clone_args for IO thread > like/related users. Instead of adding new fields to kernel_clone_args for > each option, this moves us to a flags based approach by first converting > io_thread. > > Signed-off-by: Mike Christie Looks good. Suggested-by: Christian Brauner Acked-by: Christian Brauner