summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorIgor Nabirushkin <inabirushkin@nvidia.com>2014-11-05 21:10:43 +0400
committerWinnie Hsu <whsu@nvidia.com>2015-01-29 22:04:06 -0800
commit7bfbc9fa064adf129312e1f37e60ec5f8d17e9ee (patch)
treef6f78ed2346ad26fe7bb6ecc0d194a2aefedeee9 /include/linux
parentcd2cd13dc3161d4b3362c2a94dc2442d7e1631fa (diff)
misc: tegra-profiler: add lower bound of memory
Tegra Profiler: add lower bound of memory for unwinding. Bug 1574379 Bug 1598009 Change-Id: Ia3c412caa0c2adfe603c08b3916bd57f3ea14255 Signed-off-by: Igor Nabirushkin <inabirushkin@nvidia.com> Reviewed-on: http://git-master/r/594457 (cherry picked from commit e94dc4b70c045322c27d83fbe56a3c9690258443) Reviewed-on: http://git-master/r/672029 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Venkat Moganty <vmoganty@nvidia.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/tegra_profiler.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/tegra_profiler.h b/include/linux/tegra_profiler.h
index affbec553a69..ad62d9a8e918 100644
--- a/include/linux/tegra_profiler.h
+++ b/include/linux/tegra_profiler.h
@@ -20,7 +20,7 @@
#include <linux/ioctl.h>
#define QUADD_SAMPLES_VERSION 30
-#define QUADD_IO_VERSION 14
+#define QUADD_IO_VERSION 15
#define QUADD_IO_VERSION_DYNAMIC_RB 5
#define QUADD_IO_VERSION_RB_MAX_FILL_COUNT 6
@@ -32,6 +32,7 @@
#define QUADD_IO_VERSION_EXTABLES_MMAP 12
#define QUADD_IO_VERSION_ARCH_TIMER_OPT 13
#define QUADD_IO_VERSION_DATA_MMAP 14
+#define QUADD_IO_VERSION_BT_LOWER_BOUND 15
#define QUADD_SAMPLE_VERSION_THUMB_MODE_FLAG 17
#define QUADD_SAMPLE_VERSION_GROUP_SAMPLES 18
@@ -345,6 +346,7 @@ struct quadd_record_data {
enum {
QUADD_PARAM_IDX_SIZE_OF_RB = 0,
QUADD_PARAM_IDX_EXTRA = 1,
+ QUADD_PARAM_IDX_BT_LOWER_BOUND = 2,
};
#define QUADD_PARAM_EXTRA_GET_MMAP (1 << 0)