net/core/timestamping.c

Source file repositories/reference/linux-study-clean/net/core/timestamping.c

File Facts

System
Linux kernel
Corpus path
net/core/timestamping.c
Extension
.c
Size
2324 bytes
Lines
115
Domain
Networking Core
Bucket
Sockets, Protocols, Packet Path, And Network Policy
Inferred role
Networking Core: exported/initcall integration point
Status
integration implementation candidate

Why This File Exists

Networking stack implementation surface: socket APIs, protocol dispatch, packet flow, routing, filtering, and network namespaces.

Dependency Surface

Detected Declarations

Annotated Snippet

if (!phy_is_default_hwtstamp(phydev)) {
			rcu_read_unlock();
			return;
		}
	}
	rcu_read_unlock();

	type = classify(skb);
	if (type == PTP_CLASS_NONE)
		return;

	mii_ts = phydev->mii_ts;
	if (likely(mii_ts->txtstamp)) {
		clone = skb_clone_sk(skb);
		if (!clone)
			return;
		mii_ts->txtstamp(mii_ts, clone, type);
	}
}
EXPORT_SYMBOL_GPL(skb_clone_tx_timestamp);

bool skb_defer_rx_timestamp(struct sk_buff *skb)
{
	struct hwtstamp_provider *hwprov;
	struct mii_timestamper *mii_ts;
	struct phy_device *phydev;
	unsigned int type;

	if (!skb->dev)
		return false;

	rcu_read_lock();
	hwprov = rcu_dereference(skb->dev->hwprov);
	if (hwprov) {
		if (hwprov->source != HWTSTAMP_SOURCE_PHYLIB ||
		    !hwprov->phydev) {
			rcu_read_unlock();
			return false;
		}

		phydev = hwprov->phydev;
	} else {
		phydev = skb->dev->phydev;
		if (!phy_is_default_hwtstamp(phydev)) {
			rcu_read_unlock();
			return false;
		}
	}
	rcu_read_unlock();

	if (skb_headroom(skb) < ETH_HLEN)
		return false;

	__skb_push(skb, ETH_HLEN);

	type = ptp_classify_raw(skb);

	__skb_pull(skb, ETH_HLEN);

	if (type == PTP_CLASS_NONE)
		return false;

	mii_ts = phydev->mii_ts;
	if (likely(mii_ts->rxtstamp))
		return mii_ts->rxtstamp(mii_ts, skb, type);

	return false;
}
EXPORT_SYMBOL_GPL(skb_defer_rx_timestamp);

Annotation

Implementation Notes