#undef TRACE_SYSTEM #define TRACE_SYSTEM page_isolation #if !defined(_TRACE_PAGE_ISOLATION_H) || defined(TRACE_HEADER_MULTI_READ) #define _TRACE_PAGE_ISOLATION_H #include TRACE_EVENT(test_pages_isolated, TP_PROTO( unsigned long start_pfn, unsigned long end_pfn, unsigned long fin_pfn), TP_ARGS(start_pfn, end_pfn, fin_pfn), TP_STRUCT__entry( __field(unsigned long, start_pfn) __field(unsigned long, end_pfn) __field(unsigned long, fin_pfn) ), TP_fast_assign( __entry->start_pfn = start_pfn; __entry->end_pfn = end_pfn; __entry->fin_pfn = fin_pfn; ), TP_printk("start_pfn=0x%lx end_pfn=0x%lx fin_pfn=0x%lx ret=%s", __entry->start_pfn, __entry->end_pfn, __entry->fin_pfn, __entry->end_pfn <= __entry->fin_pfn ? "success" : "fail") ); #endif /* _TRACE_PAGE_ISOLATION_H */ /* This part must be outside protection */ #include 73b444a7cfdd0c152b4c71f79326b'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2017-02-10Merge tag 'mac80211-next-for-davem-2017-02-09' of git://git.kernel.org/pub/sc...David S. Miller14-178/+105
2017-02-09mac80211: fix CSA in IBSS modeKoen Vandeputte1-2/+2
2017-02-09cfg80211: fix NAN bands definitionLuca Coelho2-10/+10
2017-02-08cfg80211: Pass new RSSI level in CQM RSSI notificationAndrzej Zaborowski1-1/+1
2017-02-08mac80211: Pass new RSSI level in CQM RSSI notificationAndrzej Zaborowski2-7/+11
2017-02-08mac80211: check for allocation failure in debugfs codeDan Carpenter1-2/+9
2017-02-08mac80211: aes-cmac: switch to shash CMAC driverArd Biesheuvel3-107/+32
2017-02-08mac80211: fils_aead: Use crypto api CMAC shash rather than bare cipherArd Biesheuvel3-45/+34
2017-02-07Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller