#include <linux/kernel_stat.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/spinlock.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/list.h>
#include <linux/errno.h>
#include <linux/err.h>
#include <linux/device.h>
#include <linux/cpu.h>
#include <linux/reboot.h>
#include <net/iucv/iucv.h>
#include <linux/atomic.h>
#include <asm/ebcdic.h>
#include <asm/io.h>
#include <asm/irq.h>
#include <asm/smp.h>
Go to the source code of this file.
|
enum | iucv_pm_states { IUCV_PM_INITIAL = 0,
IUCV_PM_FREEZING = 1,
IUCV_PM_THAWING = 2,
IUCV_PM_RESTORING = 3
} |
|
enum | iucv_command_codes {
IUCV_QUERY = 0,
IUCV_RETRIEVE_BUFFER = 2,
IUCV_SEND = 4,
IUCV_RECEIVE = 5,
IUCV_REPLY = 6,
IUCV_REJECT = 8,
IUCV_PURGE = 9,
IUCV_ACCEPT = 10,
IUCV_CONNECT = 11,
IUCV_DECLARE_BUFFER = 12,
IUCV_QUIESCE = 13,
IUCV_RESUME = 14,
IUCV_SEVER = 15,
IUCV_SETMASK = 16,
IUCV_SETCONTROLMASK = 17
} |
|
#define IUCV_IPFGMID 0x04 |
#define IUCV_IPFGPID 0x02 |
#define IUCV_IPNORPY 0x10 |
#define IUCV_IPSRCCLS 0x01 |
#define IUCV_IPTRGCLS 0x01 |
#define KMSG_COMPONENT "iucv" |
- Enumerator:
IUCV_QUERY |
|
IUCV_RETRIEVE_BUFFER |
|
IUCV_SEND |
|
IUCV_RECEIVE |
|
IUCV_REPLY |
|
IUCV_REJECT |
|
IUCV_PURGE |
|
IUCV_ACCEPT |
|
IUCV_CONNECT |
|
IUCV_DECLARE_BUFFER |
|
IUCV_QUIESCE |
|
IUCV_RESUME |
|
IUCV_SEVER |
|
IUCV_SETMASK |
|
IUCV_SETCONTROLMASK |
|
Definition at line 163 of file iucv.c.
- Enumerator:
IUCV_PM_INITIAL |
|
IUCV_PM_FREEZING |
|
IUCV_PM_THAWING |
|
IUCV_PM_RESTORING |
|
Definition at line 83 of file iucv.c.
Initial value:= {
.name = "iucv",
.match = iucv_bus_match,
.pm = &iucv_pm_ops,
}
Definition at line 105 of file iucv.c.