drivers/net/wireless/intel/ipw2x00/libipw_spy.c
Source file repositories/reference/linux-study-clean/drivers/net/wireless/intel/ipw2x00/libipw_spy.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/wireless/intel/ipw2x00/libipw_spy.c- Extension
.c- Size
- 6607 bytes
- Lines
- 234
- Domain
- Driver Families
- Bucket
- drivers/net
- Inferred role
- Driver Families: exported/initcall integration point
- Status
- integration 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.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/wireless.hlinux/netdevice.hlinux/etherdevice.hlinux/export.hnet/iw_handler.hnet/arp.hnet/wext.hlibipw.h
Detected Declarations
function Copyrightfunction ipw_wx_set_spyfunction ipw_wx_get_spyfunction ipw_wx_set_thrspyfunction ipw_wx_get_thrspyfunction iw_send_thrspy_eventfunction libipw_spy_updateexport ipw_wx_set_spyexport ipw_wx_get_spyexport ipw_wx_set_thrspyexport ipw_wx_get_thrspy
Annotated Snippet
if (ether_addr_equal(address, spydata->spy_address[i])) {
memcpy(&(spydata->spy_stat[i]), wstats,
sizeof(struct iw_quality));
match = i;
}
/* Generate an event if we cross the spy threshold.
* To avoid event storms, we have a simple hysteresis : we generate
* event only when we go under the low threshold or above the
* high threshold. */
if (match >= 0) {
if (spydata->spy_thr_under[match]) {
if (wstats->level > spydata->spy_thr_high.level) {
spydata->spy_thr_under[match] = 0;
iw_send_thrspy_event(dev, spydata,
address, wstats);
}
} else {
if (wstats->level < spydata->spy_thr_low.level) {
spydata->spy_thr_under[match] = 1;
iw_send_thrspy_event(dev, spydata,
address, wstats);
}
}
}
}
Annotation
- Immediate include surface: `linux/wireless.h`, `linux/netdevice.h`, `linux/etherdevice.h`, `linux/export.h`, `net/iw_handler.h`, `net/arp.h`, `net/wext.h`, `libipw.h`.
- Detected declarations: `function Copyright`, `function ipw_wx_set_spy`, `function ipw_wx_get_spy`, `function ipw_wx_set_thrspy`, `function ipw_wx_get_thrspy`, `function iw_send_thrspy_event`, `function libipw_spy_update`, `export ipw_wx_set_spy`, `export ipw_wx_get_spy`, `export ipw_wx_set_thrspy`.
- Atlas domain: Driver Families / drivers/net.
- Implementation status: integration 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.