diff options
author | Harald Freudenberger <freude@linux.vnet.ibm.com> | 2016-11-24 08:45:21 +0300 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2016-12-14 18:33:39 +0300 |
commit | cccd85bfb7bf6787302435c669ceec23b5a5301c (patch) | |
tree | c646f0474f1344372596c37adff268dbdb4f07c3 /drivers/s390/crypto/zcrypt_api.h | |
parent | bf9f31190aa176c43c15cf58b60818d325e0f851 (diff) | |
download | linux-cccd85bfb7bf6787302435c669ceec23b5a5301c.tar.xz |
s390/zcrypt: Rework debug feature invocations.
Rework the debug feature calls and initialization. There
are now two debug feature entries used by the zcrypt code.
The first is 'ap' with all the AP bus related stuff and the
second is 'zcrypt' with all the zcrypt and devices and
driver related entries. However, there isn't much traffic on
both debug features. The ap bus code emits only some debug
info and for zcrypt devices on appearance and disappearance
there is an entry written.
The new dbf invocations use the sprintf buffer layout,
whereas the old implementation used the ascii dbf buffer.
There are now 5*8=40 bytes used for each entry, resulting in
5 parameters per call. As the sprintf buffer needs a format
string the first parameter provides this and so up to 4 more
parameters can be used. Alltogehter the new layout should be
much more human readable for customers and test.
Signed-off-by: Harald Freudenberger <freude@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390/crypto/zcrypt_api.h')
-rw-r--r-- | drivers/s390/crypto/zcrypt_api.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/s390/crypto/zcrypt_api.h b/drivers/s390/crypto/zcrypt_api.h index 4fb892b99f41..274a59051534 100644 --- a/drivers/s390/crypto/zcrypt_api.h +++ b/drivers/s390/crypto/zcrypt_api.h @@ -132,8 +132,6 @@ struct zcrypt_card { atomic_t load; /* Utilization of the crypto device */ int request_count; /* # current requests. */ - - debug_info_t *dbf_area; /* debugging */ }; struct zcrypt_queue { @@ -149,8 +147,6 @@ struct zcrypt_queue { int request_count; /* # current requests. */ struct ap_message reply; /* Per-device reply structure. */ - - debug_info_t *dbf_area; /* debugging */ }; /* transport layer rescanning */ @@ -160,10 +156,6 @@ extern spinlock_t zcrypt_list_lock; extern int zcrypt_device_count; extern struct list_head zcrypt_card_list; -extern debug_info_t *zcrypt_dbf_common; -extern debug_info_t *zcrypt_dbf_devices; -extern debug_info_t *zcrypt_dbf_cards; - #define for_each_zcrypt_card(_zc) \ list_for_each_entry(_zc, &zcrypt_card_list, list) |