Skip to content

Commit 0f81714

Browse files
committed
wip
1 parent 29b109c commit 0f81714

File tree

3 files changed

+62
-10
lines changed

3 files changed

+62
-10
lines changed

apc_cache.c

+10-6
Original file line numberDiff line numberDiff line change
@@ -1281,16 +1281,20 @@ PHP_APCU_API void apc_cache_entry(apc_cache_t *cache, zend_string *key, zend_fca
12811281
}
12821282
/*}}}*/
12831283

1284-
PHP_APCU_API void apc_cache_entry_relocate(apc_cache_t* cache, apc_cache_entry_t *entry_old, apc_cache_entry_t *entry_new)
1284+
PHP_APCU_API zend_bool apc_cache_wlocked_relocate_entry(apc_cache_entry_t *old, apc_cache_entry_t *new)
12851285
{
1286-
// ptrdiff_t offset = entry_new - entry_old;
1286+
/* deny relocate, if block is in use */
1287+
if (old->ref_count > 0)
1288+
return 0;
1289+
1290+
memmove(new, old, old->mem_size);
12871291

1288-
if (entry_new->next)
1289-
entry_new->next->pprev = &entry_new->next;
1292+
if (new->next)
1293+
new->next->pprev = &new->next;
12901294

1291-
*entry_new->pprev = entry_new;
1295+
*new->pprev = new;
12921296

1293-
// Todo: when first element, slot-ptr has to be changed
1297+
return 1;
12941298
}
12951299

12961300
/*

apc_sma.c

+50-4
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ PHP_APCU_API zend_bool apc_sma_get_avail_size(apc_sma_t* sma, size_t size) {
658658
return 0;
659659
}
660660

661-
PHP_APCU_API zend_bool apc_sma_defrag(apc_sma_t* sma, size_t size) {
661+
PHP_APCU_API zend_bool apc_sma_defrag(apc_sma_t* sma, apc_sma_relocate_f relocate) {
662662
int32_t i;
663663
size_t realsize = ALIGNWORD(size + ALIGNWORD(sizeof(struct block_t)));
664664

@@ -677,10 +677,56 @@ PHP_APCU_API zend_bool apc_sma_defrag(apc_sma_t* sma, size_t size) {
677677
while (cur->fnext) {
678678
cur = BLOCKAT(cur->fnext);
679679

680-
if (cur->size >= realsize) {
681-
SMA_UNLOCK(sma, i);
682-
return 1;
680+
/* Abort if last block is reached */
681+
if (cur->fnext)
682+
break;
683+
684+
/* Try to move an allocated block to cur */
685+
block_t *nxt = NEXT_SBLOCK(cur);
686+
while (OFFSET(nxt) < cur->fnext) {
687+
block_t backup_cur = *cur;
688+
block_t backup_nxt = *nxt;
689+
690+
/* relocate block (skip if it can't be relocated) */
691+
if (!relocate((char *) nxt + ALIGNWORD(sizeof(block_t)), (char *) cur + ALIGNWORD(sizeof(block_t))))
692+
continue;
693+
694+
cur->size = backup_nxt.size;
695+
nxt = NEXT_SBLOCK(cur);
696+
cur->fnext = OFFSET(nxt);
697+
SET_CANARY(cur);
698+
#if 0
699+
cur->id = backup_nxt.id;
700+
#endif
701+
702+
/* */
703+
nxt->fnext = backup_cur.fnext;
704+
nxt->fprev = backup_cur.fprev;
705+
BLOCKAT(nxt->fnext)->fprev = OFFSET(nxt);
706+
BLOCKAT(nxt->fprev)->fnext = OFFSET(nxt);
707+
708+
709+
710+
nxt->prev_size = 0; /* block is alloc'd */
711+
nxt->size = backup_cur.size; /* and fix the size */
712+
NEXT_SBLOCK(nxt)->prev_size = nxt->size; /* adjust size */
713+
SET_CANARY(nxt);
714+
715+
/* replace cur with next in free list */
716+
nxt->fnext = cur->fnext;
717+
nxt->fprev = cur->fprev;
718+
BLOCKAT(nxt->fnext)->fprev = OFFSET(nxt);
719+
BLOCKAT(nxt->fprev)->fnext = OFFSET(nxt);
720+
721+
722+
723+
sma_deallocate(void* shmaddr, size_t offset)
724+
725+
726+
used = NEXT_SBLOCK(used);
683727
}
728+
729+
684730
}
685731

686732
SMA_UNLOCK(sma, i);

apc_sma.h

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ typedef struct _apc_sma_t {
8181
apc_segment_t *segs; /* segments */
8282
} apc_sma_t; /* }}} */
8383

84+
typedef zend_bool (*apc_sma_relocate_f)(void *old, void *new); /* }}} */
85+
8486
/*
8587
* apc_sma_api_init will initialize a shared memory allocator with num segments of the given size
8688
*

0 commit comments

Comments
 (0)