OSDN Git Service

Staging: hv: Get rid of the volatile qualifier for a variable in ring_buffer.c
authorK. Y. Srinivasan <kys@microsoft.com>
Tue, 10 May 2011 14:55:33 +0000 (07:55 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 11 May 2011 20:49:10 +0000 (13:49 -0700)
Access to this variable is already serialized via a spin lock. Get
rid of the unnecessary volatile qualifier.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Abhishek Kane <v-abkane@microsoft.com>
Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/hv/ring_buffer.c

index 2a461dd..badf52a 100644 (file)
@@ -364,7 +364,7 @@ int hv_ringbuffer_write(struct hv_ring_buffer_info *outring_info,
        u32 totalbytes_towrite = 0;
 
        struct scatterlist *sg;
-       volatile u32 next_write_location;
+       u32 next_write_location;
        u64 prev_indices = 0;
        unsigned long flags;