From: "K. Y. Srinivasan" <kys@microsoft.com>
To: gregkh@suse.de, linux-kernel@vger.kernel.org,
devel@linuxdriverproject.org, virtualization@lists.osdl.org
Cc: "K. Y. Srinivasan" <kys@microsoft.com>,
Haiyang Zhang <haiyangz@microsoft.com>,
Abhishek Kane <v-abkane@microsoft.com>,
Hank Janssen <hjanssen@microsoft.com>
Subject: [PATCH 103/206] Staging: hv: Rename all static functions in ring_buffer.c
Date: Mon, 9 May 2011 14:56:25 -0700 [thread overview]
Message-ID: <1304978288-22999-103-git-send-email-kys@microsoft.com> (raw)
In-Reply-To: <1304978288-22999-1-git-send-email-kys@microsoft.com>
The subject line says it all.
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>
---
drivers/staging/hv/ring_buffer.c | 88 +++++++++++++++++++-------------------
1 files changed, 44 insertions(+), 44 deletions(-)
diff --git a/drivers/staging/hv/ring_buffer.c b/drivers/staging/hv/ring_buffer.c
index 7fbadb1..f4707f8 100644
--- a/drivers/staging/hv/ring_buffer.c
+++ b/drivers/staging/hv/ring_buffer.c
@@ -38,7 +38,7 @@
/*++
Name:
- get_ringbuffer_availbytes()
+ hv_get_ringbuffer_availbytes()
Description:
Get number of bytes available to read and to write to
@@ -46,7 +46,7 @@ Description:
--*/
static inline void
-get_ringbuffer_availbytes(struct hv_ring_buffer_info *rbi,
+hv_get_ringbuffer_availbytes(struct hv_ring_buffer_info *rbi,
u32 *read, u32 *write)
{
u32 read_loc, write_loc;
@@ -62,14 +62,14 @@ get_ringbuffer_availbytes(struct hv_ring_buffer_info *rbi,
/*++
Name:
- get_next_write_location()
+ hv_get_next_write_location()
Description:
Get the next write location for the specified ring buffer
--*/
static inline u32
-get_next_write_location(struct hv_ring_buffer_info *ring_info)
+hv_get_next_write_location(struct hv_ring_buffer_info *ring_info)
{
u32 next = ring_info->ring_buffer->write_index;
@@ -81,14 +81,14 @@ get_next_write_location(struct hv_ring_buffer_info *ring_info)
/*++
Name:
- set_next_write_location()
+ hv_set_next_write_location()
Description:
Set the next write location for the specified ring buffer
--*/
static inline void
-set_next_write_location(struct hv_ring_buffer_info *ring_info,
+hv_set_next_write_location(struct hv_ring_buffer_info *ring_info,
u32 next_write_location)
{
ring_info->ring_buffer->write_index = next_write_location;
@@ -97,14 +97,14 @@ set_next_write_location(struct hv_ring_buffer_info *ring_info,
/*++
Name:
- get_next_read_location()
+ hv_get_next_read_location()
Description:
Get the next read location for the specified ring buffer
--*/
static inline u32
-get_next_read_location(struct hv_ring_buffer_info *ring_info)
+hv_get_next_read_location(struct hv_ring_buffer_info *ring_info)
{
u32 next = ring_info->ring_buffer->read_index;
@@ -116,7 +116,7 @@ get_next_read_location(struct hv_ring_buffer_info *ring_info)
/*++
Name:
- get_next_readlocation_withoffset()
+ hv_get_next_readlocation_withoffset()
Description:
Get the next read location + offset for the specified ring buffer.
@@ -124,7 +124,7 @@ Description:
--*/
static inline u32
-get_next_readlocation_withoffset(struct hv_ring_buffer_info *ring_info,
+hv_get_next_readlocation_withoffset(struct hv_ring_buffer_info *ring_info,
u32 offset)
{
u32 next = ring_info->ring_buffer->read_index;
@@ -139,14 +139,14 @@ get_next_readlocation_withoffset(struct hv_ring_buffer_info *ring_info,
/*++
Name:
- set_next_read_location()
+ hv_set_next_read_location()
Description:
Set the next read location for the specified ring buffer
--*/
static inline void
-set_next_read_location(struct hv_ring_buffer_info *ring_info,
+hv_set_next_read_location(struct hv_ring_buffer_info *ring_info,
u32 next_read_location)
{
ring_info->ring_buffer->read_index = next_read_location;
@@ -156,14 +156,14 @@ set_next_read_location(struct hv_ring_buffer_info *ring_info,
/*++
Name:
- get_ring_buffer()
+ hv_get_ring_buffer()
Description:
Get the start of the ring buffer
--*/
static inline void *
-get_ring_buffer(struct hv_ring_buffer_info *ring_info)
+hv_get_ring_buffer(struct hv_ring_buffer_info *ring_info)
{
return (void *)ring_info->ring_buffer->buffer;
}
@@ -172,14 +172,14 @@ get_ring_buffer(struct hv_ring_buffer_info *ring_info)
/*++
Name:
- get_ring_buffersize()
+ hv_get_ring_buffersize()
Description:
Get the size of the ring buffer
--*/
static inline u32
-get_ring_buffersize(struct hv_ring_buffer_info *ring_info)
+hv_get_ring_buffersize(struct hv_ring_buffer_info *ring_info)
{
return ring_info->ring_datasize;
}
@@ -187,14 +187,14 @@ get_ring_buffersize(struct hv_ring_buffer_info *ring_info)
/*++
Name:
- get_ring_bufferindices()
+ hv_get_ring_bufferindices()
Description:
Get the read and write indices as u64 of the specified ring buffer
--*/
static inline u64
-get_ring_bufferindices(struct hv_ring_buffer_info *ring_info)
+hv_get_ring_bufferindices(struct hv_ring_buffer_info *ring_info)
{
return (u64)ring_info->ring_buffer->write_index << 32;
}
@@ -214,7 +214,7 @@ void hv_dump_ring_info(struct hv_ring_buffer_info *ring_info, char *prefix)
u32 bytes_avail_towrite;
u32 bytes_avail_toread;
- get_ringbuffer_availbytes(ring_info,
+ hv_get_ringbuffer_availbytes(ring_info,
&bytes_avail_toread,
&bytes_avail_towrite);
@@ -235,14 +235,14 @@ void hv_dump_ring_info(struct hv_ring_buffer_info *ring_info, char *prefix)
/* Internal routines */
static u32
-copyto_ringbuffer(
+hv_copyto_ringbuffer(
struct hv_ring_buffer_info *ring_info,
u32 start_write_offset,
void *src,
u32 srclen);
static u32
-copyfrom_ringbuffer(
+hv_copyfrom_ringbuffer(
struct hv_ring_buffer_info *ring_info,
void *dest,
u32 destlen,
@@ -266,7 +266,7 @@ void hv_ringbuffer_get_debuginfo(struct hv_ring_buffer_info *ring_info,
u32 bytes_avail_toread;
if (ring_info->ring_buffer) {
- get_ringbuffer_availbytes(ring_info,
+ hv_get_ringbuffer_availbytes(ring_info,
&bytes_avail_toread,
&bytes_avail_towrite);
@@ -369,7 +369,7 @@ int hv_ringbuffer_write(struct hv_ring_buffer_info *outring_info,
spin_lock_irqsave(&outring_info->ring_lock, flags);
- get_ringbuffer_availbytes(outring_info,
+ hv_get_ringbuffer_availbytes(outring_info,
&bytes_avail_toread,
&bytes_avail_towrite);
@@ -384,20 +384,20 @@ int hv_ringbuffer_write(struct hv_ring_buffer_info *outring_info,
}
/* Write to the ring buffer */
- next_write_location = get_next_write_location(outring_info);
+ next_write_location = hv_get_next_write_location(outring_info);
for_each_sg(sglist, sg, sgcount, i)
{
- next_write_location = copyto_ringbuffer(outring_info,
+ next_write_location = hv_copyto_ringbuffer(outring_info,
next_write_location,
sg_virt(sg),
sg->length);
}
/* Set previous packet start */
- prev_indices = get_ring_bufferindices(outring_info);
+ prev_indices = hv_get_ring_bufferindices(outring_info);
- next_write_location = copyto_ringbuffer(outring_info,
+ next_write_location = hv_copyto_ringbuffer(outring_info,
next_write_location,
&prev_indices,
sizeof(u64));
@@ -406,7 +406,7 @@ int hv_ringbuffer_write(struct hv_ring_buffer_info *outring_info,
mb();
/* Now, update the write location */
- set_next_write_location(outring_info, next_write_location);
+ hv_set_next_write_location(outring_info, next_write_location);
/* Dumpring_info(Outring_info, "AFTER "); */
@@ -434,7 +434,7 @@ int hv_ringbuffer_peek(struct hv_ring_buffer_info *Inring_info,
spin_lock_irqsave(&Inring_info->ring_lock, flags);
- get_ringbuffer_availbytes(Inring_info,
+ hv_get_ringbuffer_availbytes(Inring_info,
&bytes_avail_toread,
&bytes_avail_towrite);
@@ -452,9 +452,9 @@ int hv_ringbuffer_peek(struct hv_ring_buffer_info *Inring_info,
}
/* Convert to byte offset */
- next_read_location = get_next_read_location(Inring_info);
+ next_read_location = hv_get_next_read_location(Inring_info);
- next_read_location = copyfrom_ringbuffer(Inring_info,
+ next_read_location = hv_copyfrom_ringbuffer(Inring_info,
Buffer,
buflen,
next_read_location);
@@ -488,7 +488,7 @@ int hv_ringbuffer_read(struct hv_ring_buffer_info *inring_info, void *buffer,
spin_lock_irqsave(&inring_info->ring_lock, flags);
- get_ringbuffer_availbytes(inring_info,
+ hv_get_ringbuffer_availbytes(inring_info,
&bytes_avail_toread,
&bytes_avail_towrite);
@@ -502,14 +502,14 @@ int hv_ringbuffer_read(struct hv_ring_buffer_info *inring_info, void *buffer,
}
next_read_location =
- get_next_readlocation_withoffset(inring_info, offset);
+ hv_get_next_readlocation_withoffset(inring_info, offset);
- next_read_location = copyfrom_ringbuffer(inring_info,
+ next_read_location = hv_copyfrom_ringbuffer(inring_info,
buffer,
buflen,
next_read_location);
- next_read_location = copyfrom_ringbuffer(inring_info,
+ next_read_location = hv_copyfrom_ringbuffer(inring_info,
&prev_indices,
sizeof(u64),
next_read_location);
@@ -520,7 +520,7 @@ int hv_ringbuffer_read(struct hv_ring_buffer_info *inring_info, void *buffer,
mb();
/* Update the read index */
- set_next_read_location(inring_info, next_read_location);
+ hv_set_next_read_location(inring_info, next_read_location);
/* Dumpring_info(Inring_info, "AFTER "); */
@@ -533,7 +533,7 @@ int hv_ringbuffer_read(struct hv_ring_buffer_info *inring_info, void *buffer,
/*++
Name:
- copyto_ringbuffer()
+ hv_copyto_ringbuffer()
Description:
Helper routine to copy from source to ring buffer.
@@ -541,14 +541,14 @@ Description:
--*/
static u32
-copyto_ringbuffer(
+hv_copyto_ringbuffer(
struct hv_ring_buffer_info *ring_info,
u32 start_write_offset,
void *src,
u32 srclen)
{
- void *ring_buffer = get_ring_buffer(ring_info);
- u32 ring_buffer_size = get_ring_buffersize(ring_info);
+ void *ring_buffer = hv_get_ring_buffer(ring_info);
+ u32 ring_buffer_size = hv_get_ring_buffersize(ring_info);
u32 frag_len;
/* wrap-around detected! */
@@ -569,7 +569,7 @@ copyto_ringbuffer(
/*++
Name:
- copyfrom_ringbuffer()
+ hv_copyfrom_ringbuffer()
Description:
Helper routine to copy to source from ring buffer.
@@ -577,14 +577,14 @@ Description:
--*/
static u32
-copyfrom_ringbuffer(
+hv_copyfrom_ringbuffer(
struct hv_ring_buffer_info *ring_info,
void *dest,
u32 destlen,
u32 start_read_offset)
{
- void *ring_buffer = get_ring_buffer(ring_info);
- u32 ring_buffer_size = get_ring_buffersize(ring_info);
+ void *ring_buffer = hv_get_ring_buffer(ring_info);
+ u32 ring_buffer_size = hv_get_ring_buffersize(ring_info);
u32 frag_len;
--
1.7.4.1
next prev parent reply other threads:[~2011-05-09 21:52 UTC|newest]
Thread overview: 217+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-09 21:57 [PATCH 000/206] Staging: hv: Cleanup hv drivers K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 001/206] Staging: hv: Get rid of blkvsc_mutex K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 002/206] Staging: hv: Cleanup spin lock usage K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 003/206] Staging: hv: Fix some locking issues K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 004/206] Staging: hv: Rename driver name variable K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 005/206] Staging: hv: Rename the device type variable K. Y. Srinivasan
2011-05-10 10:11 ` Jonathan Cameron
2011-05-10 12:13 ` Greg KH
2011-05-10 12:43 ` Jonathan Cameron
2011-05-09 21:54 ` [PATCH 006/206] Staging: hv: Change the name of struct storvsc_driver_object K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 007/206] Staging: hv: Change the name of blkvsc driver variable K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 008/206] Staging: hv: Rename variables of type struct storvsc_driver * K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 009/206] Staging: hv: Rename the function blk_vsc_on_device_add K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 010/206] Staging: hv: Get rid of the indirection for invoking device_add K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 011/206] Staging: hv: Rename the function stor_vsc_device_add K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 012/206] Staging: hv: Rename the function stor_vsc_on_device_remove K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 013/206] Staging: hv: Get rid of the indirection for removing stor device K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 014/206] Staging: hv: Rename the function stor_vsc_on_cleanup K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 015/206] Staging: hv: Get rid of the indirection for invoking cleanup function K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 016/206] Staging: hv: Rename the function stor_vsc_on_io_request K. Y. Srinivasan
2011-05-09 21:54 ` [PATCH 017/206] Staging: hv: Get rid of the indirection for invoking io request K. Y. Srinivasan
2011-05-10 7:01 ` Christoph Hellwig
2011-05-09 21:55 ` [PATCH 018/206] Staging: hv: Statically initialize pointers for probe etc K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 019/206] Staging: hv: Get rid of the calls to storvsc_cleanup K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 020/206] Staging: hv: Rename the function stor_vsc_get_major_info() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 021/206] Staging: hv: Introduce a function to wait to drain outgoing I/O K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 022/206] Staging: hv: Use the newly introduced I/O drain synch method K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 023/206] Staging: hv: Cleanup blkvsc_remove() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 024/206] Staging: hv: Cleanup blkvsc_shutdown() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 025/206] Staging: hv: Rename stor_vsc_channel_init() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 026/206] Staging: hv: Rename stor_vsc_on_io_completion K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 027/206] Staging: hv: Rename stor_vsc_on_receive K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 028/206] Staging: hv: Rename stor_vsc_on_channel_callback K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 029/206] Staging: hv: Rename stor_vsc_connect_to_vsp K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 030/206] Staging: hv: Get rid of/change some dated comments K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 031/206] Staging: hv: Get rid of some unnecessary DPRINTS K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 032/206] Staging: hv: Rename g_driver_name K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 033/206] Staging: hv: Rename struct host_device_context K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 034/206] Staging: hv: Rename variables pointing to struct hv_host_device K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 035/206] Staging: hv: Rename the struct hv_device * element of " K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 036/206] Staging: hv: Rename variables pointing to struct hv_device K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 037/206] Staging: hv: Get rid of some dated comments K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 038/206] Staging: hv: Get rid of some DPRINTS K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 039/206] Staging: hv: Get rid of the forward declaration for storvsc_device_alloc() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 040/206] Staging: hv: Move the function storvsc_merge_bvec() to earlier in the file K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 041/206] Staging: hv: Get rid of the forward declaration for storvsc_device_configure() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 042/206] Staging: hv: Get rid of the forwrd declaration of destroy_bounce_buffer K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 043/206] Staging: hv: Get rid of the forward declaration for do_bounce_buffer() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 044/206] Staging: hv: Get rid of the forward declaration for create_bounce_buffer() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 045/206] Staging: hv: Get rid of the forward declaration of copy_from_bounce_buffer() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 046/206] Staging: hv: Get rid of the forward declaration for copy_to_bounce_buffer() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 047/206] Staging: hv: Get rid of the forward declaration of storvsc_remove() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 048/206] Staging: hv: Get rid of the forward declaration of storvsc_get_chs() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 049/206] Staging: hv: Staging: hv: Rename the function stor_vsc_on_host_reset() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 050/206] Staging: hv: Rename stor_vsc_initialize() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 051/206] Staging: hv: Move the definition of storvsc_host_reset() to earlier in the file K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 052/206] Staging: hv: Get rid of the forward declaration for storvsc_host_reset_handler() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 053/206] Staging: hv: Move the definition of storvsc_ringbuffer_size to earlier in the file K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 054/206] Staging: hv: Move module parameters " K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 055/206] Staging: hv: Move the function storvsc_commmand_completion() " K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 056/206] Staging: hv: Get rid of the forward declaration of storvsc_queuecommand() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 057/206] Staging: hv: Get rid of the forward declaration of storvsc_probe() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 058/206] Staging: hv: Rename the driver variable K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 059/206] Staging: hv: Move the declaration of " K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 060/206] Staging: hv: Statically initialize probe/remove elements of the driver K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 061/206] Staging: hv: Get rid of unnecessary comments/dead code K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 062/206] Staging: hv: Get rid of the indirection in invoking storvsc_dev_remove() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 063/206] Staging: hv: Get rid of the indirection in invoking storvsc_dev_add() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 064/206] Staging: hv: Get rid of the indirection in invoking storvsc_do_io() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 065/206] Staging: hv: Get rid of the code initializing the dispatch table K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 066/206] Staging: hv: Simplify the code for getting the drive parameters K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 067/206] Staging: hv: Make the function netvsc_device_add() non static K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 068/206] Staging: hv: Make netvsc_device_remove " K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 069/206] Staging: hv: Get rid of netvsc_cleanup() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 070/206] Staging: hv: Make rndis_filte_device_add() non static K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 071/206] Staging: hv: Make rndis_filter_device_remove() " K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 072/206] Staging: hv: Get rid of rndis_filter_cleanup() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 073/206] Staging: hv: Get rid of the indirection to invoke rndis_filte_device_add() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 074/206] Staging: hv: Get rid of the indirection to invoke netvsc_device_add() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 075/206] Staging: hv: Get rid of the indirection in invoking rndis_filter_device_remove() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 076/206] Staging: hv: Get rid of the indirection in invoking netvsc_device_remove() K. Y. Srinivasan
2011-05-09 21:55 ` [PATCH 077/206] Staging: hv: Get rid of call to cleanup() K. Y. Srinivasan
2011-05-09 22:53 ` Greg KH
2011-05-09 23:53 ` KY Srinivasan
2011-05-10 0:18 ` Greg KH
2011-05-09 21:56 ` [PATCH 078/206] Staging: hv: Get rid of unnecessary code in netvsc.c K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 079/206] Staging: hv: Get rid of some unnecessary code in rndis_filter.c K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 080/206] Staging: hv: Get rid of the indirection to invoke mousevsc_on_device_add() K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 081/206] Staging: hv: Get rid of the indirection to invoke mousevsc_on_device_remove K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 082/206] Staging: hv: Get rid of the mouse cleanup() function K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 083/206] Staging: hv: Cleanup mouse_vsc_initialize() K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 084/206] Staging: hv: Get rid of dev_add from struct hv_driver K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 085/206] Staging: hv: Get rid of dev_rm " K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 086/206] Staging: hv: Cleanup calls to cleanup in storvsc_drv.c K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 087/206] Staging: hv: Cleanup calls to cleanup() in hv_mouse.c K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 088/206] Staging: hv: Get rid of cleanup from struct hv_driver K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 089/206] Staging: hv: Rename the variable g_netvsc_drv K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 090/206] Staging: hv: Move the declaration of the variable netvsc_drv K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 091/206] Staging: hv: Statically initialize probe/remove K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 092/206] Staging: hv: Rename the variable g_mousevsc_drv K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 093/206] Staging: hv: Move the declaration of the variable mousevsc_drv K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 094/206] Staging: hv: Statically initialize probe/remove K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 095/206] Staging: hv: Rename the function ringbuffer_init K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 096/206] Staging: hv: Rename ringbuffer_cleanup K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 097/206] Staging: hv: Rename ringbuffer_write K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 098/206] Staging: hv: Rename ringbuffer_peek K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 099/206] Staging: hv: Rename ringbuffer_read K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 100/206] Staging: hv: Rename get_ringbuffer_interrupt_mask K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 101/206] Staging: hv: Rename dump_ring_info K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 102/206] Staging: hv: Rename ringbuffer_get_debuginfo K. Y. Srinivasan
2011-05-09 21:56 ` K. Y. Srinivasan [this message]
2011-05-09 21:56 ` [PATCH 104/206] Staging: hv: Cleanup comments in ring_buffer.c K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 105/206] Staging: hv: Get rid of the forward declaration of hv_copyfrom_ringbuffer K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 106/206] Staging: hv: Get rid of the forward declaration of hv_copyto_ringbuffer() K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 107/206] Staging: hv: Get rid of the volatile qualifier for a variable in ring_buffer.c K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 108/206] Staging: hv: Cleanup ring_buffer.h K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 109/206] Staging: hv: Rename the variable gSupportedDeviceClasses K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 110/206] Staging: hv: Rename the variable messageHandler K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 111/206] Staging: hv: Rename the variable messageType K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 112/206] Staging: hv: Rename the variable gChannelMessageTable K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 113/206] Staging: hv: Use completion abstraction to synchronize in vmbus_channel_msginfo K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 114/206] Staging: hv: Get rid of some unnecessary state from struct vmbus_msginfo K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 115/206] Staging: hv: Use completion abstraction in struct netvsc_device K. Y. Srinivasan
2011-05-10 7:06 ` Christoph Hellwig
2011-05-10 12:52 ` KY Srinivasan
2011-05-09 21:56 ` [PATCH 116/206] Staging: hv: Use the completion abstraction in struct rndis_request K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 117/206] Staging: hv: Get rid of some dead code in channel.c K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 118/206] Staging: hv: Change Cleanup to cleanup K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 119/206] Staging: hv: Get rid of some dead code in connection.c K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 120/206] Staging: hv: Get rid of some dead code from hv.c K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 121/206] Staging: hv: Change Cleanup to cleanup K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 122/206] Staging: hv: Get rid of unnecessary state from struct storvsc_driver K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 123/206] Staging: hv: Get rid unnecessary DPRINT K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 124/206] Staging: hv: Get rid of unnecessary code/comments K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 125/206] Staging: hv: Assign the name directly K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 126/206] Staging: hv: Move the assignment of driver name K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 127/206] Staging: hv: Inline the copying of dev_type guid K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 128/206] Staging: hv: Now get rid of the empty function K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 129/206] Staging: hv: Move the sector size check into blkvsc_drv_init K. Y. Srinivasan
2011-05-10 8:49 ` Christoph Hellwig
2011-05-09 21:56 ` [PATCH 130/206] Staging: hv: Make blkvsc_drv_init the module init function K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 131/206] Staging: hv: Get rid of some unnecessary DPRINTs K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 132/206] Staging: hv: Compute max_outstanding_req_per_channel where it is needed K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 133/206] Staging: hv: Get rid of max_outstanding_req_per_channel from struct storvsc_driver K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 134/206] Staging: hv: Add ring_buffer_size to struct storvsc_device_info K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 135/206] Staging: hv: Use the rinbuffer size info in " K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 136/206] Staging: hv: Get rid of the unnecessary assignment of ring size K. Y. Srinivasan
2011-05-09 21:56 ` [PATCH 137/206] Staging: hv: Get rid of the ring size state from struct storvsc_driver K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 138/206] Staging: hv: Directly assign the driver name K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 139/206] Staging: hv: Move the assignment of name to the hv_driver K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 140/206] Staging: hv: Inline the copying of the dev_type information K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 141/206] Staging: hv: Now get rid of an empty function K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 142/206] Staging: hv: Get rid of some unused functions K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 143/206] Staging: hv: Make storvsc_drv an instance of hv_driver K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 144/206] Staging: hv: Make blkvsc_drv an instance of struct hv_driver K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 145/206] Staging: hv: Get rid of struct storvsc_driver K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 146/206] Staging: hv: Directly assign the driver name K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 147/206] Staging: hv: Move the assignment of name variable K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 148/206] Staging: hv: Move the code to copy dev_type information K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 149/206] Staging: hv: Get rid of an empty function K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 150/206] Staging: hv: Make mousevsc_drv an instance of struct hv_driver K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 151/206] Staging: hv: Get rid of some unused code K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 152/206] Staging: hv: Create a common header for all hyperv drivers to include K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 153/206] Staging: hv:Include the contents of channel.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 154/206] Staging: hv: Include the contents of channel_mgmt.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 155/206] Staging: hv: Include the contents of ring_buffer.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 156/206] Staging: hv: Include the contents of vmbus_channel_interface.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 157/206] Staging: hv: Include the contents of vmbus_packet_format.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 158/206] Staging: hv: Include the contents of logging.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 159/206] Staging: hv: Include the contents of version_info.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 160/206] Staging: hv: Add the contents of vmbus_api.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 161/206] Staging: hv: Include the contents of vmbus.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 162/206] Staging: hv: Cleanup the newly created header file K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 163/206] Staging: hv: Include asm/hyperv.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 164/206] Staging: hv: Add the definition hv_guid K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 165/206] Staging: hv: Add a new header file to include all header files private to vmbus core K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 166/206] Staging: hv: Include a subset of the contents of hv_api.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 167/206] Staging: hv: Add " K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 168/206] Staging: hv: Add the ringbuffer interfaces K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 169/206] Staging: hv: Include the contents of vmbus_private.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 170/206] Staging: hv: Cleanup the newly created header file K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 171/206] Staging: hv: Create a header file that has all the definitions needed to build Hyper-V storage drivers K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 172/206] Staging: hv: Include the contents of vstorage.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 173/206] Staging: hv: Include the contents of storvsc_api.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 174/206] Staging: hv: Create a single header file for hyper-v network drivers K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 175/206] Staging: hv: Include the contents of netvsc_api.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 176/206] Staging: hv: Include the contents of netvsc.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 177/206] Staging: hv: Include the contents of rndis.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 178/206] Staging: hv: Include the contents of rndis_filter.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 179/206] Staging: hv: Include the contents of utils.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 180/206] Staging: hv: Include the newly created header files in blkvsc_drv.c K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 181/206] Staging: hv: Include the newly created header files in storvsc.c K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 182/206] Staging: hv: Include the newly created header files in storvsc_drv.c K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 183/206] Staging: hv: Include the new header files in the network driver K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 184/206] Staging: hv: Include the new header files in vmbus driver K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 185/206] Staging: hv: Include the newly created header file in the util driver K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 186/206] Staging: hv: Include the newly created header file in the mouse driver K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 187/206] Staging: hv: Get rid of channel.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 188/206] Staging: hv: Get rid of channel_mgmt.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 189/206] Staging: hv: Get rid of hv_api.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 190/206] Staging: hv: Get rid of hv.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 191/206] Staging: hv: Get rid of logging.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 192/206] Staging: hv: Get rid of netvsc_api.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 193/206] Staging: hv: Get rid of netvsc.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 194/206] Staging: hv: Get rid of ring_buffer.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 195/206] Staging: hv: Get rid of rndis_filter.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 196/206] Staging: hv: Get rid of rndis.h K. Y. Srinivasan
2011-05-09 21:57 ` [PATCH 197/206] Staging: hv: Get rid of storvsc_api.h K. Y. Srinivasan
2011-05-09 21:58 ` [PATCH 198/206] Staging: hv: Get rid of utils.h K. Y. Srinivasan
2011-05-09 21:58 ` [PATCH 199/206] Staging: hv: Get rid of version_info.h K. Y. Srinivasan
2011-05-09 21:58 ` [PATCH 200/206] Staging: hv: Get rid of vmbus_api.h K. Y. Srinivasan
2011-05-09 21:58 ` [PATCH 201/206] Staging: hv: Get rid of vmbus_channel_interface.h K. Y. Srinivasan
2011-05-09 21:58 ` [PATCH 202/206] Staging: hv: Get rid of vmbus.h K. Y. Srinivasan
2011-05-09 21:58 ` [PATCH 203/206] Staging: hv: Get rid of vmbus_packet_format.h K. Y. Srinivasan
2011-05-09 21:58 ` [PATCH 204/206] Staging: hv: Get rid of vmbus_private.h K. Y. Srinivasan
2011-05-09 21:58 ` [PATCH 205/206] Staging: hv: Get rid of vstorage.h K. Y. Srinivasan
2011-05-09 21:58 ` [PATCH 206/206] Staging: hv: Get rid of the function count_hv_channel() K. Y. Srinivasan
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=1304978288-22999-103-git-send-email-kys@microsoft.com \
--to=kys@microsoft.com \
--cc=devel@linuxdriverproject.org \
--cc=gregkh@suse.de \
--cc=haiyangz@microsoft.com \
--cc=hjanssen@microsoft.com \
--cc=linux-kernel@vger.kernel.org \
--cc=v-abkane@microsoft.com \
--cc=virtualization@lists.osdl.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox