diff options
| author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2014-01-24 03:18:52 -0500 |
|---|---|---|
| committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2014-01-24 03:40:59 -0500 |
| commit | 07be0382097027cde68d9268cc628741069b5762 (patch) | |
| tree | fee25ed4434d1d3d1d670b53065864ccc12c0d18 /drivers | |
| parent | fded4329da9e8486b434d6c4aceab1ab3f433d8a (diff) | |
s390/hypfs: add interface for diagnose 0x304
To provide access to the set-partition-resource-parameter interface
to user space add a new attribute to hypfs/debugfs:
* s390_hypsfs/diag_304
The data for the query-partition-resource-parameters command can
be access by a read on the attribute. All other diagnose 0x304
requests need to be submitted via ioctl with CAP_SYS_ADMIN rights.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/s390/char/sclp_cmd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/s390/char/sclp_cmd.c b/drivers/s390/char/sclp_cmd.c index cb3c4e05a385..49af8eeb90ea 100644 --- a/drivers/s390/char/sclp_cmd.c +++ b/drivers/s390/char/sclp_cmd.c | |||
| @@ -700,3 +700,8 @@ out: | |||
| 700 | free_page((unsigned long) sccb); | 700 | free_page((unsigned long) sccb); |
| 701 | return rc; | 701 | return rc; |
| 702 | } | 702 | } |
| 703 | |||
| 704 | bool sclp_has_sprp(void) | ||
| 705 | { | ||
| 706 | return !!(sclp_fac84 & 0x2); | ||
| 707 | } | ||
