From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C3454EB64DA for ; Thu, 22 Jun 2023 21:18:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231236AbjFVVSn (ORCPT ); Thu, 22 Jun 2023 17:18:43 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35018 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229721AbjFVVSh (ORCPT ); Thu, 22 Jun 2023 17:18:37 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 27898F1 for ; Thu, 22 Jun 2023 14:18:37 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 9FCCA6190E for ; Thu, 22 Jun 2023 21:18:36 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7A149C433C0; Thu, 22 Jun 2023 21:18:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1687468716; bh=DZ6KSu/L/tBR0J1/oT6QXZ3+nwsYKmM+bE2i/fxRL7M=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=F4NNu7Suak7UiG/ID6dX+Q+PBZg+Tp8u6Cq7kclS9Fq4i+V31quJnKzfrEtLzEavW cuGQ3acLp7V5aKeOmYL1GVhxoymK6cGMViF5sc0AR/iv2JfVwk7JlEJ+RAc+Iy40KI MC1Go7Ptj9DAw6lcarXaue6pDNB56gIHeUj8b/uS908ACdSbTDDUj+ck7lFTAzEFs+ WK8Kh11BS5qEsBXCz9wmFsLz8F9nrwa9f5A7JnKCaI97BtYeax1Mt89E2RmO4oOsJf VFHROCKPGXrRcxa0Q0kIS65s6fq/iRk+RaxUBxAM+KG/c7N0RGz6dzCLfHA51ibNLQ vEOlXOxI3VRxA== Date: Thu, 22 Jun 2023 23:18:32 +0200 From: Frederic Weisbecker To: Thomas Gleixner Cc: LKML , Anna-Maria Behnsen , John Stultz , Peter Zijlstra , Ingo Molnar , Stephen Boyd , Eric Biederman , Oleg Nesterov Subject: Re: [patch 08/45] posix-timers: Convert timer list to hlist Message-ID: References: <20230606132949.068951363@linutronix.de> <20230606142031.475141256@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20230606142031.475141256@linutronix.de> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Le Tue, Jun 06, 2023 at 04:37:31PM +0200, Thomas Gleixner a écrit : > No requirement for a real list. Spare a few bytes. > > Signed-off-by: Thomas Gleixner Reviewed-by: Frederic Weisbecker