* [PATCH] md: Convert timers to use timer_setup()
@ 2017-10-17 0:01 Kees Cook
2017-10-17 2:12 ` Shaohua Li
2017-10-17 3:06 ` Michael Lyle
0 siblings, 2 replies; 8+ messages in thread
From: Kees Cook @ 2017-10-17 0:01 UTC (permalink / raw)
To: Shaohua Li
Cc: Kent Overstreet, Alasdair Kergon, Mike Snitzer, dm-devel,
linux-bcache, linux-raid, linux-kernel
In preparation for unconditionally passing the struct timer_list pointer to
all timer callbacks, switch to using the new timer_setup() and from_timer()
to pass the timer pointer explicitly.
Cc: Kent Overstreet <kent.overstreet@gmail.com>
Cc: Shaohua Li <shli@kernel.org>
Cc: Alasdair Kergon <agk@redhat.com>
Cc: Mike Snitzer <snitzer@redhat.com>
Cc: dm-devel@redhat.com
Cc: linux-bcache@vger.kernel.org
Cc: linux-raid@vger.kernel.org
Signed-off-by: Kees Cook <keescook@chromium.org>
---
drivers/md/bcache/stats.c | 8 +++-----
drivers/md/dm-delay.c | 6 +++---
drivers/md/dm-integrity.c | 6 +++---
drivers/md/dm-raid1.c | 8 +++-----
drivers/md/md.c | 9 ++++-----
5 files changed, 16 insertions(+), 21 deletions(-)
diff --git a/drivers/md/bcache/stats.c b/drivers/md/bcache/stats.c
index 0ca072c20d0d..93a89c528760 100644
--- a/drivers/md/bcache/stats.c
+++ b/drivers/md/bcache/stats.c
@@ -146,9 +146,9 @@ static void scale_stats(struct cache_stats *stats, unsigned long rescale_at)
}
}
-static void scale_accounting(unsigned long data)
+static void scale_accounting(struct timer_list *t)
{
- struct cache_accounting *acc = (struct cache_accounting *) data;
+ struct cache_accounting *acc = from_timer(acc, t, timer);
#define move_stat(name) do { \
unsigned t = atomic_xchg(&acc->collector.name, 0); \
@@ -233,9 +233,7 @@ void bch_cache_accounting_init(struct cache_accounting *acc,
kobject_init(&acc->day.kobj, &bch_stats_ktype);
closure_init(&acc->cl, parent);
- init_timer(&acc->timer);
+ timer_setup(&acc->timer, scale_accounting, 0);
acc->timer.expires = jiffies + accounting_delay;
- acc->timer.data = (unsigned long) acc;
- acc->timer.function = scale_accounting;
add_timer(&acc->timer);
}
diff --git a/drivers/md/dm-delay.c b/drivers/md/dm-delay.c
index 2209a9700acd..288386bfbfb5 100644
--- a/drivers/md/dm-delay.c
+++ b/drivers/md/dm-delay.c
@@ -44,9 +44,9 @@ struct dm_delay_info {
static DEFINE_MUTEX(delayed_bios_lock);
-static void handle_delayed_timer(unsigned long data)
+static void handle_delayed_timer(struct timer_list *t)
{
- struct delay_c *dc = (struct delay_c *)data;
+ struct delay_c *dc = from_timer(dc, t, delay_timer);
queue_work(dc->kdelayd_wq, &dc->flush_expired_bios);
}
@@ -195,7 +195,7 @@ static int delay_ctr(struct dm_target *ti, unsigned int argc, char **argv)
goto bad_queue;
}
- setup_timer(&dc->delay_timer, handle_delayed_timer, (unsigned long)dc);
+ timer_setup(&dc->delay_timer, handle_delayed_timer, 0);
INIT_WORK(&dc->flush_expired_bios, flush_expired_bios);
INIT_LIST_HEAD(&dc->delayed_bios);
diff --git a/drivers/md/dm-integrity.c b/drivers/md/dm-integrity.c
index 096fe9b66c50..98f0b645b839 100644
--- a/drivers/md/dm-integrity.c
+++ b/drivers/md/dm-integrity.c
@@ -1093,9 +1093,9 @@ static void sleep_on_endio_wait(struct dm_integrity_c *ic)
__remove_wait_queue(&ic->endio_wait, &wait);
}
-static void autocommit_fn(unsigned long data)
+static void autocommit_fn(struct timer_list *t)
{
- struct dm_integrity_c *ic = (struct dm_integrity_c *)data;
+ struct dm_integrity_c *ic = from_timer(ic, t, autocommit_timer);
if (likely(!dm_integrity_failed(ic)))
queue_work(ic->commit_wq, &ic->commit_work);
@@ -2941,7 +2941,7 @@ static int dm_integrity_ctr(struct dm_target *ti, unsigned argc, char **argv)
ic->autocommit_jiffies = msecs_to_jiffies(sync_msec);
ic->autocommit_msec = sync_msec;
- setup_timer(&ic->autocommit_timer, autocommit_fn, (unsigned long)ic);
+ timer_setup(&ic->autocommit_timer, autocommit_fn, 0);
ic->io = dm_io_client_create();
if (IS_ERR(ic->io)) {
diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c
index c0b82136b2d1..580c49cc8079 100644
--- a/drivers/md/dm-raid1.c
+++ b/drivers/md/dm-raid1.c
@@ -94,9 +94,9 @@ static void wakeup_mirrord(void *context)
queue_work(ms->kmirrord_wq, &ms->kmirrord_work);
}
-static void delayed_wake_fn(unsigned long data)
+static void delayed_wake_fn(struct timer_list *t)
{
- struct mirror_set *ms = (struct mirror_set *) data;
+ struct mirror_set *ms = from_timer(ms, t, timer);
clear_bit(0, &ms->timer_pending);
wakeup_mirrord(ms);
@@ -108,8 +108,6 @@ static void delayed_wake(struct mirror_set *ms)
return;
ms->timer.expires = jiffies + HZ / 5;
- ms->timer.data = (unsigned long) ms;
- ms->timer.function = delayed_wake_fn;
add_timer(&ms->timer);
}
@@ -1133,7 +1131,7 @@ static int mirror_ctr(struct dm_target *ti, unsigned int argc, char **argv)
goto err_free_context;
}
INIT_WORK(&ms->kmirrord_work, do_mirror);
- init_timer(&ms->timer);
+ timer_setup(&ms->timer, delayed_wake_fn, 0);
ms->timer_pending = 0;
INIT_WORK(&ms->trigger_event, trigger_event);
diff --git a/drivers/md/md.c b/drivers/md/md.c
index 97afb28c6f51..873a20f44197 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -520,7 +520,7 @@ static void mddev_put(struct mddev *mddev)
bioset_free(sync_bs);
}
-static void md_safemode_timeout(unsigned long data);
+static void md_safemode_timeout(struct timer_list *t);
void mddev_init(struct mddev *mddev)
{
@@ -529,8 +529,7 @@ void mddev_init(struct mddev *mddev)
mutex_init(&mddev->bitmap_info.mutex);
INIT_LIST_HEAD(&mddev->disks);
INIT_LIST_HEAD(&mddev->all_mddevs);
- setup_timer(&mddev->safemode_timer, md_safemode_timeout,
- (unsigned long) mddev);
+ timer_setup(&mddev->safemode_timer, md_safemode_timeout, 0);
atomic_set(&mddev->active, 1);
atomic_set(&mddev->openers, 0);
atomic_set(&mddev->active_io, 0);
@@ -5386,9 +5385,9 @@ static int add_named_array(const char *val, struct kernel_param *kp)
return -EINVAL;
}
-static void md_safemode_timeout(unsigned long data)
+static void md_safemode_timeout(struct timer_list *t)
{
- struct mddev *mddev = (struct mddev *) data;
+ struct mddev *mddev = from_timer(mddev, t, safemode_timer);
mddev->safemode = 1;
if (mddev->external)
--
2.7.4
--
Kees Cook
Pixel Security
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] md: Convert timers to use timer_setup()
2017-10-17 0:01 [PATCH] md: Convert timers to use timer_setup() Kees Cook
@ 2017-10-17 2:12 ` Shaohua Li
2017-10-17 2:23 ` Kees Cook
2017-10-17 3:06 ` Michael Lyle
1 sibling, 1 reply; 8+ messages in thread
From: Shaohua Li @ 2017-10-17 2:12 UTC (permalink / raw)
To: Kees Cook
Cc: Shaohua Li, Kent Overstreet, Alasdair Kergon, Mike Snitzer,
dm-devel, linux-bcache, linux-raid, linux-kernel
On Mon, Oct 16, 2017 at 05:01:48PM -0700, Kees Cook wrote:
> In preparation for unconditionally passing the struct timer_list pointer to
> all timer callbacks, switch to using the new timer_setup() and from_timer()
> to pass the timer pointer explicitly.
If you send the md.c part along, I'll apply. Or if you want this merged in
other tree, you can add my 'reviewed-by: Shaohua Li <shli@fb.com>' for md.c
part.
> Cc: Kent Overstreet <kent.overstreet@gmail.com>
> Cc: Shaohua Li <shli@kernel.org>
> Cc: Alasdair Kergon <agk@redhat.com>
> Cc: Mike Snitzer <snitzer@redhat.com>
> Cc: dm-devel@redhat.com
> Cc: linux-bcache@vger.kernel.org
> Cc: linux-raid@vger.kernel.org
> Signed-off-by: Kees Cook <keescook@chromium.org>
> ---
> drivers/md/bcache/stats.c | 8 +++-----
> drivers/md/dm-delay.c | 6 +++---
> drivers/md/dm-integrity.c | 6 +++---
> drivers/md/dm-raid1.c | 8 +++-----
> drivers/md/md.c | 9 ++++-----
> 5 files changed, 16 insertions(+), 21 deletions(-)
>
> diff --git a/drivers/md/bcache/stats.c b/drivers/md/bcache/stats.c
> index 0ca072c20d0d..93a89c528760 100644
> --- a/drivers/md/bcache/stats.c
> +++ b/drivers/md/bcache/stats.c
> @@ -146,9 +146,9 @@ static void scale_stats(struct cache_stats *stats, unsigned long rescale_at)
> }
> }
>
> -static void scale_accounting(unsigned long data)
> +static void scale_accounting(struct timer_list *t)
> {
> - struct cache_accounting *acc = (struct cache_accounting *) data;
> + struct cache_accounting *acc = from_timer(acc, t, timer);
>
> #define move_stat(name) do { \
> unsigned t = atomic_xchg(&acc->collector.name, 0); \
> @@ -233,9 +233,7 @@ void bch_cache_accounting_init(struct cache_accounting *acc,
> kobject_init(&acc->day.kobj, &bch_stats_ktype);
>
> closure_init(&acc->cl, parent);
> - init_timer(&acc->timer);
> + timer_setup(&acc->timer, scale_accounting, 0);
> acc->timer.expires = jiffies + accounting_delay;
> - acc->timer.data = (unsigned long) acc;
> - acc->timer.function = scale_accounting;
> add_timer(&acc->timer);
> }
> diff --git a/drivers/md/dm-delay.c b/drivers/md/dm-delay.c
> index 2209a9700acd..288386bfbfb5 100644
> --- a/drivers/md/dm-delay.c
> +++ b/drivers/md/dm-delay.c
> @@ -44,9 +44,9 @@ struct dm_delay_info {
>
> static DEFINE_MUTEX(delayed_bios_lock);
>
> -static void handle_delayed_timer(unsigned long data)
> +static void handle_delayed_timer(struct timer_list *t)
> {
> - struct delay_c *dc = (struct delay_c *)data;
> + struct delay_c *dc = from_timer(dc, t, delay_timer);
>
> queue_work(dc->kdelayd_wq, &dc->flush_expired_bios);
> }
> @@ -195,7 +195,7 @@ static int delay_ctr(struct dm_target *ti, unsigned int argc, char **argv)
> goto bad_queue;
> }
>
> - setup_timer(&dc->delay_timer, handle_delayed_timer, (unsigned long)dc);
> + timer_setup(&dc->delay_timer, handle_delayed_timer, 0);
>
> INIT_WORK(&dc->flush_expired_bios, flush_expired_bios);
> INIT_LIST_HEAD(&dc->delayed_bios);
> diff --git a/drivers/md/dm-integrity.c b/drivers/md/dm-integrity.c
> index 096fe9b66c50..98f0b645b839 100644
> --- a/drivers/md/dm-integrity.c
> +++ b/drivers/md/dm-integrity.c
> @@ -1093,9 +1093,9 @@ static void sleep_on_endio_wait(struct dm_integrity_c *ic)
> __remove_wait_queue(&ic->endio_wait, &wait);
> }
>
> -static void autocommit_fn(unsigned long data)
> +static void autocommit_fn(struct timer_list *t)
> {
> - struct dm_integrity_c *ic = (struct dm_integrity_c *)data;
> + struct dm_integrity_c *ic = from_timer(ic, t, autocommit_timer);
>
> if (likely(!dm_integrity_failed(ic)))
> queue_work(ic->commit_wq, &ic->commit_work);
> @@ -2941,7 +2941,7 @@ static int dm_integrity_ctr(struct dm_target *ti, unsigned argc, char **argv)
>
> ic->autocommit_jiffies = msecs_to_jiffies(sync_msec);
> ic->autocommit_msec = sync_msec;
> - setup_timer(&ic->autocommit_timer, autocommit_fn, (unsigned long)ic);
> + timer_setup(&ic->autocommit_timer, autocommit_fn, 0);
>
> ic->io = dm_io_client_create();
> if (IS_ERR(ic->io)) {
> diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c
> index c0b82136b2d1..580c49cc8079 100644
> --- a/drivers/md/dm-raid1.c
> +++ b/drivers/md/dm-raid1.c
> @@ -94,9 +94,9 @@ static void wakeup_mirrord(void *context)
> queue_work(ms->kmirrord_wq, &ms->kmirrord_work);
> }
>
> -static void delayed_wake_fn(unsigned long data)
> +static void delayed_wake_fn(struct timer_list *t)
> {
> - struct mirror_set *ms = (struct mirror_set *) data;
> + struct mirror_set *ms = from_timer(ms, t, timer);
>
> clear_bit(0, &ms->timer_pending);
> wakeup_mirrord(ms);
> @@ -108,8 +108,6 @@ static void delayed_wake(struct mirror_set *ms)
> return;
>
> ms->timer.expires = jiffies + HZ / 5;
> - ms->timer.data = (unsigned long) ms;
> - ms->timer.function = delayed_wake_fn;
> add_timer(&ms->timer);
> }
>
> @@ -1133,7 +1131,7 @@ static int mirror_ctr(struct dm_target *ti, unsigned int argc, char **argv)
> goto err_free_context;
> }
> INIT_WORK(&ms->kmirrord_work, do_mirror);
> - init_timer(&ms->timer);
> + timer_setup(&ms->timer, delayed_wake_fn, 0);
> ms->timer_pending = 0;
> INIT_WORK(&ms->trigger_event, trigger_event);
>
> diff --git a/drivers/md/md.c b/drivers/md/md.c
> index 97afb28c6f51..873a20f44197 100644
> --- a/drivers/md/md.c
> +++ b/drivers/md/md.c
> @@ -520,7 +520,7 @@ static void mddev_put(struct mddev *mddev)
> bioset_free(sync_bs);
> }
>
> -static void md_safemode_timeout(unsigned long data);
> +static void md_safemode_timeout(struct timer_list *t);
>
> void mddev_init(struct mddev *mddev)
> {
> @@ -529,8 +529,7 @@ void mddev_init(struct mddev *mddev)
> mutex_init(&mddev->bitmap_info.mutex);
> INIT_LIST_HEAD(&mddev->disks);
> INIT_LIST_HEAD(&mddev->all_mddevs);
> - setup_timer(&mddev->safemode_timer, md_safemode_timeout,
> - (unsigned long) mddev);
> + timer_setup(&mddev->safemode_timer, md_safemode_timeout, 0);
> atomic_set(&mddev->active, 1);
> atomic_set(&mddev->openers, 0);
> atomic_set(&mddev->active_io, 0);
> @@ -5386,9 +5385,9 @@ static int add_named_array(const char *val, struct kernel_param *kp)
> return -EINVAL;
> }
>
> -static void md_safemode_timeout(unsigned long data)
> +static void md_safemode_timeout(struct timer_list *t)
> {
> - struct mddev *mddev = (struct mddev *) data;
> + struct mddev *mddev = from_timer(mddev, t, safemode_timer);
>
> mddev->safemode = 1;
> if (mddev->external)
> --
> 2.7.4
>
>
> --
> Kees Cook
> Pixel Security
> --
> To unsubscribe from this list: send the line "unsubscribe linux-raid" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] md: Convert timers to use timer_setup()
2017-10-17 2:12 ` Shaohua Li
@ 2017-10-17 2:23 ` Kees Cook
0 siblings, 0 replies; 8+ messages in thread
From: Kees Cook @ 2017-10-17 2:23 UTC (permalink / raw)
To: Shaohua Li
Cc: Shaohua Li, Kent Overstreet, Alasdair Kergon, Mike Snitzer,
dm-devel, linux-bcache, linux-raid, LKML
On Mon, Oct 16, 2017 at 7:12 PM, Shaohua Li <shli@kernel.org> wrote:
> On Mon, Oct 16, 2017 at 05:01:48PM -0700, Kees Cook wrote:
>> In preparation for unconditionally passing the struct timer_list pointer to
>> all timer callbacks, switch to using the new timer_setup() and from_timer()
>> to pass the timer pointer explicitly.
>
> If you send the md.c part along, I'll apply. Or if you want this merged in
> other tree, you can add my 'reviewed-by: Shaohua Li <shli@fb.com>' for md.c
> part.
Should I split this by each driver? (Who's the correct maintainer to
take all of these?)
Thanks!
-Kees
>
>> Cc: Kent Overstreet <kent.overstreet@gmail.com>
>> Cc: Shaohua Li <shli@kernel.org>
>> Cc: Alasdair Kergon <agk@redhat.com>
>> Cc: Mike Snitzer <snitzer@redhat.com>
>> Cc: dm-devel@redhat.com
>> Cc: linux-bcache@vger.kernel.org
>> Cc: linux-raid@vger.kernel.org
>> Signed-off-by: Kees Cook <keescook@chromium.org>
>> ---
>> drivers/md/bcache/stats.c | 8 +++-----
>> drivers/md/dm-delay.c | 6 +++---
>> drivers/md/dm-integrity.c | 6 +++---
>> drivers/md/dm-raid1.c | 8 +++-----
>> drivers/md/md.c | 9 ++++-----
>> 5 files changed, 16 insertions(+), 21 deletions(-)
>>
>> diff --git a/drivers/md/bcache/stats.c b/drivers/md/bcache/stats.c
>> index 0ca072c20d0d..93a89c528760 100644
>> --- a/drivers/md/bcache/stats.c
>> +++ b/drivers/md/bcache/stats.c
>> @@ -146,9 +146,9 @@ static void scale_stats(struct cache_stats *stats, unsigned long rescale_at)
>> }
>> }
>>
>> -static void scale_accounting(unsigned long data)
>> +static void scale_accounting(struct timer_list *t)
>> {
>> - struct cache_accounting *acc = (struct cache_accounting *) data;
>> + struct cache_accounting *acc = from_timer(acc, t, timer);
>>
>> #define move_stat(name) do { \
>> unsigned t = atomic_xchg(&acc->collector.name, 0); \
>> @@ -233,9 +233,7 @@ void bch_cache_accounting_init(struct cache_accounting *acc,
>> kobject_init(&acc->day.kobj, &bch_stats_ktype);
>>
>> closure_init(&acc->cl, parent);
>> - init_timer(&acc->timer);
>> + timer_setup(&acc->timer, scale_accounting, 0);
>> acc->timer.expires = jiffies + accounting_delay;
>> - acc->timer.data = (unsigned long) acc;
>> - acc->timer.function = scale_accounting;
>> add_timer(&acc->timer);
>> }
>> diff --git a/drivers/md/dm-delay.c b/drivers/md/dm-delay.c
>> index 2209a9700acd..288386bfbfb5 100644
>> --- a/drivers/md/dm-delay.c
>> +++ b/drivers/md/dm-delay.c
>> @@ -44,9 +44,9 @@ struct dm_delay_info {
>>
>> static DEFINE_MUTEX(delayed_bios_lock);
>>
>> -static void handle_delayed_timer(unsigned long data)
>> +static void handle_delayed_timer(struct timer_list *t)
>> {
>> - struct delay_c *dc = (struct delay_c *)data;
>> + struct delay_c *dc = from_timer(dc, t, delay_timer);
>>
>> queue_work(dc->kdelayd_wq, &dc->flush_expired_bios);
>> }
>> @@ -195,7 +195,7 @@ static int delay_ctr(struct dm_target *ti, unsigned int argc, char **argv)
>> goto bad_queue;
>> }
>>
>> - setup_timer(&dc->delay_timer, handle_delayed_timer, (unsigned long)dc);
>> + timer_setup(&dc->delay_timer, handle_delayed_timer, 0);
>>
>> INIT_WORK(&dc->flush_expired_bios, flush_expired_bios);
>> INIT_LIST_HEAD(&dc->delayed_bios);
>> diff --git a/drivers/md/dm-integrity.c b/drivers/md/dm-integrity.c
>> index 096fe9b66c50..98f0b645b839 100644
>> --- a/drivers/md/dm-integrity.c
>> +++ b/drivers/md/dm-integrity.c
>> @@ -1093,9 +1093,9 @@ static void sleep_on_endio_wait(struct dm_integrity_c *ic)
>> __remove_wait_queue(&ic->endio_wait, &wait);
>> }
>>
>> -static void autocommit_fn(unsigned long data)
>> +static void autocommit_fn(struct timer_list *t)
>> {
>> - struct dm_integrity_c *ic = (struct dm_integrity_c *)data;
>> + struct dm_integrity_c *ic = from_timer(ic, t, autocommit_timer);
>>
>> if (likely(!dm_integrity_failed(ic)))
>> queue_work(ic->commit_wq, &ic->commit_work);
>> @@ -2941,7 +2941,7 @@ static int dm_integrity_ctr(struct dm_target *ti, unsigned argc, char **argv)
>>
>> ic->autocommit_jiffies = msecs_to_jiffies(sync_msec);
>> ic->autocommit_msec = sync_msec;
>> - setup_timer(&ic->autocommit_timer, autocommit_fn, (unsigned long)ic);
>> + timer_setup(&ic->autocommit_timer, autocommit_fn, 0);
>>
>> ic->io = dm_io_client_create();
>> if (IS_ERR(ic->io)) {
>> diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c
>> index c0b82136b2d1..580c49cc8079 100644
>> --- a/drivers/md/dm-raid1.c
>> +++ b/drivers/md/dm-raid1.c
>> @@ -94,9 +94,9 @@ static void wakeup_mirrord(void *context)
>> queue_work(ms->kmirrord_wq, &ms->kmirrord_work);
>> }
>>
>> -static void delayed_wake_fn(unsigned long data)
>> +static void delayed_wake_fn(struct timer_list *t)
>> {
>> - struct mirror_set *ms = (struct mirror_set *) data;
>> + struct mirror_set *ms = from_timer(ms, t, timer);
>>
>> clear_bit(0, &ms->timer_pending);
>> wakeup_mirrord(ms);
>> @@ -108,8 +108,6 @@ static void delayed_wake(struct mirror_set *ms)
>> return;
>>
>> ms->timer.expires = jiffies + HZ / 5;
>> - ms->timer.data = (unsigned long) ms;
>> - ms->timer.function = delayed_wake_fn;
>> add_timer(&ms->timer);
>> }
>>
>> @@ -1133,7 +1131,7 @@ static int mirror_ctr(struct dm_target *ti, unsigned int argc, char **argv)
>> goto err_free_context;
>> }
>> INIT_WORK(&ms->kmirrord_work, do_mirror);
>> - init_timer(&ms->timer);
>> + timer_setup(&ms->timer, delayed_wake_fn, 0);
>> ms->timer_pending = 0;
>> INIT_WORK(&ms->trigger_event, trigger_event);
>>
>> diff --git a/drivers/md/md.c b/drivers/md/md.c
>> index 97afb28c6f51..873a20f44197 100644
>> --- a/drivers/md/md.c
>> +++ b/drivers/md/md.c
>> @@ -520,7 +520,7 @@ static void mddev_put(struct mddev *mddev)
>> bioset_free(sync_bs);
>> }
>>
>> -static void md_safemode_timeout(unsigned long data);
>> +static void md_safemode_timeout(struct timer_list *t);
>>
>> void mddev_init(struct mddev *mddev)
>> {
>> @@ -529,8 +529,7 @@ void mddev_init(struct mddev *mddev)
>> mutex_init(&mddev->bitmap_info.mutex);
>> INIT_LIST_HEAD(&mddev->disks);
>> INIT_LIST_HEAD(&mddev->all_mddevs);
>> - setup_timer(&mddev->safemode_timer, md_safemode_timeout,
>> - (unsigned long) mddev);
>> + timer_setup(&mddev->safemode_timer, md_safemode_timeout, 0);
>> atomic_set(&mddev->active, 1);
>> atomic_set(&mddev->openers, 0);
>> atomic_set(&mddev->active_io, 0);
>> @@ -5386,9 +5385,9 @@ static int add_named_array(const char *val, struct kernel_param *kp)
>> return -EINVAL;
>> }
>>
>> -static void md_safemode_timeout(unsigned long data)
>> +static void md_safemode_timeout(struct timer_list *t)
>> {
>> - struct mddev *mddev = (struct mddev *) data;
>> + struct mddev *mddev = from_timer(mddev, t, safemode_timer);
>>
>> mddev->safemode = 1;
>> if (mddev->external)
>> --
>> 2.7.4
>>
>>
>> --
>> Kees Cook
>> Pixel Security
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-raid" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Kees Cook
Pixel Security
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] md: Convert timers to use timer_setup()
2017-10-17 0:01 [PATCH] md: Convert timers to use timer_setup() Kees Cook
2017-10-17 2:12 ` Shaohua Li
@ 2017-10-17 3:06 ` Michael Lyle
2017-10-19 3:06 ` Kees Cook
1 sibling, 1 reply; 8+ messages in thread
From: Michael Lyle @ 2017-10-17 3:06 UTC (permalink / raw)
To: Kees Cook, Shaohua Li
Cc: Kent Overstreet, Alasdair Kergon, Mike Snitzer, dm-devel,
linux-bcache, linux-raid, linux-kernel
On 10/16/2017 05:01 PM, Kees Cook wrote:
> In preparation for unconditionally passing the struct timer_list pointer to
> all timer callbacks, switch to using the new timer_setup() and from_timer()
> to pass the timer pointer explicitly.
>
> Cc: Kent Overstreet <kent.overstreet@gmail.com>
> Cc: Shaohua Li <shli@kernel.org>
> Cc: Alasdair Kergon <agk@redhat.com>
> Cc: Mike Snitzer <snitzer@redhat.com>
> Cc: dm-devel@redhat.com
> Cc: linux-bcache@vger.kernel.org
> Cc: linux-raid@vger.kernel.org
> Signed-off-by: Kees Cook <keescook@chromium.org>
This looks good to me-- I'm fine with Jens or someone else picking this
up directly, or would take a bcache-specific one to apply to my tree.
Reviewed-by: Michael Lyle <mlyle@lyle.org>
> [snip]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] md: Convert timers to use timer_setup()
2017-10-17 3:06 ` Michael Lyle
@ 2017-10-19 3:06 ` Kees Cook
2017-10-19 3:12 ` Jens Axboe
0 siblings, 1 reply; 8+ messages in thread
From: Kees Cook @ 2017-10-19 3:06 UTC (permalink / raw)
To: Jens Axboe
Cc: Michael Lyle, Shaohua Li, Kent Overstreet, Alasdair Kergon,
Mike Snitzer, dm-devel, linux-bcache, linux-raid, LKML
On Mon, Oct 16, 2017 at 8:06 PM, Michael Lyle <mlyle@lyle.org> wrote:
> On 10/16/2017 05:01 PM, Kees Cook wrote:
>> In preparation for unconditionally passing the struct timer_list pointer to
>> all timer callbacks, switch to using the new timer_setup() and from_timer()
>> to pass the timer pointer explicitly.
>>
>> Cc: Kent Overstreet <kent.overstreet@gmail.com>
>> Cc: Shaohua Li <shli@kernel.org>
>> Cc: Alasdair Kergon <agk@redhat.com>
>> Cc: Mike Snitzer <snitzer@redhat.com>
>> Cc: dm-devel@redhat.com
>> Cc: linux-bcache@vger.kernel.org
>> Cc: linux-raid@vger.kernel.org
>> Signed-off-by: Kees Cook <keescook@chromium.org>
>
> This looks good to me-- I'm fine with Jens or someone else picking this
> up directly, or would take a bcache-specific one to apply to my tree.
>
> Reviewed-by: Michael Lyle <mlyle@lyle.org>
Jens, can you pick this up, or would you prefer I split it up?
Thanks!
-Kees
--
Kees Cook
Pixel Security
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] md: Convert timers to use timer_setup()
2017-10-19 3:06 ` Kees Cook
@ 2017-10-19 3:12 ` Jens Axboe
2017-10-24 18:15 ` Mike Snitzer
0 siblings, 1 reply; 8+ messages in thread
From: Jens Axboe @ 2017-10-19 3:12 UTC (permalink / raw)
To: Kees Cook
Cc: Michael Lyle, Shaohua Li, Kent Overstreet, Alasdair Kergon,
Mike Snitzer, dm-devel, linux-bcache, linux-raid, LKML
> On Oct 18, 2017, at 9:06 PM, Kees Cook <keescook@chromium.org> wrote:
>
>> On Mon, Oct 16, 2017 at 8:06 PM, Michael Lyle <mlyle@lyle.org> wrote:
>>> On 10/16/2017 05:01 PM, Kees Cook wrote:
>>> In preparation for unconditionally passing the struct timer_list pointer to
>>> all timer callbacks, switch to using the new timer_setup() and from_timer()
>>> to pass the timer pointer explicitly.
>>>
>>> Cc: Kent Overstreet <kent.overstreet@gmail.com>
>>> Cc: Shaohua Li <shli@kernel.org>
>>> Cc: Alasdair Kergon <agk@redhat.com>
>>> Cc: Mike Snitzer <snitzer@redhat.com>
>>> Cc: dm-devel@redhat.com
>>> Cc: linux-bcache@vger.kernel.org
>>> Cc: linux-raid@vger.kernel.org
>>> Signed-off-by: Kees Cook <keescook@chromium.org>
>>
>> This looks good to me-- I'm fine with Jens or someone else picking this
>> up directly, or would take a bcache-specific one to apply to my tree.
>>
>> Reviewed-by: Michael Lyle <mlyle@lyle.org>
>
> Jens, can you pick this up, or would you prefer I split it up?
I can pick it up, but I don’t think I was ever cc’ed on
the original.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: md: Convert timers to use timer_setup()
2017-10-19 3:12 ` Jens Axboe
@ 2017-10-24 18:15 ` Mike Snitzer
2017-10-24 18:18 ` Jens Axboe
0 siblings, 1 reply; 8+ messages in thread
From: Mike Snitzer @ 2017-10-24 18:15 UTC (permalink / raw)
To: Jens Axboe
Cc: Michael Lyle, Kees Cook, dm-devel, LKML, linux-raid, linux-bcache,
Shaohua Li, Kent Overstreet, Alasdair Kergon
On Wed, Oct 18 2017 at 11:12pm -0400,
Jens Axboe <axboe@kernel.dk> wrote:
>
> > On Oct 18, 2017, at 9:06 PM, Kees Cook <keescook@chromium.org> wrote:
> >
> >> On Mon, Oct 16, 2017 at 8:06 PM, Michael Lyle <mlyle@lyle.org> wrote:
> >>> On 10/16/2017 05:01 PM, Kees Cook wrote:
> >>> In preparation for unconditionally passing the struct timer_list pointer to
> >>> all timer callbacks, switch to using the new timer_setup() and from_timer()
> >>> to pass the timer pointer explicitly.
> >>>
> >>> Cc: Kent Overstreet <kent.overstreet@gmail.com>
> >>> Cc: Shaohua Li <shli@kernel.org>
> >>> Cc: Alasdair Kergon <agk@redhat.com>
> >>> Cc: Mike Snitzer <snitzer@redhat.com>
> >>> Cc: dm-devel@redhat.com
> >>> Cc: linux-bcache@vger.kernel.org
> >>> Cc: linux-raid@vger.kernel.org
> >>> Signed-off-by: Kees Cook <keescook@chromium.org>
> >>
> >> This looks good to me-- I'm fine with Jens or someone else picking this
> >> up directly, or would take a bcache-specific one to apply to my tree.
> >>
> >> Reviewed-by: Michael Lyle <mlyle@lyle.org>
> >
> > Jens, can you pick this up, or would you prefer I split it up?
Jens, would you be OK picking it up from patchwork? If so, see:
https://patchwork.kernel.org/patch/10010303/
You can add mine too:
Reviewed-by: Mike Snitzer <snitzer@redhat.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: md: Convert timers to use timer_setup()
2017-10-24 18:15 ` Mike Snitzer
@ 2017-10-24 18:18 ` Jens Axboe
0 siblings, 0 replies; 8+ messages in thread
From: Jens Axboe @ 2017-10-24 18:18 UTC (permalink / raw)
To: Mike Snitzer
Cc: Kees Cook, Michael Lyle, linux-bcache, LKML, linux-raid, dm-devel,
Shaohua Li, Kent Overstreet, Alasdair Kergon
On 10/24/2017 12:15 PM, Mike Snitzer wrote:
> On Wed, Oct 18 2017 at 11:12pm -0400,
> Jens Axboe <axboe@kernel.dk> wrote:
>
>>
>>> On Oct 18, 2017, at 9:06 PM, Kees Cook <keescook@chromium.org> wrote:
>>>
>>>> On Mon, Oct 16, 2017 at 8:06 PM, Michael Lyle <mlyle@lyle.org> wrote:
>>>>> On 10/16/2017 05:01 PM, Kees Cook wrote:
>>>>> In preparation for unconditionally passing the struct timer_list pointer to
>>>>> all timer callbacks, switch to using the new timer_setup() and from_timer()
>>>>> to pass the timer pointer explicitly.
>>>>>
>>>>> Cc: Kent Overstreet <kent.overstreet@gmail.com>
>>>>> Cc: Shaohua Li <shli@kernel.org>
>>>>> Cc: Alasdair Kergon <agk@redhat.com>
>>>>> Cc: Mike Snitzer <snitzer@redhat.com>
>>>>> Cc: dm-devel@redhat.com
>>>>> Cc: linux-bcache@vger.kernel.org
>>>>> Cc: linux-raid@vger.kernel.org
>>>>> Signed-off-by: Kees Cook <keescook@chromium.org>
>>>>
>>>> This looks good to me-- I'm fine with Jens or someone else picking this
>>>> up directly, or would take a bcache-specific one to apply to my tree.
>>>>
>>>> Reviewed-by: Michael Lyle <mlyle@lyle.org>
>>>
>>> Jens, can you pick this up, or would you prefer I split it up?
>
> Jens, would you be OK picking it up from patchwork? If so, see:
> https://patchwork.kernel.org/patch/10010303/
>
> You can add mine too:
> Reviewed-by: Mike Snitzer <snitzer@redhat.com>
Done, thanks all.
--
Jens Axboe
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2017-10-24 18:18 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-17 0:01 [PATCH] md: Convert timers to use timer_setup() Kees Cook
2017-10-17 2:12 ` Shaohua Li
2017-10-17 2:23 ` Kees Cook
2017-10-17 3:06 ` Michael Lyle
2017-10-19 3:06 ` Kees Cook
2017-10-19 3:12 ` Jens Axboe
2017-10-24 18:15 ` Mike Snitzer
2017-10-24 18:18 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).