mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
a53c8fab3f
Remove the file name from the comment at top of many files. In most cases the file name was wrong anyway, so it's rather pointless. Also unify the IBM copyright statement. We did have a lot of sightly different statements and wanted to change them one after another whenever a file gets touched. However that never happened. Instead people start to take the old/"wrong" statements to use as a template for new files. So unify all of them in one go. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
32 lines
765 B
C
32 lines
765 B
C
/*
|
|
* definitions for external memory segment support
|
|
* Copyright IBM Corp. 2003
|
|
*/
|
|
|
|
#ifndef _ASM_S390X_DCSS_H
|
|
#define _ASM_S390X_DCSS_H
|
|
#ifndef __ASSEMBLY__
|
|
|
|
/* possible values for segment type as returned by segment_info */
|
|
#define SEG_TYPE_SW 0
|
|
#define SEG_TYPE_EW 1
|
|
#define SEG_TYPE_SR 2
|
|
#define SEG_TYPE_ER 3
|
|
#define SEG_TYPE_SN 4
|
|
#define SEG_TYPE_EN 5
|
|
#define SEG_TYPE_SC 6
|
|
#define SEG_TYPE_EWEN 7
|
|
|
|
#define SEGMENT_SHARED 0
|
|
#define SEGMENT_EXCLUSIVE 1
|
|
|
|
int segment_load (char *name, int segtype, unsigned long *addr, unsigned long *length);
|
|
void segment_unload(char *name);
|
|
void segment_save(char *name);
|
|
int segment_type (char* name);
|
|
int segment_modify_shared (char *name, int do_nonshared);
|
|
void segment_warning(int rc, char *seg_name);
|
|
|
|
#endif
|
|
#endif
|