drivers/net/wireless/intel/iwlwifi/iwl-devtrace.c
Source file repositories/reference/linux-study-clean/drivers/net/wireless/intel/iwlwifi/iwl-devtrace.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/wireless/intel/iwlwifi/iwl-devtrace.c- Extension
.c- Size
- 1131 bytes
- Lines
- 37
- Domain
- Driver Families
- Bucket
- drivers/net
- Inferred role
- Driver Families: implementation source
- Status
- source implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/module.hiwl-trans.hiwl-devtrace.h
Detected Declarations
function __trace_iwlwifi_dev_rx
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/******************************************************************************
*
* Copyright(c) 2009 - 2014 Intel Corporation. All rights reserved.
* Copyright (C) 2018, 2023 Intel Corporation
*****************************************************************************/
#include <linux/module.h>
/* sparse doesn't like tracepoint macros */
#ifndef __CHECKER__
#include "iwl-trans.h"
#define CREATE_TRACE_POINTS
#ifdef CONFIG_CC_IS_GCC
#pragma GCC diagnostic ignored "-Wsuggest-attribute=format"
#endif
#include "iwl-devtrace.h"
EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_event);
EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_cont_event);
EXPORT_TRACEPOINT_SYMBOL(iwlwifi_dev_ucode_wrap_event);
#else
#include "iwl-devtrace.h"
#endif /* __CHECKER__ */
void __trace_iwlwifi_dev_rx(struct iwl_trans *trans, void *pkt, size_t len)
{
size_t hdr_offset = 0, trace_len;
trace_len = iwl_rx_trace_len(trans, pkt, len, &hdr_offset);
trace_iwlwifi_dev_rx(trans->dev, pkt, len, trace_len, hdr_offset);
if (trace_len < len)
trace_iwlwifi_dev_rx_data(trans->dev, pkt, len, trace_len);
}
Annotation
- Immediate include surface: `linux/module.h`, `iwl-trans.h`, `iwl-devtrace.h`.
- Detected declarations: `function __trace_iwlwifi_dev_rx`.
- Atlas domain: Driver Families / drivers/net.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.