drivers/dca/dca-sysfs.c
Source file repositories/reference/linux-study-clean/drivers/dca/dca-sysfs.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/dca/dca-sysfs.c- Extension
.c- Size
- 1891 bytes
- Lines
- 95
- Domain
- Driver Families
- Bucket
- drivers/dca
- 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.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/kernel.hlinux/spinlock.hlinux/device.hlinux/idr.hlinux/kdev_t.hlinux/err.hlinux/dca.hlinux/gfp.hlinux/export.h
Detected Declarations
function dca_sysfs_add_reqfunction dca_sysfs_remove_reqfunction dca_sysfs_add_providerfunction dca_sysfs_remove_providerfunction dca_sysfs_initfunction dca_sysfs_exit
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright(c) 2007 - 2009 Intel Corporation. All rights reserved.
*/
#include <linux/kernel.h>
#include <linux/spinlock.h>
#include <linux/device.h>
#include <linux/idr.h>
#include <linux/kdev_t.h>
#include <linux/err.h>
#include <linux/dca.h>
#include <linux/gfp.h>
#include <linux/export.h>
static const struct class dca_class = {
.name = "dca",
};
static struct idr dca_idr;
static spinlock_t dca_idr_lock;
int dca_sysfs_add_req(struct dca_provider *dca, struct device *dev, int slot)
{
struct device *cd;
static int req_count;
cd = device_create(&dca_class, dca->cd, MKDEV(0, slot + 1), NULL,
"requester%d", req_count++);
return PTR_ERR_OR_ZERO(cd);
}
void dca_sysfs_remove_req(struct dca_provider *dca, int slot)
{
device_destroy(&dca_class, MKDEV(0, slot + 1));
}
int dca_sysfs_add_provider(struct dca_provider *dca, struct device *dev)
{
struct device *cd;
int ret;
idr_preload(GFP_KERNEL);
spin_lock(&dca_idr_lock);
ret = idr_alloc(&dca_idr, dca, 0, 0, GFP_NOWAIT);
if (ret >= 0)
dca->id = ret;
spin_unlock(&dca_idr_lock);
idr_preload_end();
if (ret < 0)
return ret;
cd = device_create(&dca_class, dev, MKDEV(0, 0), NULL, "dca%d", dca->id);
if (IS_ERR(cd)) {
spin_lock(&dca_idr_lock);
idr_remove(&dca_idr, dca->id);
spin_unlock(&dca_idr_lock);
return PTR_ERR(cd);
}
dca->cd = cd;
return 0;
}
void dca_sysfs_remove_provider(struct dca_provider *dca)
{
device_unregister(dca->cd);
dca->cd = NULL;
spin_lock(&dca_idr_lock);
idr_remove(&dca_idr, dca->id);
spin_unlock(&dca_idr_lock);
}
int __init dca_sysfs_init(void)
{
int err;
idr_init(&dca_idr);
spin_lock_init(&dca_idr_lock);
err = class_register(&dca_class);
if (err) {
idr_destroy(&dca_idr);
return err;
}
return 0;
}
void __exit dca_sysfs_exit(void)
{
Annotation
- Immediate include surface: `linux/kernel.h`, `linux/spinlock.h`, `linux/device.h`, `linux/idr.h`, `linux/kdev_t.h`, `linux/err.h`, `linux/dca.h`, `linux/gfp.h`.
- Detected declarations: `function dca_sysfs_add_req`, `function dca_sysfs_remove_req`, `function dca_sysfs_add_provider`, `function dca_sysfs_remove_provider`, `function dca_sysfs_init`, `function dca_sysfs_exit`.
- Atlas domain: Driver Families / drivers/dca.
- Implementation status: source implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
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.