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 1A5573F164A; Thu, 14 May 2026 13:55:28 +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=1778766928; cv=none; b=OqQ14qKyB/60TeHNzxjbVf0FRV6ulS1gRjEGPB/1FmScJ6nq3Ylf9PgahH7w8o7zBrQWV1dgUSFXRq6ZJ+TAmXV4/mReZf8K3O1jCLCluRCSc14Y/nbJIyH3TaRGU4Pgqhf2Teu0h1dhxu2Hjf+rBLZVlrYzZhLcpLY9quVCF4M= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778766928; c=relaxed/simple; bh=r7mG7yDnWwBV/HSGjyNKbzwn1lcn8TH2fUbNtfrwYyk=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=lgj30YowMHXq3UyDrIyShMYfLWlJ0V+QccoL37SqsPeCst8SOMECW3pcGeERAOlA9lthm7trE/YWuP/8wNrLCOfnY2Jpz6yu+wOgrjDk6nNgtYDwlI8TB7PRqRUhIcDIEbJzbWN5s3mB53QSwDicOkfEYTs+PY4FdoQvY3OUorU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=fOqEg7Fk; 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="fOqEg7Fk" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B806BC2BCB8; Thu, 14 May 2026 13:55:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778766928; bh=r7mG7yDnWwBV/HSGjyNKbzwn1lcn8TH2fUbNtfrwYyk=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=fOqEg7FkJK8+qC9U3mtMh20HHfE19ij1yPh8Dpo1+m4k5p92nrcz/SL0Yz0EtLg4D OP2yuJRZDGgjujMGIJALgP3g6RFN1yQ+Azv5aVCziTb38MFHijPVVIZDLJ8St0bXdF 4l8nGO/66DPkfDX5EIV3Phh3NpyF+tRnvMJrm8kIFbQortL+HWFlDiDQZkK5ITraKK LY1mEW60DUtnqQuTkQ4Er5xZsiXnLuVhQUJs3dUjqxM0OSQxRRzVS5VANrJJrULRN+ PhVQpaMIBrUUdLT5SmJ40O3+WgaoAt1qsPcSLmhKVzmicCwhfqT2RGDqpg7LLh7291 y2CnmFfcw7fTQ== Date: Thu, 14 May 2026 06:55:26 -0700 From: Jakub Kicinski To: Vadim Fedorenko Cc: Rodolfo Giometti , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [RFC PATCH] pps: make number of PPS devices configurable Message-ID: <20260514065526.2ed937dc@kernel.org> In-Reply-To: <20260514112614.2016026-1-vadim.fedorenko@linux.dev> References: <20260514112614.2016026-1-vadim.fedorenko@linux.dev> 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-Transfer-Encoding: 7bit On Thu, 14 May 2026 11:26:14 +0000 Vadim Fedorenko wrote: > Modern systems may have more than 16 PPS sources and current hard-coded > limit breaks registration of some devices. Make the limit configurable > via Kconfig, keep default value of 16 devices. UAPI has to be changed to > support maximum possible number. Hm, since this is effectively just sizing an IDR maybe we should just bump it to 64? It appears to cost nothing if not used.