Deleted Added
full compact
hv_util.c (255414) hv_util.c (255427)
1/*-
2 * Copyright (c) 2009-2012 Microsoft Corp.
3 * Copyright (c) 2012 NetApp Inc.
4 * Copyright (c) 2012 Citrix Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 68 unchanged lines hidden (view full) ---

77
78 /* Heartbeat Service */
79 { .guid.data = {0x39, 0x4f, 0x16, 0x57, 0x15, 0x91, 0x78, 0x4e,
80 0xab, 0x55, 0x38, 0x2f, 0x3b, 0xd5, 0x42, 0x2d},
81 .name = "Hyper-V Heartbeat Service\n",
82 .enabled = TRUE,
83 .callback = hv_heartbeat_cb,
84 },
1/*-
2 * Copyright (c) 2009-2012 Microsoft Corp.
3 * Copyright (c) 2012 NetApp Inc.
4 * Copyright (c) 2012 Citrix Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 68 unchanged lines hidden (view full) ---

77
78 /* Heartbeat Service */
79 { .guid.data = {0x39, 0x4f, 0x16, 0x57, 0x15, 0x91, 0x78, 0x4e,
80 0xab, 0x55, 0x38, 0x2f, 0x3b, 0xd5, 0x42, 0x2d},
81 .name = "Hyper-V Heartbeat Service\n",
82 .enabled = TRUE,
83 .callback = hv_heartbeat_cb,
84 },
85
86 /* KVP (Key Value Pair) Service */
87 { .guid.data = {0xe7, 0xf4, 0xa0, 0xa9, 0x45, 0x5a, 0x96, 0x4d,
88 0xb8, 0x27, 0x8a, 0x84, 0x1e, 0x8c, 0x3, 0xe6},
89 .name = "Hyper-V KVP Service\n",
90 .enabled = TRUE,
91 .init = hv_kvp_init,
92 .callback = hv_kvp_callback,
93 },
94};
95
96/*
97 * Receive buffer pointers. There is one buffer per utility service. The
98 * buffer is allocated during attach().
99 */
100uint8_t *receive_buffer[HV_MAX_UTIL_SERVICES];
101

--- 382 unchanged lines hidden ---
85};
86
87/*
88 * Receive buffer pointers. There is one buffer per utility service. The
89 * buffer is allocated during attach().
90 */
91uint8_t *receive_buffer[HV_MAX_UTIL_SERVICES];
92

--- 382 unchanged lines hidden ---