|
Linux Kernel
3.7.1
|
#include <linux/module.h>#include <linux/init.h>#include <linux/interrupt.h>#include <linux/miscdevice.h>#include <linux/fs.h>#include <linux/proc_fs.h>#include <linux/seq_file.h>#include <linux/compat.h>#include <linux/slab.h>#include <linux/atomic.h>#include <asm/uaccess.h>#include <linux/hw_random.h>#include <linux/debugfs.h>#include <asm/debug.h>#include "zcrypt_debug.h"#include "zcrypt_api.h"Go to the source code of this file.
Macros | |
| #define | LBUFSIZE 1200UL |
Variables | |
| atomic_t | zcrypt_rescan_req = ATOMIC_INIT(0) |
| #define LBUFSIZE 1200UL |
| EXPORT_SYMBOL | ( | zcrypt_rescan_req | ) |
| EXPORT_SYMBOL | ( | zcrypt_device_get | ) |
| EXPORT_SYMBOL | ( | zcrypt_device_put | ) |
| EXPORT_SYMBOL | ( | zcrypt_device_alloc | ) |
| EXPORT_SYMBOL | ( | zcrypt_device_free | ) |
| EXPORT_SYMBOL | ( | zcrypt_device_register | ) |
| EXPORT_SYMBOL | ( | zcrypt_device_unregister | ) |
| EXPORT_SYMBOL | ( | zcrypt_msgtype_register | ) |
| EXPORT_SYMBOL | ( | zcrypt_msgtype_unregister | ) |
| EXPORT_SYMBOL | ( | zcrypt_msgtype_request | ) |
| EXPORT_SYMBOL | ( | zcrypt_msgtype_release | ) |
| MODULE_AUTHOR | ( | "IBM Corporation" | ) |
| module_exit | ( | zcrypt_api_exit | ) |
| module_init | ( | zcrypt_api_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
zcrypt_api_exit(): Module termination.
The module termination code.
Definition at line 1379 of file zcrypt_api.c.
zcrypt_api_init(): Module initialization.
The module initialization code.
Definition at line 1344 of file zcrypt_api.c.
Definition at line 1330 of file zcrypt_api.c.
Definition at line 1315 of file zcrypt_api.c.
|
read |
Definition at line 215 of file zcrypt_api.c.
| void zcrypt_device_free | ( | struct zcrypt_device * | zdev | ) |
Definition at line 237 of file zcrypt_api.c.
| void zcrypt_device_get | ( | struct zcrypt_device * | zdev | ) |
Definition at line 203 of file zcrypt_api.c.
| int zcrypt_device_put | ( | struct zcrypt_device * | zdev | ) |
Definition at line 209 of file zcrypt_api.c.
| int zcrypt_device_register | ( | struct zcrypt_device * | zdev | ) |
zcrypt_device_register() - Register a crypto device. : Pointer to a crypto device
Register a crypto device. Returns 0 if successful.
Definition at line 250 of file zcrypt_api.c.
| void zcrypt_device_unregister | ( | struct zcrypt_device * | zdev | ) |
zcrypt_device_unregister(): Unregister a crypto device. : Pointer to crypto device
Unregister a crypto device.
Definition at line 297 of file zcrypt_api.c.
| void zcrypt_msgtype_register | ( | struct zcrypt_ops * | zops | ) |
Definition at line 312 of file zcrypt_api.c.
| void zcrypt_msgtype_release | ( | struct zcrypt_ops * | zops | ) |
Definition at line 366 of file zcrypt_api.c.
|
read |
Definition at line 351 of file zcrypt_api.c.
| void zcrypt_msgtype_unregister | ( | struct zcrypt_ops * | zops | ) |
Definition at line 322 of file zcrypt_api.c.
| atomic_t zcrypt_rescan_req = ATOMIC_INIT(0) |
Definition at line 61 of file zcrypt_api.c.
1.8.2