-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathvmd250.h
28 lines (25 loc) · 1.51 KB
/
vmd250.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* VMD250.H (c) Copyright Harold Grovesteen, 2009-2012 */
/* z/VM 5.4 DIAGNOSE code X'250' */
/* */
/* Released under "The Q Public License Version 1" */
/* (http://www.hercules-390.org/herclic.html) as modifications to */
/* Hercules. */
#if !defined(__VMD250_H__)
#define __VMD250_H__
/*-------------------------------------------------------------------*/
/* DIAGNOSE X'250' Block I/O - Device Environment */
/*-------------------------------------------------------------------*/
struct VMBIOENV {
DEVBLK *dev; /* Device block pointer of device */
S32 blksiz; /* Block size being used by the guest */
S64 offset; /* Guest provided offset */
S64 begblk; /* BIO established beginning block number */
S64 endblk; /* BIO established ending block number */
int isCKD; /* Count-Key-Data device */
int isRO; /* Device is read-only */
int blkphys; /* Block to physical relationship */
/* For FBA: physical sectors per block */
/* For CKD: physical blocks per track */
BYTE sense[32]; /* Save area for any pending sense data */
};
#endif /* !defined(__VMD250_H__) */