summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2020-02-05 13:49:38 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2020-02-05 17:04:18 +0000
commit530e65f09cc368bfbb31098ed79729b8e3ef338b (patch)
tree04f075a2fd423396ab9208828ddec8c932301213
parentf010f12d68fa5269e6b7e16b8c2c2dffcb97a26c (diff)
Add missing checks to PerfEventAttributes::operator==4.11
Change-Id: I3ecb3b2354968f75b416f2561132432dd66726ee Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
-rw-r--r--app/perfattributes.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/perfattributes.cpp b/app/perfattributes.cpp
index 3493d6b..311a689 100644
--- a/app/perfattributes.cpp
+++ b/app/perfattributes.cpp
@@ -204,6 +204,8 @@ bool PerfEventAttributes::operator==(const PerfEventAttributes &rhs) const
&& m_sampleIdAll == rhs.m_sampleIdAll
&& m_excludeHost == rhs.m_excludeHost
&& m_excludeGuest == rhs.m_excludeGuest
+ && m_excludeCallchainKernel == rhs.m_excludeCallchainKernel
+ && m_excludeCallchainUser == rhs.m_excludeCallchainUser
&& m_reserved1 == rhs.m_reserved1
&& m_wakeupEvents == rhs.m_wakeupEvents
&& m_bpType == rhs.m_bpType