From: Dmitry Monakhov <dmonakhov@openvz.org>
To: linux-kernel@vger.kernel.org
Cc: akinobu.mita@gmail.com
Subject: Re: [PATCH 1/2] ratelimit: add initialization macro
Date: Sun, 19 Oct 2014 13:06:17 +0400 [thread overview]
Message-ID: <87ppdoctti.fsf@openvz.org> (raw)
In-Reply-To: <1408539282-5699-1-git-send-email-dmonakhov@openvz.org>
[-- Attachment #1: Type: text/plain, Size: 1268 bytes --]
Dmitry Monakhov <dmonakhov@openvz.org> writes:
Ping.
> Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
> ---
> include/linux/ratelimit.h | 12 +++++++++---
> 1 files changed, 9 insertions(+), 3 deletions(-)
>
> diff --git a/include/linux/ratelimit.h b/include/linux/ratelimit.h
> index 0a260d8..1810252 100644
> --- a/include/linux/ratelimit.h
> +++ b/include/linux/ratelimit.h
> @@ -17,14 +17,20 @@ struct ratelimit_state {
> unsigned long begin;
> };
>
> -#define DEFINE_RATELIMIT_STATE(name, interval_init, burst_init) \
> - \
> - struct ratelimit_state name = { \
> +#define RATELIMIT_STATE_INIT(name, interval_init, burst_init) { \
> .lock = __RAW_SPIN_LOCK_UNLOCKED(name.lock), \
> .interval = interval_init, \
> .burst = burst_init, \
> }
>
> +#define RATELIMIT_STATE_INIT_DISABLED \
> + RATELIMIT_STATE_INIT(ratelimit_state, 0, DEFAULT_RATELIMIT_BURST)
> +
> +#define DEFINE_RATELIMIT_STATE(name, interval_init, burst_init) \
> + \
> + struct ratelimit_state name = \
> + RATELIMIT_STATE_INIT(name, interval_init, burst_init) \
> +
> static inline void ratelimit_state_init(struct ratelimit_state *rs,
> int interval, int burst)
> {
> --
> 1.7.1
[-- Attachment #2: Type: application/pgp-signature, Size: 818 bytes --]
next prev parent reply other threads:[~2014-10-19 9:06 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-20 12:54 [PATCH 1/2] ratelimit: add initialization macro Dmitry Monakhov
2014-08-20 12:54 ` [PATCH 2/2] fault-inject: add ratelimit option Dmitry Monakhov
2014-08-20 14:20 ` Akinobu Mita
2014-08-20 14:36 ` Dmitry Monakhov
2014-10-19 9:07 ` Dmitry Monakhov
2014-10-19 12:17 ` Akinobu Mita
2014-10-19 9:06 ` Dmitry Monakhov [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-10-19 12:50 [PATCH 1/2] ratelimit: add initialization macro Dmitry Monakhov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87ppdoctti.fsf@openvz.org \
--to=dmonakhov@openvz.org \
--cc=akinobu.mita@gmail.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.