#undef TRACE_SYSTEM #define TRACE_SYSTEM hda_controller #define TRACE_INCLUDE_FILE hda_controller_trace #if !defined(_TRACE_HDA_CONTROLLER_H) || defined(TRACE_HEADER_MULTI_READ) #define _TRACE_HDA_CONTROLLER_H #include struct azx; struct azx_dev; TRACE_EVENT(azx_pcm_trigger, TP_PROTO(struct azx *chip, struct azx_dev *dev, int cmd), TP_ARGS(chip, dev, cmd), TP_STRUCT__entry( __field( int, card ) __field( int, idx ) __field( int, cmd ) ), TP_fast_assign( __entry->card = (chip)->card->number; __entry->idx = (dev)->core.index; __entry->cmd = cmd; ), TP_printk("[%d:%d] cmd=%d", __entry->card, __entry->idx, __entry->cmd) ); TRACE_EVENT(azx_get_position, TP_PROTO(struct azx *chip, struct azx_dev *dev, unsigned int pos, unsigned int delay), TP_ARGS(chip, dev, pos, delay), TP_STRUCT__entry( __field( int, card ) __field( int, idx ) __field( unsigned int, pos ) __field( unsigned int, delay ) ), TP_fast_assign( __entry->card = (chip)->card->number; __entry->idx = (dev)->core.index; __entry->pos = pos; __entry->delay = delay; ), TP_printk("[%d:%d] pos=%u, delay=%u", __entry->card, __entry->idx, __entry->pos, __entry->delay) ); DECLARE_EVENT_CLASS(azx_pcm, TP_PROTO(struct azx *chip, struct azx_dev *azx_dev), TP_ARGS(chip, azx_dev), TP_STRUCT__entry( __field( unsigned char, stream_tag ) ), TP_fast_assign( __entry->stream_tag = (azx_dev)->core.stream_tag; ), TP_printk("stream_tag: %d", __entry->stream_tag) ); DEFINE_EVENT(azx_pcm, azx_pcm_open, TP_PROTO(struct azx *chip, struct azx_dev *azx_dev), TP_ARGS(chip, azx_dev) ); DEFINE_EVENT(azx_pcm, azx_pcm_close, TP_PROTO(struct azx *chip, struct azx_dev *azx_dev), TP_ARGS(chip, azx_dev) ); DEFINE_EVENT(azx_pcm, azx_pcm_hw_params, TP_PROTO(struct azx *chip, struct azx_dev *azx_dev), TP_ARGS(chip, azx_dev) ); DEFINE_EVENT(azx_pcm, azx_pcm_prepare, TP_PROTO(struct azx *chip, struct azx_dev *azx_dev), TP_ARGS(chip, azx_dev) ); #endif /* _TRACE_HDA_CONTROLLER_H */ /* This part must be outside protection */ #undef TRACE_INCLUDE_PATH #define TRACE_INCLUDE_PATH . #include ndings/clock/imx27-clock.h?h=nds-private-remove&id=4759d386d55fef452d692bf101167914437e848e'>commitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-01 12:27:05 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-01 12:27:05 -0800
commit4759d386d55fef452d692bf101167914437e848e (patch)
treee7109c192ec589fcea2a98f9702aa3c0e4009581 /include/dt-bindings/clock/imx27-clock.h
parent238d1d0f79f619d75c2cc741d6770fb0986aef24 (diff)
parent1db175428ee374489448361213e9c3b749d14900 (diff)
Merge branch 'libnvdimm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm
Pull DAX updates from Dan Williams: "The completion of Jan's DAX work for 4.10. As I mentioned in the libnvdimm-for-4.10 pull request, these are some final fixes for the DAX dirty-cacheline-tracking invalidation work that was merged through the -mm, ext4, and xfs trees in -rc1. These patches were prepared prior to the merge window, but we waited for 4.10-rc1 to have a stable merge base after all the prerequisites were merged. Quoting Jan on the overall changes in these patches: "So I'd like all these 6 patches to go for rc2. The first three patches fix invalidation of exceptional DAX entries (a bug which is there for a long time) - without these patches data loss can occur on power failure even though user called fsync(2). The other three patches change locking of DAX faults so that ->iomap_begin() is called in a more relaxed locking context and we are safe to start a transaction there for ext4" These have received a build success notification from the kbuild robot, and pass the latest libnvdimm unit tests. There have not been any -next releases since -rc1, so they have not appeared there" * 'libnvdimm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm: ext4: Simplify DAX fault path dax: Call ->iomap_begin without entry lock during dax fault dax: Finish fault completely when loading holes dax: Avoid page invalidation races and unnecessary radix tree traversals mm: Invalidate DAX radix tree entries only if appropriate ext2: Return BH_New buffers for zeroed blocks
Diffstat (limited to 'include/dt-bindings/clock/imx27-clock.h')