Received: by 2002:a05:6a10:c604:0:0:0:0 with SMTP id y4csp4280418pxt; Wed, 11 Aug 2021 02:12:49 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyGcpquuxSAOklwZNZ/5LlYlaZfPkV9hfGZrgzFPia/Pb1RMVNSG9q8FtWWODxlwbPr+aby X-Received: by 2002:a05:6602:2812:: with SMTP id d18mr164529ioe.98.1628673169388; Wed, 11 Aug 2021 02:12:49 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1628673169; cv=none; d=google.com; s=arc-20160816; b=qmDKttzgrguO5j8wpgKYmuf4iBDU627awIG3zUobIZZD/NpxpzUMmo0B+JJXaVXm0S ysXGcRXjK5ycQVfnK6xeFP41Kj4EkP5B0kYCBqtJHsCfZuJ276fHEBWWT5z7N96AKZpG dySS/1yugVtBR9aWh8sHrpIAKe+tx9/kqzIHeZlvQjnoTYb2BkYGsjSE2f6JOswvGCqG xw68SUrdJUep4afDH2oBzVElRz4hPxHIm+0fDoBjsK4eyysOBgrn2fkxW+wRDaBi41DL a54S/QXigZCTghu1728+PfqVHXELrT2sYpoxDSqNWTxC46XQ80/nFFNcu/vB2ioVhLri 99ag== 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=J3EBOtHZUNd8es6zVl1qjizsz1vTUK44OcWLqn/RTKQ=; b=06BeIxfEkcTw2bZV3pPnP6lBAZA0AW5Hz22QBdgdLDM4I6vGpN21tqeMB+1uOq9Aan 9SNBv2eLLABTJl1DOWOn6k67S3Oxir5Nw+3GP9xiFyIMqze176+8oPtNw6xhLQU6JLH+ 89mvSfTwWQsZ/GSjMhOfRUvT2qD8c5hmoFbvd6QG1QB8WMvOXm3PIsK7z6cjX8Pa7by6 /5g8Po3xrMnldvR04f1AOKu6GFeW/ALhJO6H365q6ES2IGNUtOS0GOSZPOcch81ddInn +6OkjhywFjVHuCUfcJlSveAXBOEfHPggDcYwq7nl9fDEWQAYMOFPbxNdvVIFeVpvrFpH /WQw== 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 z2si20025832jal.65.2021.08.11.02.12.38; Wed, 11 Aug 2021 02:12:49 -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 S236511AbhHKJLO (ORCPT + 99 others); Wed, 11 Aug 2021 05:11:14 -0400 Received: from mail.kernel.org ([198.145.29.99]:35084 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235282AbhHKJLN (ORCPT ); Wed, 11 Aug 2021 05:11:13 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 5A4E260F11; Wed, 11 Aug 2021 09:10:49 +0000 (UTC) Date: Wed, 11 Aug 2021 11:10:46 +0200 From: Christian Brauner To: Christoph Hellwig Cc: akpm@linux-foundation.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] proc: stop using seq_get_buf in proc_task_name Message-ID: <20210811091046.n5rft5gruotit2bf@wittgenstein> References: <20210810151945.1795567-1-hch@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20210810151945.1795567-1-hch@lst.de> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Aug 10, 2021 at 05:19:45PM +0200, Christoph Hellwig wrote: > Use seq_escape_str and seq_printf instead of poking holes into the > seq_file abstraction. > > Signed-off-by: Christoph Hellwig > --- Thanks! Looks good. Acked-by: Christian Brauner