#undef TRACE_SYSTEM #define TRACE_SYSTEM cma #if !defined(_TRACE_CMA_H) || defined(TRACE_HEADER_MULTI_READ) #define _TRACE_CMA_H #include #include TRACE_EVENT(cma_alloc, TP_PROTO(unsigned long pfn, const struct page *page, unsigned int count, unsigned int align), TP_ARGS(pfn, page, count, align), TP_STRUCT__entry( __field(unsigned long, pfn) __field(const struct page *, page) __field(unsigned int, count) __field(unsigned int, align) ), TP_fast_assign( __entry->pfn = pfn; __entry->page = page; __entry->count = count; __entry->align = align; ), TP_printk("pfn=%lx page=%p count=%u align=%u", __entry->pfn, __entry->page, __entry->count, __entry->align) ); TRACE_EVENT(cma_release, TP_PROTO(unsigned long pfn, const struct page *page, unsigned int count), TP_ARGS(pfn, page, count), TP_STRUCT__entry( __field(unsigned long, pfn) __field(const struct page *, page) __field(unsigned int, count) ), TP_fast_assign( __entry->pfn = pfn; __entry->page = page; __entry->count = count; ), TP_printk("pfn=%lx page=%p count=%u", __entry->pfn, __entry->page, __entry->count) ); #endif /* _TRACE_CMA_H */ /* This part must be outside protection */ #include ption> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-04-22 17:13:24 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-04-22 17:13:24 +0900
commitd40d334743776937132d3a0c5a203d245407e5a7 (patch)
tree02469b65d6ece21a6753c06a5c54baa2c6992154 /Documentation
parent5813dea9f33fff0420eab6b5892e5698094f838f (diff)
parent5128de85124c728cdbb6b35bd9dc7410f02c0ca1 (diff)
Merge tag 'phy-for-4.6-rc' of git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy into usb-linus
Kishon writes: phy: for 4.6-rc *) make rockchip-dp and rockchip-emmc PHY child device of GRF Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'Documentation')