Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1230920
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [RFC v2 09/18] mm/huge_page: Convert khugepaged() into kthread worker API |
| Date | 2015-09-22 22:30 +0200 |
| Message-ID | <qbCmm-7Dv-19@gated-at.bofh.it> (permalink) |
| References | <qb910-7vU-15@gated-at.bofh.it> <qb912-7vU-57@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hello,
On Mon, Sep 21, 2015 at 03:03:50PM +0200, Petr Mladek wrote:
> +static int khugepaged_has_work(void)
> +{
> + return !list_empty(&khugepaged_scan.mm_head) &&
> + khugepaged_enabled();
> +}
Hmmm... no biggie but this is a bit bothering.
> @@ -425,7 +447,10 @@ static ssize_t scan_sleep_millisecs_store(struct kobject *kobj,
> return -EINVAL;
>
> khugepaged_scan_sleep_millisecs = msecs;
> - wake_up_interruptible(&khugepaged_wait);
> + if (khugepaged_has_work())
> + mod_delayed_kthread_work(khugepaged_worker,
> + &khugepaged_do_scan_work,
> + 0);
What's wrong with just doing the following?
if (khugepaged_enabled())
mod_delayed_kthread_work(...);
Thanks.
--
tejun
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
Re: [RFC v2 09/18] mm/huge_page: Convert khugepaged() into kthread worker API Tejun Heo <tj@kernel.org> - 2015-09-22 22:30 +0200 Re: [RFC v2 09/18] mm/huge_page: Convert khugepaged() into kthread worker API Petr Mladek <pmladek@suse.com> - 2015-09-23 12:00 +0200
csiph-web