lib/zlib_inflate/inflate_syms.c
Source file repositories/reference/linux-study-clean/lib/zlib_inflate/inflate_syms.c
File Facts
- System
- Linux kernel
- Corpus path
lib/zlib_inflate/inflate_syms.c- Extension
.c- Size
- 560 bytes
- Lines
- 23
- Domain
- Kernel Services
- Bucket
- lib
- Inferred role
- Kernel Services: exported/initcall integration point
- Status
- integration implementation candidate
Why This File Exists
Shared kernel service surface used by multiple subsystems, including helpers, cryptography, virtualization support, and async I/O infrastructure.
- Shared kernel service surface used by multiple subsystems, including helpers, cryptography, virtualization support, and async I/O infrastructure.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
Dependency Surface
linux/module.hlinux/init.hlinux/zlib.h
Detected Declarations
export zlib_inflate_workspacesizeexport zlib_inflateexport zlib_inflateInit2export zlib_inflateEndexport zlib_inflateResetexport zlib_inflateIncompexport zlib_inflate_blob
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/*
* linux/lib/zlib_inflate/inflate_syms.c
*
* Exported symbols for the inflate functionality.
*
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/zlib.h>
EXPORT_SYMBOL(zlib_inflate_workspacesize);
EXPORT_SYMBOL(zlib_inflate);
EXPORT_SYMBOL(zlib_inflateInit2);
EXPORT_SYMBOL(zlib_inflateEnd);
EXPORT_SYMBOL(zlib_inflateReset);
EXPORT_SYMBOL(zlib_inflateIncomp);
EXPORT_SYMBOL(zlib_inflate_blob);
MODULE_DESCRIPTION("Data decompression using the deflation algorithm");
MODULE_LICENSE("GPL");
Annotation
- Immediate include surface: `linux/module.h`, `linux/init.h`, `linux/zlib.h`.
- Detected declarations: `export zlib_inflate_workspacesize`, `export zlib_inflate`, `export zlib_inflateInit2`, `export zlib_inflateEnd`, `export zlib_inflateReset`, `export zlib_inflateIncomp`, `export zlib_inflate_blob`.
- Atlas domain: Kernel Services / lib.
- 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.