All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] virtio_blk: Add missing 'static' qualifiers
@ 2013-05-03  1:50 Jonghwan Choi
  2013-05-05 13:34 ` Michael S. Tsirkin
  0 siblings, 1 reply; 3+ messages in thread
From: Jonghwan Choi @ 2013-05-03  1:50 UTC (permalink / raw)
  To: 'Jonghwan Choi', linux-kernel
  Cc: 'Rusty Russell', 'Michael S. Tsirkin'

Add missing 'static' qualifiers

Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>
---
 drivers/block/virtio_blk.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
index 6472395..5cdf88b 100644
--- a/drivers/block/virtio_blk.c
+++ b/drivers/block/virtio_blk.c
@@ -20,7 +20,7 @@ module_param(use_bio, bool, S_IRUGO);
 static int major;
 static DEFINE_IDA(vd_index_ida);
 
-struct workqueue_struct *virtblk_wq;
+static struct workqueue_struct *virtblk_wq;
 
 struct virtio_blk
 {
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] virtio_blk: Add missing 'static' qualifiers
  2013-05-03  1:50 [PATCH] virtio_blk: Add missing 'static' qualifiers Jonghwan Choi
@ 2013-05-05 13:34 ` Michael S. Tsirkin
  2013-05-06  5:45   ` Rusty Russell
  0 siblings, 1 reply; 3+ messages in thread
From: Michael S. Tsirkin @ 2013-05-05 13:34 UTC (permalink / raw)
  To: Jonghwan Choi; +Cc: linux-kernel, 'Rusty Russell'

On Fri, May 03, 2013 at 10:50:55AM +0900, Jonghwan Choi wrote:
> Add missing 'static' qualifiers
> 
> Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>

Acked-by: Michael S. Tsirkin <mst@redhat.com>

> ---
>  drivers/block/virtio_blk.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
> index 6472395..5cdf88b 100644
> --- a/drivers/block/virtio_blk.c
> +++ b/drivers/block/virtio_blk.c
> @@ -20,7 +20,7 @@ module_param(use_bio, bool, S_IRUGO);
>  static int major;
>  static DEFINE_IDA(vd_index_ida);
>  
> -struct workqueue_struct *virtblk_wq;
> +static struct workqueue_struct *virtblk_wq;
>  
>  struct virtio_blk
>  {
> -- 
> 1.7.9.5

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] virtio_blk: Add missing 'static' qualifiers
  2013-05-05 13:34 ` Michael S. Tsirkin
@ 2013-05-06  5:45   ` Rusty Russell
  0 siblings, 0 replies; 3+ messages in thread
From: Rusty Russell @ 2013-05-06  5:45 UTC (permalink / raw)
  To: Michael S. Tsirkin, Jonghwan Choi; +Cc: linux-kernel

"Michael S. Tsirkin" <mst@redhat.com> writes:
> On Fri, May 03, 2013 at 10:50:55AM +0900, Jonghwan Choi wrote:
>> Add missing 'static' qualifiers
>> 
>> Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com>
>
> Acked-by: Michael S. Tsirkin <mst@redhat.com>

Applied.

Thanks,
Rusty.

>> ---
>>  drivers/block/virtio_blk.c |    2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>> 
>> diff --git a/drivers/block/virtio_blk.c b/drivers/block/virtio_blk.c
>> index 6472395..5cdf88b 100644
>> --- a/drivers/block/virtio_blk.c
>> +++ b/drivers/block/virtio_blk.c
>> @@ -20,7 +20,7 @@ module_param(use_bio, bool, S_IRUGO);
>>  static int major;
>>  static DEFINE_IDA(vd_index_ida);
>>  
>> -struct workqueue_struct *virtblk_wq;
>> +static struct workqueue_struct *virtblk_wq;
>>  
>>  struct virtio_blk
>>  {
>> -- 
>> 1.7.9.5

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-05-06  7:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-03  1:50 [PATCH] virtio_blk: Add missing 'static' qualifiers Jonghwan Choi
2013-05-05 13:34 ` Michael S. Tsirkin
2013-05-06  5:45   ` Rusty Russell

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.