From patchwork Mon Feb 26 13:39:56 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kory Maincent X-Patchwork-Id: 13572113 X-Patchwork-Delegate: kuba@kernel.org Received: from relay2-d.mail.gandi.net (relay2-d.mail.gandi.net [217.70.183.194]) (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 7FBAF12AAD6; Mon, 26 Feb 2024 13:40:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.70.183.194 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708954821; cv=none; b=ZCXERjvqpg0RPJlXd7wdK2ZjR4vcwFtRm3FFSS8A+006e4wX22T8QLbzh/CrUBbeXXrM4F7s2noUBIAHnOR63HTDTckqFVyGkIZ12E3v62LOD5N+urloioL8VZi6idmHtKsV/9+4umXUu9poYgkhdHUCtwxqvqne7JhBlSVJRDY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708954821; c=relaxed/simple; bh=V4PCxhGFH/jAAOAVBdY7uV5Loj9ZYxch0/IxD1tU438=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=UCc2QKJ3VPYw2s76TI1E78t8dfuDr2y28gPru1ihshf1xzpffKr5RH7vUbWpGtGetqMp1Ksw1TwIkCsBX3y+q+L+Rx6Z9oj9XaROCWLOU6mi5/rBXnNX5iziDWURSiqwA5Q1TPYoLSECYgS5FPnfhyknvs4eFHvIjb25EaIFgCM= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=MTEL1Hbr; arc=none smtp.client-ip=217.70.183.194 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="MTEL1Hbr" Received: by mail.gandi.net (Postfix) with ESMTPSA id 98D4E40006; Mon, 26 Feb 2024 13:40:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1708954817; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=04SFsb4YU2FLhX8c3BxjY03HBAIbE1GiOjr4sY7glFo=; b=MTEL1HbrPhYS33f3VMD/39lNpm4vOlJW4tjoQ9cLrWzF/oLy86y7LnqYeB5LcjEpG5XeT8 foowgbRM3sn1mBZtNbBNjktPAhsqqsjh9S2sc4V+U+k+LMR8K2TelwNbC+4CSdC7DyqoAa lUJ7FvqAeR2uhEA5X//f/UaO1KXNUA8PXIIbxSIgulhiGeDfFlgLqET1OZ5azSQF8yyecU JfeWRY2JlO7LI8vZUVEHB5J+1SRyiBlv94Im+syyQBbJev9JQQojcckcluWKEEpL0g5Ybi pJR9wj5oma0cZZal6xJnviJkmwClRmbHDrJoRs4yXeo0s44GvfxXZ4zAdaksAg== From: Kory Maincent Date: Mon, 26 Feb 2024 14:39:56 +0100 Subject: [PATCH net-next v9 05/13] net: net_tstamp: Add unspec field to hwtstamp_source enumeration Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20240226-feature_ptp_netnext-v9-5-455611549f21@bootlin.com> References: <20240226-feature_ptp_netnext-v9-0-455611549f21@bootlin.com> In-Reply-To: <20240226-feature_ptp_netnext-v9-0-455611549f21@bootlin.com> To: Florian Fainelli , Broadcom internal kernel review list , Andrew Lunn , Heiner Kallweit , Russell King , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Richard Cochran , Radu Pirea , Jay Vosburgh , Andy Gospodarek , Nicolas Ferre , Claudiu Beznea , Willem de Bruijn , Jonathan Corbet , Horatiu Vultur , UNGLinuxDriver@microchip.com, Simon Horman , Vladimir Oltean Cc: Thomas Petazzoni , netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, Maxime Chevallier , Rahul Rameshbabu , Kory Maincent X-Mailer: b4 0.12.4 X-GND-Sasl: kory.maincent@bootlin.com X-Patchwork-Delegate: kuba@kernel.org Prepare for future support of saving hwtstamp source in PTP xarray by introducing HWTSTAMP_SOURCE_UNSPEC to hwtstamp_source enum, setting it to 0 to match old behavior of no source defined. Signed-off-by: Kory Maincent --- Change in v8: - New patch --- include/linux/net_tstamp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/net_tstamp.h b/include/linux/net_tstamp.h index 3799c79b6c83..662074b08c94 100644 --- a/include/linux/net_tstamp.h +++ b/include/linux/net_tstamp.h @@ -14,6 +14,7 @@ SOF_TIMESTAMPING_RAW_HARDWARE) enum hwtstamp_source { + HWTSTAMP_SOURCE_UNSPEC, HWTSTAMP_SOURCE_NETDEV, HWTSTAMP_SOURCE_PHYLIB, };