Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 324398
b: refs/heads/master
c: d0cbc15
h: refs/heads/master
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Sep 4, 2012
1 parent b64c670 commit dd836fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 00b8335517b50b716960377b63a9ae63ed72322c
refs/heads/master: d0cbc156a7689348e56ac9b871c988b59b9f9ff0
8 changes: 4 additions & 4 deletions trunk/tools/hv/hv_kvp_daemon.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,16 @@ static struct utsname uts_buf;
#define ENTRIES_PER_BLOCK 50

struct kvp_record {
__u8 key[HV_KVP_EXCHANGE_MAX_KEY_SIZE];
__u8 value[HV_KVP_EXCHANGE_MAX_VALUE_SIZE];
char key[HV_KVP_EXCHANGE_MAX_KEY_SIZE];
char value[HV_KVP_EXCHANGE_MAX_VALUE_SIZE];
};

struct kvp_file_state {
int fd;
int num_blocks;
struct kvp_record *records;
int num_records;
__u8 fname[MAX_FILE_NAME];
char fname[MAX_FILE_NAME];
};

static struct kvp_file_state kvp_file_info[KVP_POOL_COUNT];
Expand Down Expand Up @@ -199,7 +199,7 @@ static int kvp_file_init(void)
int fd;
FILE *filep;
size_t records_read;
__u8 *fname;
char *fname;
struct kvp_record *record;
struct kvp_record *readp;
int num_blocks;
Expand Down

0 comments on commit dd836fb

Please sign in to comment.