From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 D9ED135C694 for ; Sun, 9 Aug 2026 05:52:25 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786254746; cv=none; b=hdn0w1BMVWuDoehPBlALIeFgOdl1wQ+FvIOwXX6nIpFyP/a2PoMj/OJCRS0dwv0OFBCrI0CT1YV6MzxJUZOuscbrmIGx1GpIdUxBLXzgOxwYWCpKRGJ4jf+sONtAdkJy2pv8XXE7nEjGFrN9Ce6yFyZGWT36v8gEfWaPU07ipYU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786254746; c=relaxed/simple; bh=HGk/7/fxvoJElRO5GLpHKdsGrt+MCz1KTIQj0+Inf68=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=flKh3eyd9TAi7pYl0DtR4ZP+XQqzFMPTKyDVSbVaZpxCEJxB6nv4yAwpU3BjzrIM7K3+KZWjukgcdsdrlcF91VnJyZa5R6Km2K2XTEkWWIVME2+IV3SZO4Yx96UfX6Z0/TIuWpu2eBEGLN6IsrK37gUhuAzuFraMmlP/9Wlf6Io= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=PxWrxtKE; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="PxWrxtKE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1BFCB1F000E9; Sun, 9 Aug 2026 05:52:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1786254745; bh=8rYXKoqqwOYghyOT0q3H1eZIzDiHK6OZjWUPUxJ0IzY=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=PxWrxtKEOcIk8xovN6ETBz1GSnJ1HubTBMk3+A1ZpeSwQWQSzlr03Qif+RN1OBWMB 8+WYjwK8riaGCZN4baibIyBF+kHcnyY3hbT6DumNgUY/8ARbzL8XSgUfavmp5oQZzx Gd62OYE1AMiBx1l1HB9VkXJmMTF1aAG9EYu9UB7bHuJIOCAxhazTAaWpwx4ux0YYrl z1uuSPaMjdu7WyGoOfuB/ZRDDN/jLvH+DJX7WJhvGye7SHjxCEhNGaV4WGvDQTvxBy u3VD6r6ISBTptWH8CfmqKpjm7yXvKtSfr/BOcC6Afxt1/Y31MV3DJyKv0/TuSzbrvs 7aXfXF9YqE3ug== Date: Sun, 9 Aug 2026 08:52:21 +0300 From: Mike Rapoport To: Henry Elderman Cc: akpm@linux-foundation.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Henry Elderman Subject: Re: [PATCH] mm/execmem: fix fallback_end description in kernel-doc Message-ID: References: <20260807091958.4735-1-henry.elderman.edu+linux@gmail.com> Precedence: bulk X-Mailing-List: linux-kernel@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: <20260807091958.4735-1-henry.elderman.edu+linux@gmail.com> On Fri, Aug 07, 2026 at 11:19:58AM +0200, Henry Elderman wrote: > The kernel-doc for struct execmem_range incorrectly describes @fallback_end > as "start". Correct it to "end". > > Signed-off-by: Henry Elderman Reviewed-by: Mike Rapoport (Microsoft) > --- > include/linux/execmem.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/execmem.h b/include/linux/execmem.h > index 7de229134..1bd34925d 100644 > --- a/include/linux/execmem.h > +++ b/include/linux/execmem.h > @@ -89,7 +89,7 @@ static inline int execmem_restore_rox(void *ptr, size_t size) { return 0; } > * @end: address space end (inclusive) > * @fallback_start: start of the secondary address space range for fallback > * allocations on architectures that require it > - * @fallback_end: start of the secondary address space (inclusive) > + * @fallback_end: end of the secondary address space (inclusive) > * @pgprot: permissions for memory in this address space > * @alignment: alignment required for text allocations > * @flags: options for memory allocations for this range > -- > 2.51.0 > -- Sincerely yours, Mike.