drivers/net/dsa/realtek/rtl8365mb_vlan.h
Source file repositories/reference/linux-study-clean/drivers/net/dsa/realtek/rtl8365mb_vlan.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/net/dsa/realtek/rtl8365mb_vlan.h- Extension
.h- Size
- 1303 bytes
- Lines
- 40
- 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/types.hrealtek.h
Detected Declarations
enum rtl8365mb_frame_ingress
Annotated Snippet
#ifndef _REALTEK_RTL8365MB_VLAN_H
#define _REALTEK_RTL8365MB_VLAN_H
#include <linux/types.h>
#include "realtek.h"
enum rtl8365mb_frame_ingress {
RTL8365MB_FRAME_TYPE_ANY_FRAME = 0,
RTL8365MB_FRAME_TYPE_TAGGED_ONLY,
RTL8365MB_FRAME_TYPE_UNTAGGED_ONLY,
};
int rtl8365mb_vlan_port_get_pvid(struct realtek_priv *priv, int port,
u16 *pvid);
int
rtl8365mb_vlan_port_get_framefilter(struct realtek_priv *priv,
int port,
enum rtl8365mb_frame_ingress *frame_type);
int
rtl8365mb_vlan_port_set_framefilter(struct realtek_priv *priv,
int port,
enum rtl8365mb_frame_ingress frame_type);
int rtl8365mb_vlan_4k_port_add(struct dsa_switch *ds, int port,
const struct switchdev_obj_port_vlan *vlan,
struct netlink_ext_ack *extack);
int rtl8365mb_vlan_4k_port_del(struct dsa_switch *ds, int port,
const struct switchdev_obj_port_vlan *vlan);
int rtl8365mb_vlan_pvid_port_set(struct dsa_switch *ds, int port, u16 vid,
struct netlink_ext_ack *extack);
int rtl8365mb_vlan_pvid_port_clear(struct dsa_switch *ds, int port, u16 vid);
#endif /* _REALTEK_RTL8365MB_VLAN_H */
Annotation
- Immediate include surface: `linux/types.h`, `realtek.h`.
- Detected declarations: `enum rtl8365mb_frame_ingress`.
- 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.