#include "hammer.h"
static uint32_t ocp_allocbit(hammer_objid_cache_t ocp, uint32_t n);
void
hammer_start_transaction(hammer_transaction_t trans, hammer_mount_t hmp)
{
struct timespec ts;
int error;
trans->type = HAMMER_TRANS_STD;
trans->hmp = hmp;
trans->rootvol = hammer_get_root_volume(hmp, &error);
KKASSERT(error == 0);
trans->tid = 0;
trans->sync_lock_refs = 0;
trans->flags = 0;
vfs_timestamp(&ts);
trans->time = (unsigned long)ts.tv_sec * 1000000ULL +
ts.tv_nsec / 1000;
trans->time32 = (uint32_t)ts.tv_sec;
}
void
hammer_simple_transaction(hammer_transaction_t trans, hammer_mount_t hmp)
{
struct timespec ts;
int error;
trans->type = HAMMER_TRANS_RO;
trans->hmp = hmp;
trans->rootvol = hammer_get_root_volume(hmp, &error);
KKASSERT(error == 0);
trans->tid = 0;
trans->sync_lock_refs = 0;
trans->flags = 0;
vfs_timestamp(&ts);
trans->time = (unsigned long)ts.tv_sec * 1000000ULL +
ts.tv_nsec / 1000;
trans->time32 = (uint32_t)ts.tv_sec;
}
void
hammer_start_transaction_fls(hammer_transaction_t trans, hammer_mount_t hmp)
{
struct timespec ts;
int error;
bzero(trans, sizeof(*trans));
trans->type = HAMMER_TRANS_FLS;
trans->hmp = hmp;
trans->rootvol = hammer_get_root_volume(hmp, &error);
KKASSERT(error == 0);
trans->tid = hammer_alloc_tid(hmp, 1);
trans->sync_lock_refs = 1;
trans->flags = 0;
vfs_timestamp(&ts);
trans->time = (unsigned long)ts.tv_sec * 1000000ULL +
ts.tv_nsec / 1000;
trans->time32 = (uint32_t)ts.tv_sec;
}
void
hammer_done_transaction(hammer_transaction_t trans)
{
int expected_lock_refs __debugvar;
hammer_rel_volume(trans->rootvol, 0);
trans->rootvol = NULL;
expected_lock_refs = (trans->type == HAMMER_TRANS_FLS) ? 1 : 0;
KKASSERT(trans->sync_lock_refs == expected_lock_refs);
trans->sync_lock_refs = 0;
if (trans->type != HAMMER_TRANS_FLS) {
if (trans->flags & HAMMER_TRANSF_NEWINODE) {
lwkt_gettoken(&trans->hmp->fs_token);
hammer_inode_waitreclaims(trans);
lwkt_reltoken(&trans->hmp->fs_token);
}
}
}
hammer_tid_t
hammer_alloc_tid(hammer_mount_t hmp, int count)
{
hammer_tid_t tid;
if (hmp->master_id < 0) {
tid = hmp->next_tid + 1;
hmp->next_tid = tid + count;
} else {
tid = (hmp->next_tid + HAMMER_MAX_MASTERS) &
~(hammer_tid_t)(HAMMER_MAX_MASTERS - 1);
hmp->next_tid = tid + count * HAMMER_MAX_MASTERS;
tid |= hmp->master_id;
}
if (tid >= 0xFFFFFFFFFF000000ULL)
hpanic("Ran out of TIDs!");
if (hammer_debug_tid)
hdkprintf("%016jx\n", (intmax_t)tid);
return(tid);
}
hammer_tid_t
hammer_alloc_objid(hammer_mount_t hmp, hammer_inode_t dip, int64_t namekey)
{
hammer_objid_cache_t ocp;
hammer_tid_t tid;
uint32_t n;
while ((ocp = dip->objid_cache) == NULL) {
if (hmp->objid_cache_count < OBJID_CACHE_SIZE) {
ocp = kmalloc(sizeof(*ocp), hmp->m_misc,
M_WAITOK|M_ZERO);
ocp->base_tid = hammer_alloc_tid(hmp,
OBJID_CACHE_BULK * 2);
ocp->base_tid += OBJID_CACHE_BULK_MASK64;
ocp->base_tid &= ~OBJID_CACHE_BULK_MASK64;
if (dip->objid_cache == NULL) {
TAILQ_INSERT_TAIL(&hmp->objid_cache_list,
ocp, entry);
++hmp->objid_cache_count;
dip->objid_cache = ocp;
ocp->dip = dip;
} else {
kfree(ocp, hmp->m_misc);
}
} else {
ocp = TAILQ_FIRST(&hmp->objid_cache_list);
if (ocp->dip)
ocp->dip->objid_cache = NULL;
if (ocp->count >= OBJID_CACHE_BULK / 2) {
TAILQ_REMOVE(&hmp->objid_cache_list,
ocp, entry);
--hmp->objid_cache_count;
kfree(ocp, hmp->m_misc);
} else {
dip->objid_cache = ocp;
ocp->dip = dip;
}
}
}
TAILQ_REMOVE(&hmp->objid_cache_list, ocp, entry);
n = (namekey >> (63 - OBJID_CACHE_BULK_BITS)) & OBJID_CACHE_BULK_MASK;
n = ocp_allocbit(ocp, n);
tid = ocp->base_tid + n;
#if 0
ocp->next_tid += (hmp->master_id < 0) ? 1 : HAMMER_MAX_MASTERS;
#endif
if (ocp->count >= OBJID_CACHE_BULK * 3 / 4) {
dip->objid_cache = NULL;
--hmp->objid_cache_count;
ocp->dip = NULL;
kfree(ocp, hmp->m_misc);
} else {
TAILQ_INSERT_TAIL(&hmp->objid_cache_list, ocp, entry);
}
return(tid);
}
static uint32_t
ocp_allocbit(hammer_objid_cache_t ocp, uint32_t n)
{
uint32_t n0;
n0 = (n >> 5) & 31;
n &= 31;
while (ocp->bm1[n0] & (1 << n)) {
if (ocp->bm0 & (1 << n0)) {
n0 = (n0 + 1) & 31;
n = 0;
} else if (++n == 32) {
n0 = (n0 + 1) & 31;
n = 0;
}
}
++ocp->count;
ocp->bm1[n0] |= 1 << n;
if (ocp->bm1[n0] == 0xFFFFFFFFU)
ocp->bm0 |= 1 << n0;
return((n0 << 5) + n);
}
void
hammer_clear_objid(hammer_inode_t dip)
{
hammer_objid_cache_t ocp;
if ((ocp = dip->objid_cache) != NULL) {
dip->objid_cache = NULL;
ocp->dip = NULL;
TAILQ_REMOVE(&dip->hmp->objid_cache_list, ocp, entry);
TAILQ_INSERT_HEAD(&dip->hmp->objid_cache_list, ocp, entry);
}
}
void
hammer_destroy_objid_cache(hammer_mount_t hmp)
{
hammer_objid_cache_t ocp;
while ((ocp = TAILQ_FIRST(&hmp->objid_cache_list)) != NULL) {
TAILQ_REMOVE(&hmp->objid_cache_list, ocp, entry);
if (ocp->dip)
ocp->dip->objid_cache = NULL;
kfree(ocp, hmp->m_misc);
--hmp->objid_cache_count;
}
KKASSERT(hmp->objid_cache_count == 0);
}