Received: by 2002:a05:6a10:5bc5:0:0:0:0 with SMTP id os5csp3691584pxb; Sun, 24 Oct 2021 08:40:15 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwEKe08M8to+lPqcD63WCwppn/L/ydqOXtb5qke9+BFvXro/UaxIc78lY8QfnDIUNH6EAL6 X-Received: by 2002:a63:2acb:: with SMTP id q194mr9300001pgq.384.1635090014944; Sun, 24 Oct 2021 08:40:14 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1635090014; cv=none; d=google.com; s=arc-20160816; b=ZbvCCBaIukwuGyb1DbtXONyGoX2ZtYM4+EZDI5QbGX8R3viOOQaQna6HBw3KFL0py7 PwjZQ/MB8yFnPXZ0ZYnuRwYOZp6llWMYstjh8ZVtA2GfnLEGZHm8OkIy/ECvuL+RbFf0 CSBwGTWk01eiBuT50NnwvrQrTMNG29r19TZG9gGl45dQWBaUjhYVMvl+Oz/YdJ8apPgz 3Hdrt684zyHp9Xj7JSgFDdpx/zAqTjiFAFAQdnpzpFdKheWLq4aAqypURMuvuvpApzRJ UonsVkamX9cHFVqt9hFJFSwVdMdkAMUx6n5vK76QcnqiGM9RgnYZjSHVsELUnhZ8kY6y sEWg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=FqK8M1yrq3V0apaSvrcpiGnm098crdEjMkw/QduW1Ns=; b=eJacZ1i8XkWTyRL/6XS+93Yctyng3EIq7E9Cs+SqlKohbOe7hnZbgAou049kv6nhNP IrYzRRc67UHeTRkyJ9DvvFtNczQ6hd3VLg14GX8PnqTr1ihsMi2tyQLedYPGbKffJ5sA RNBWUdVkZdL5Xy5LaUUawF8tIPl46krGzkCdf7H7u/TyMXlSo5EOAZihwuMO6nEKBdRb qJoixtxHL3kUcEddR9vJRV71363wT1QV66SPoB5XqIN7BQSR5jyi+5JiYMwh7nuqEerk aNjs0Vj19M5cHB7UCvvg1pEp1qWZUz1bTtcAybpqCc3zE6P0bm6rPNALOeroz0Ug9NI4 91DQ== 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 z185si3085167pfb.152.2021.10.24.08.40.01; Sun, 24 Oct 2021 08:40:14 -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 S231547AbhJXPj7 (ORCPT + 99 others); Sun, 24 Oct 2021 11:39:59 -0400 Received: from elvis.franken.de ([193.175.24.41]:37635 "EHLO elvis.franken.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231730AbhJXPju (ORCPT ); Sun, 24 Oct 2021 11:39:50 -0400 Received: from uucp (helo=alpha) by elvis.franken.de with local-bsmtp (Exim 3.36 #1) id 1mefYq-0006bc-02; Sun, 24 Oct 2021 17:37:24 +0200 Received: by alpha.franken.de (Postfix, from userid 1000) id 935C3C265F; Sun, 24 Oct 2021 17:33:00 +0200 (CEST) Date: Sun, 24 Oct 2021 17:33:00 +0200 From: Thomas Bogendoerfer To: Ilya Lipnitskiy Cc: Jiri Kosina , Alexey Malahov , Serge Semin , Hauke Mehrtens , linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 0/3] MIPS: kernel: proc: fix style and add CPU option reporting Message-ID: <20211024153300.GJ4721@alpha.franken.de> References: <20211014054018.6179-1-ilya.lipnitskiy@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211014054018.6179-1-ilya.lipnitskiy@gmail.com> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Oct 13, 2021 at 10:40:15PM -0700, Ilya Lipnitskiy wrote: > Fix checkpatch errors and use seq_puts instead of seq_printf where > possible. > > Re-send an old patch that adds CPU option reporting. > > Tested against MT7621 on OpenWrt running v5.10 kernel. > > MT7621 output: > Options implemented : tlb 4kex 4k_cache prefetch mcheck ejtag llsc > pindexed_dcache userlocal vint perf_cntr_intr_bit cdmm perf > > --- > v2: Add missing options that were added since the original patch > v3: Resend after 6 months and add Hauke's Acked-by > > Hauke Mehrtens (1): > MIPS: kernel: proc: add CPU option reporting > > Ilya Lipnitskiy (2): > MIPS: kernel: proc: fix trivial style errors > MIPS: kernel: proc: use seq_puts instead of seq_printf > > arch/mips/kernel/proc.c | 227 ++++++++++++++++++++++++++++++++-------- > 1 file changed, 184 insertions(+), 43 deletions(-) series applied to mips-next. Thomas. -- Crap can work. Given enough thrust pigs will fly, but it's not necessarily a good idea. [ RFC1925, 2.3 ]