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 B190385260; Mon, 26 Aug 2024 07:21:01 +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=1724656861; cv=none; b=nEdhhwxfb0M4LBmYFIUqe9BaRGnHKq9fKHQsEX08DoPmyRVbPfDHWH31wgdd+HU+pFZDCGM+BMfqq42KDYhIDryeXOb6TwaFAbN92/MqBNpzdJfla5+hAgjodNTgoLOCCEH6Hwwo/Li4mIXMRn1avUPor/OkojXlqELsa9jCZV4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724656861; c=relaxed/simple; bh=qcMCBtUBy484YxdwCvNqNqPvNuQV+qnC3pQD80jjxAg=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=fLNnT3LIimwhJqSei7C4pkQRq5jo1dkQbgE7NS42UgU8D9iQbqCS/vMKjuxBjRBx91eG9Jd2pqLx7BXShsOB6qHZ9v+YKuZ81LUcm+vowdZGUBXoic69dzUw27fG1Q5uF5wbJ04mpDu0H8KhwmTgMC8vCXWFZ543YO/rTAD/6Fo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=zx2c4.com header.i=@zx2c4.com header.b=T7JLAXHA; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=zx2c4.com header.i=@zx2c4.com header.b="T7JLAXHA" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F09A4C4CC2E; Mon, 26 Aug 2024 07:20:58 +0000 (UTC) Authentication-Results: smtp.kernel.org; dkim=pass (1024-bit key) header.d=zx2c4.com header.i=@zx2c4.com header.b="T7JLAXHA" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zx2c4.com; s=20210105; t=1724656857; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=cuB0YoGZhYs7TpZj24P+wVPnnaqDYDZ5SUiO+GVRr0s=; b=T7JLAXHAyeqrOhp4YIVWiuAEzZrJfTb/4IQwceTEiw10dy3k75OG3jvzg0ui7cWI/QbD0a mTgPEG086WEzE50bLMn0T16iVBfFqq0GVWR9/O3q5fwHIpbL8STnqrZcDmcRFM/aGrnu9s ZvFsbaSZzLv7aqahzI7qzXfiP7ZSyqI= Received: by mail.zx2c4.com (ZX2C4 Mail Server) with ESMTPSA id 80829940 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Mon, 26 Aug 2024 07:20:57 +0000 (UTC) Date: Mon, 26 Aug 2024 09:20:48 +0200 From: "Jason A. Donenfeld" To: Christophe Leroy Cc: Michael Ellerman , Nicholas Piggin , Naveen N Rao , Andy Lutomirski , Thomas Gleixner , Ingo Molnar , Borislav Petkov , Dave Hansen , x86@kernel.org, "H. Peter Anvin" , Theodore Ts'o , Arnd Bergmann , Andrew Morton , Steven Rostedt , Masami Hiramatsu , Mathieu Desnoyers , Vincenzo Frascino , Shuah Khan , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-arch@vger.kernel.org, linux-mm@kvack.org, linux-trace-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org Subject: Re: [PATCH v2 01/17] asm-generic/unaligned.h: Extract common header for vDSO Message-ID: References: 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=utf-8 Content-Disposition: inline In-Reply-To: On Thu, Aug 22, 2024 at 09:13:09AM +0200, Christophe Leroy wrote: > include/asm-generic/unaligned.h | 11 +---------- > include/vdso/unaligned.h | 15 +++++++++++++++ > 2 files changed, 16 insertions(+), 10 deletions(-) > create mode 100644 include/vdso/unaligned.h Do you need to also adjust the `#include ` inside of lib/vdso/getrandom.c to instead read `#include `? Jason