-
Notifications
You must be signed in to change notification settings - Fork 0
/
cap_timestamp.h
41 lines (32 loc) · 2.15 KB
/
cap_timestamp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
Advanced Computing Center for Research and Education Proprietary License
Version 1.0 (April 2006)
Copyright (c) 2006, Advanced Computing Center for Research and Education,
Vanderbilt University, All rights reserved.
This Work is the sole and exclusive property of the Advanced Computing Center
for Research and Education department at Vanderbilt University. No right to
disclose or otherwise disseminate any of the information contained herein is
granted by virtue of your possession of this software except in accordance with
the terms and conditions of a separate License Agreement entered into with
Vanderbilt University.
THE AUTHOR OR COPYRIGHT HOLDERS PROVIDES THE "WORK" ON AN "AS IS" BASIS,
WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, TITLE, FITNESS FOR A PARTICULAR
PURPOSE, AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Vanderbilt University
Advanced Computing Center for Research and Education
230 Appleton Place
Nashville, TN 37203
http://www.accre.vanderbilt.edu
*/
#include "allocation.h"
#define set_read_timestamp(a, add, offset, size, id) set_rw_ts(&((a)->read_ts[(a)->read_slot]), &((a)->read_slot), add, offset, size, id)
#define set_write_timestamp(a, add, offset, size, id) set_rw_ts(&((a)->write_ts[(a)->write_slot]), &((a)->write_slot), add, offset, size, id)
#define set_manage_timestamp(a, add, cmd, subcmd, reliability, expire, size, pid) set_manage_ts(&((a)->manage_ts[(a)->manage_slot]), &((a)->manage_slot), add, cmd, subcmd, reliability, expire, size, pid)
void set_alloc_timestamp(Allocation_timestamp_t *ts, Allocation_address_t *add);
void set_rw_ts(Allocation_rw_ts_t *ts, int *slot, Allocation_address_t *add, uint64_t offset, uint64_t size, osd_id_t id);
void set_manage_ts(Allocation_manage_ts_t *ts, int *slot, Allocation_address_t *add, int cmd, int subcmd,
int reliability, uint32_t expiration, uint64_t size, osd_id_t pid);