From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 884902874E6; Thu, 4 Sep 2025 07:46:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756972005; cv=none; b=ppoeWbUKc+Ia8/t+w7skwba94A9wq4851sXoHibREYrHJR57sg0051czEt5UtyXWG5ntlX3hxB713RuTIa+mvLlWdl6rDNAeGsnMbg1wz5ACWwno66Y3ML8kntM7nCvpTcy88qwWCo0ZBJt/3ZUHl8FVCdYeerJo5Ousw7sZjqk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756972005; c=relaxed/simple; bh=ayhnFOvBI35lN1QuVk6R0qQPQ85LgwB6FlWmSDytSD8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Qf0qAZH+/ZRvJwGs+ov0NfigN4AVqyzPjVDDGZdglKTLNpj7jhu5+fZSOeCSS1PIUvUs98E/rkyjyTAGtnXw0i7uzajZA+4qp7EzTuYVBsYdaoHuv3rWpud52zr/bWwmLBZN+qu7V/yTm/3Rx+H6Urp9F3QtDAo4ybPhROl+vz0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ei8kWMgv; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ei8kWMgv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3113CC4CEF0; Thu, 4 Sep 2025 07:46:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756972005; bh=ayhnFOvBI35lN1QuVk6R0qQPQ85LgwB6FlWmSDytSD8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ei8kWMgvmOrl55vH/goejl0rRfHpQQ1VmNfXzvHDz+lTW0OMkPved487WEfKf7TiY KUNMyus/fVOJTuujNmC9bMhq+b90A2Zz5no4E5gchShcIjFAp3C0qq8ONOlyrsP3tQ +ximJtJTMRJlFQCtfQD537bk775UQQ2nitfJpfBZ+gtDiQZdBjVO7lZcQnf4SNLq/0 UXxcYiDXmQJczRfJTfZuX7iYkFm6I1ypem81PHfCTyHAkg8RENBZZ4TOux6iEpx9cV hQLAvTaqU+wqtlSd7RHiRrc05M7CVuS00EFQrenJKysh14aiq2C+dxydSw3KfDUySQ 1cUCcdAhFXjgw== Date: Thu, 4 Sep 2025 10:46:32 +0300 From: Mike Rapoport To: Jinchao Wang Cc: Andrew Morton , Masami Hiramatsu , "Naveen N . Rao" , Thomas Gleixner , Ingo Molnar , Borislav Petkov , Dave Hansen , x86@kernel.org, "H. Peter Anvin" , Peter Zijlstra , Arnaldo Carvalho de Melo , Namhyung Kim , Mark Rutland , Alexander Shishkin , Jiri Olsa , Ian Rogers , Adrian Hunter , "Liang, Kan" , David Hildenbrand , Lorenzo Stoakes , "Liam R. Howlett" , Vlastimil Babka , Suren Baghdasaryan , Michal Hocko , linux-perf-users@vger.kernel.org, linux-mm@kvack.org, linux-trace-kernel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 01/18] mm/ksw: add build system support Message-ID: References: <20250904002126.1514566-1-wangjinchao600@gmail.com> <20250904002126.1514566-2-wangjinchao600@gmail.com> Precedence: bulk X-Mailing-List: linux-perf-users@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250904002126.1514566-2-wangjinchao600@gmail.com> On Thu, Sep 04, 2025 at 08:20:58AM +0800, Jinchao Wang wrote: > Add Kconfig and Makefile infrastructure for KStackWatch, a real-time tool > for debugging kernel stack corruption. ... > +static int __init kstackwatch_init(void) > +{ > + pr_info("KSW: module loaded\n"); > + pr_info("KSW: usage:\n"); > + pr_info("KSW: echo 'function+ip_offset[+depth] [local_var_offset:local_var_len]' > /proc/kstackwatch\n"); It feels like this belongs to Documentation/ rather than the kernel log. > + return 0; > +} > + -- Sincerely yours, Mike.