The patch titled Mark profile notifier blocks __read_mostly has been added to the -mm tree. Its filename is mark-profile-notifier-blocks-__read_mostly.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Mark profile notifier blocks __read_mostly From: Matt Helsley <matthltc@xxxxxxxxxx> Mark profile notifier blocks __read_mostly since once registered they tend not to be written. This seems like a good idea but I'm not yet familiar enough with the profile paths to be certain. Compiles, boots, and runs with CONFIG_PROFILING=y and readprofile on a 4-way Opteron running Debian Sarge. Signed-off-by: Matt Helsley <matthltc@xxxxxxxxxx> Cc: <profile-list@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/oprofile/buffer_sync.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff -puN drivers/oprofile/buffer_sync.c~mark-profile-notifier-blocks-__read_mostly drivers/oprofile/buffer_sync.c --- a/drivers/oprofile/buffer_sync.c~mark-profile-notifier-blocks-__read_mostly +++ a/drivers/oprofile/buffer_sync.c @@ -117,19 +117,19 @@ static int module_load_notify(struct not } -static struct notifier_block task_free_nb = { +static struct notifier_block __read_mostly task_free_nb = { .notifier_call = task_free_notify, }; -static struct notifier_block task_exit_nb = { +static struct notifier_block __read_mostly task_exit_nb = { .notifier_call = task_exit_notify, }; -static struct notifier_block munmap_nb = { +static struct notifier_block __read_mostly munmap_nb = { .notifier_call = munmap_notify, }; -static struct notifier_block module_load_nb = { +static struct notifier_block __read_mostly module_load_nb = { .notifier_call = module_load_notify, }; _ Patches currently in -mm which might be from matthltc@xxxxxxxxxx are process-events-header-cleanup.patch process-events-license-change.patch remove-unecessary-null-check-in-kernel-acctc.patch mark-profile-notifier-blocks-__read_mostly.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html