diff options
author | Adam Buchbinder <adam.buchbinder@gmail.com> | 2012-09-20 05:48:02 +0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-11-19 17:32:13 +0400 |
commit | b3834be5c42a5d2fd85ff4b819fa38983b1450e6 (patch) | |
tree | 116f98f451a9f5ae4e205a19e927ad1727443f1a /mm/memory_hotplug.c | |
parent | 48fc7f7e787dd65ffe88521bce31f4062ba273eb (diff) | |
download | linux-b3834be5c42a5d2fd85ff4b819fa38983b1450e6.tar.xz |
various: Fix spelling of "asynchronous" in comments.
"Asynchronous" is misspelled in some comments. No code changes.
Signed-off-by: Adam Buchbinder <adam.buchbinder@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'mm/memory_hotplug.c')
-rw-r--r-- | mm/memory_hotplug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index 56b758ae57d2..bb81b7f417a8 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c @@ -950,10 +950,10 @@ repeat: goto repeat; } } - /* drain all zone's lru pagevec, this is asyncronous... */ + /* drain all zone's lru pagevec, this is asynchronous... */ lru_add_drain_all(); yield(); - /* drain pcp pages , this is synchrouns. */ + /* drain pcp pages, this is synchronous. */ drain_all_pages(); /* check again */ offlined_pages = check_pages_isolated(start_pfn, end_pfn); @@ -962,7 +962,7 @@ repeat: goto failed_removal; } printk(KERN_INFO "Offlined Pages %ld\n", offlined_pages); - /* Ok, all of our target is islaoted. + /* Ok, all of our target is isolated. We cannot do rollback at this point. */ offline_isolated_pages(start_pfn, end_pfn); /* reset pagetype flags and makes migrate type to be MOVABLE */ |