#undef TRACE_SYSTEM #define TRACE_SYSTEM napi #if !defined(_TRACE_NAPI_H) || defined(TRACE_HEADER_MULTI_READ) #define _TRACE_NAPI_H_ #include #include #include #define NO_DEV "(no_device)" TRACE_EVENT(napi_poll, TP_PROTO(struct napi_struct *napi, int work, int budget), TP_ARGS(napi, work, budget), TP_STRUCT__entry( __field( struct napi_struct *, napi) __string( dev_name, napi->dev ? napi->dev->name : NO_DEV) __field( int, work) __field( int, budget) ), TP_fast_assign( __entry->napi = napi; __assign_str(dev_name, napi->dev ? napi->dev->name : NO_DEV); __entry->work = work; __entry->budget = budget; ), TP_printk("napi poll on napi struct %p for device %s work %d budget %d", __entry->napi, __get_str(dev_name), __entry->work, __entry->budget) ); #undef NO_DEV #endif /* _TRACE_NAPI_H_ */ /* This part must be outside protection */ #include 28c11f6d042d15100b36a4ebba07c48b2'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-11-07 10:05:39 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2016-11-07 10:05:39 -0800
commitc1f4c2b28c11f6d042d15100b36a4ebba07c48b2 (patch)
treeaff0d38d2bc3161d5ef3374f434b57519b30ffce /include/xen
parentbc33b0ca11e3df467777a4fa7639ba488c9d4911 (diff)
parent4c4480aad0d8eaf0d52b6f2c8c5dfbe0531cbbea (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
Pull HID fixes from Jiri Kosina: - modprobe-after-rmmod load failure bugfix for intel-ish, from Even Xu - IRQ probing bugfix for intel-ish, from Srinivas Pandruvada - attribute parsing fix in hid-sensor, from Ooi, Joyce - other small misc fixes / quirky device additions * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid: HID: sensor: fix attributes in HID sensor interface HID: intel-ish-hid: request_irq failure HID: intel-ish-hid: Fix driver reinit failure HID: intel-ish-hid: Move DMA disable code to new function HID: intel-ish-hid: consolidate ish wake up operation HID: usbhid: add ATEN CS962 to list of quirky devices HID: intel-ish-hid: Fix !CONFIG_PM build warning HID: sensor-hub: Fix packing of result buffer for feature report
Diffstat (limited to 'include/xen')
release_channel' is called from `pl330_free_chan_resources', which already holds the lock, and from `pl330_del'. Function `pl330_del' is called in an error path of `pl330_probe' and at the end of `pl330_remove', but I assume that there cannot be concurrent accesses to the protected data at those points. Signed-off-by: Iago Abal <mail@iagoabal.eu> Reviewed-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'include/net/mrp.h')