-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 344780 b: refs/heads/master c: 7b2a2d4 h: refs/heads/master v: v3
- Loading branch information
Mel Gorman
committed
Dec 11, 2012
1 parent
fde54a1
commit 342fa40
Showing
9 changed files
with
83 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 5647bc293ab15f66a7b1cda850c5e9d162a6c7c2 | ||
refs/heads/master: 7b2a2d4a18fffac3c4872021529b0657896db788 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#undef TRACE_SYSTEM | ||
#define TRACE_SYSTEM migrate | ||
|
||
#if !defined(_TRACE_MIGRATE_H) || defined(TRACE_HEADER_MULTI_READ) | ||
#define _TRACE_MIGRATE_H | ||
|
||
#define MIGRATE_MODE \ | ||
{MIGRATE_ASYNC, "MIGRATE_ASYNC"}, \ | ||
{MIGRATE_SYNC_LIGHT, "MIGRATE_SYNC_LIGHT"}, \ | ||
{MIGRATE_SYNC, "MIGRATE_SYNC"} | ||
|
||
#define MIGRATE_REASON \ | ||
{MR_COMPACTION, "compaction"}, \ | ||
{MR_MEMORY_FAILURE, "memory_failure"}, \ | ||
{MR_MEMORY_HOTPLUG, "memory_hotplug"}, \ | ||
{MR_SYSCALL, "syscall_or_cpuset"}, \ | ||
{MR_MEMPOLICY_MBIND, "mempolicy_mbind"}, \ | ||
{MR_CMA, "cma"} | ||
|
||
TRACE_EVENT(mm_migrate_pages, | ||
|
||
TP_PROTO(unsigned long succeeded, unsigned long failed, | ||
enum migrate_mode mode, int reason), | ||
|
||
TP_ARGS(succeeded, failed, mode, reason), | ||
|
||
TP_STRUCT__entry( | ||
__field( unsigned long, succeeded) | ||
__field( unsigned long, failed) | ||
__field( enum migrate_mode, mode) | ||
__field( int, reason) | ||
), | ||
|
||
TP_fast_assign( | ||
__entry->succeeded = succeeded; | ||
__entry->failed = failed; | ||
__entry->mode = mode; | ||
__entry->reason = reason; | ||
), | ||
|
||
TP_printk("nr_succeeded=%lu nr_failed=%lu mode=%s reason=%s", | ||
__entry->succeeded, | ||
__entry->failed, | ||
__print_symbolic(__entry->mode, MIGRATE_MODE), | ||
__print_symbolic(__entry->reason, MIGRATE_REASON)) | ||
); | ||
|
||
#endif /* _TRACE_MIGRATE_H */ | ||
|
||
/* This part must be outside protection */ | ||
#include <trace/define_trace.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters