aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/perf_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/perf_event.h')
-rw-r--r--include/linux/perf_event.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h
index 6abf103fb7f8..bf85733597ec 100644
--- a/include/linux/perf_event.h
+++ b/include/linux/perf_event.h
@@ -565,8 +565,8 @@ struct pmu {
565 565
566 int *pmu_disable_count; 566 int *pmu_disable_count;
567 567
568 void (*pmu_enable) (struct pmu *pmu); 568 void (*pmu_enable) (struct pmu *pmu); /* optional */
569 void (*pmu_disable) (struct pmu *pmu); 569 void (*pmu_disable) (struct pmu *pmu); /* optional */
570 570
571 /* 571 /*
572 * Should return -ENOENT when the @event doesn't match this PMU. 572 * Should return -ENOENT when the @event doesn't match this PMU.
@@ -590,19 +590,19 @@ struct pmu {
590 * Start the transaction, after this ->enable() doesn't need to 590 * Start the transaction, after this ->enable() doesn't need to
591 * do schedulability tests. 591 * do schedulability tests.
592 */ 592 */
593 void (*start_txn) (struct pmu *pmu); 593 void (*start_txn) (struct pmu *pmu); /* optional */
594 /* 594 /*
595 * If ->start_txn() disabled the ->enable() schedulability test 595 * If ->start_txn() disabled the ->enable() schedulability test
596 * then ->commit_txn() is required to perform one. On success 596 * then ->commit_txn() is required to perform one. On success
597 * the transaction is closed. On error the transaction is kept 597 * the transaction is closed. On error the transaction is kept
598 * open until ->cancel_txn() is called. 598 * open until ->cancel_txn() is called.
599 */ 599 */
600 int (*commit_txn) (struct pmu *pmu); 600 int (*commit_txn) (struct pmu *pmu); /* optional */
601 /* 601 /*
602 * Will cancel the transaction, assumes ->disable() is called 602 * Will cancel the transaction, assumes ->disable() is called
603 * for each successfull ->enable() during the transaction. 603 * for each successfull ->enable() during the transaction.
604 */ 604 */
605 void (*cancel_txn) (struct pmu *pmu); 605 void (*cancel_txn) (struct pmu *pmu); /* optional */
606}; 606};
607 607
608/** 608/**