diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-06 18:58:10 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-26 11:18:13 +0200 |
commit | dc00a94df4a06764d822b29cbf35b532343821c8 (patch) | |
tree | e7564cd1b9db1e8019cf1d4a458922c0de245b04 /libdiskfs/protid-make.c | |
parent | b793108b09138edf0a963d9e3107eb400ee27011 (diff) |
libdiskfs: lock-less reference counting for peropen objects
* libdiskfs/diskfs.h (struct peropen): Use refcount_t for field refcnt.
* libdiskfs/peropen-make.c (diskfs_make_peropen): Initialize refcnt.
* libdiskfs/peropen-rele.c (diskfs_release_peropen): Adjust accordingly.
* libdiskfs/protid-make.c (diskfs_start_protid): Likewise. Also, the
node must no longer be locked, adjust comment accordingly.
(diskfs_create_protid): Likewise.
Diffstat (limited to 'libdiskfs/protid-make.c')
-rw-r--r-- | libdiskfs/protid-make.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libdiskfs/protid-make.c b/libdiskfs/protid-make.c index b39b92af..22aaa2e1 100644 --- a/libdiskfs/protid-make.c +++ b/libdiskfs/protid-make.c @@ -20,7 +20,7 @@ #include <assert.h> /* Build and return in CRED a protid which has no user identification, for - peropen PO. The node PO->np must be locked. */ + peropen PO. */ error_t diskfs_start_protid (struct peropen *po, struct protid **cred) { @@ -29,7 +29,7 @@ diskfs_start_protid (struct peropen *po, struct protid **cred) sizeof (struct protid), cred); if (! err) { - po->refcnt++; + refcount_ref (&po->refcnt); (*cred)->po = po; (*cred)->shared_object = MACH_PORT_NULL; (*cred)->mapped = 0; @@ -55,8 +55,8 @@ diskfs_finish_protid (struct protid *cred, struct iouser *user) assert_perror (err); } -/* Create and return a protid for an existing peropen PO in CRED for USER. - The node PO->np must be locked. */ +/* Create and return a protid for an existing peropen PO in CRED for + USER. */ error_t diskfs_create_protid (struct peropen *po, struct iouser *user, struct protid **cred) |