mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Replace function linux_error() by err/warn family. Delete function linux_error() which is not used anymore. Also fix some checkpatch warnings regarding comparison to zero. Signed-off-by: Thomas Richter <tmricht@linux.ibm.com> Acked-by: Sumanth Korikkar <sumanthk@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
19 lines
453 B
C
19 lines
453 B
C
/*
|
|
* Defines for CPU Measurement Facility Characteristics
|
|
*
|
|
* Copyright IBM Corp. 2020
|
|
*
|
|
* s390-tools is free software; you can redistribute it and/or modify
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
*/
|
|
|
|
#ifndef DEFINES_H
|
|
#define DEFINES_H
|
|
|
|
#define PERF_SFB_SIZE "/sys/module/kernel/parameters/cpum_sfb_size"
|
|
#define PERF_PATH "/sys/bus/event_source/devices/"
|
|
#define PERF_SF "cpum_sf"
|
|
#define PERF_CF "cpum_cf"
|
|
|
|
#endif
|