summaryrefslogtreecommitdiff
path: root/kern/sref_i.h
blob: 7b2b07f28a9821fe9f6fbee1b2548e3a2ccd2484 (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * Copyright (c) 2014-2018 Richard Braun.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef KERN_SREF_I_H
#define KERN_SREF_I_H

#include <stdint.h>

#include <kern/slist.h>
#include <kern/spinlock.h>
#include <kern/work.h>

#define SREF_WEAKREF_DYING  ((uintptr_t)1)
#define SREF_WEAKREF_MASK   (~SREF_WEAKREF_DYING)

/*
 * Weak reference.
 *
 * A weak reference is a pointer to a reference counter in which the
 * least-significant bit is used to indicate whether the counter is
 * "dying", i.e. about to be destroyed.
 *
 * It must be accessed with atomic instructions. There is no need to
 * enforce memory order on access since the only data that depends on
 * the weak reference are cpu-local deltas.
 */
struct sref_weakref {
    uintptr_t addr;
};

#define SREF_QUEUED 0x1
#define SREF_DIRTY  0x2

/*
 * Scalable reference counter.
 *
 * It's tempting to merge the flags into the node member, but since they're
 * not protected by the same lock, store them separately.
 *
 * Locking keys :
 * (c) sref_counter
 * (g) sref_data
 *
 * Interrupts must be disabled when accessing a global counter.
 */
struct sref_counter {
    sref_noref_fn_t noref_fn;

    union {
        struct {
            struct slist_node node;         /* (g) */
            struct spinlock lock;
            int flags;                      /* (c) */
            unsigned long value;            /* (c) */
            struct sref_weakref *weakref;
        };

        struct work work;
    };
};

#endif /* KERN_SREF_I_H */