48
int mi_assign_to_key_cache(MI_INFO *info, KEY_CACHE *key_cache)
48
int mi_assign_to_key_cache(MI_INFO *, KEY_CACHE *)
51
MYISAM_SHARE* share= info->s;
54
Skip operation if we didn't change key cache. This can happen if we
55
call this for all open instances of the same table
57
if (share->key_cache == key_cache)
61
First flush all blocks for the table in the old key cache.
62
This is to ensure that the disk is consistent with the data pages
63
in memory (which may not be the case if the table uses delayed_key_write)
65
Note that some other read thread may still fill in the key cache with
66
new blocks during this call and after, but this doesn't matter as
67
all threads will start using the new key cache for their next call to
68
myisam library and we know that there will not be any changed blocks
72
if (flush_key_blocks(share->key_cache, share->kfile, FLUSH_RELEASE))
75
mi_print_error(info->s, HA_ERR_CRASHED);
76
mi_mark_crashed(info); /* Mark that table must be checked */
80
Flush the new key cache for this file. This is needed to ensure
81
that there is no old blocks (with outdated data) left in the new key
82
cache from an earlier assign_to_keycache operation
84
(This can never fail as there is never any not written data in the
87
(void) flush_key_blocks(key_cache, share->kfile, FLUSH_RELEASE);
90
ensure that setting the key cache and changing the multi_key_cache
93
pthread_mutex_lock(&share->intern_lock);
95
Tell all threads to use the new key cache
96
This should be seen at the lastes for the next call to an myisam function.
98
share->key_cache= key_cache;
100
/* store the key cache in the global hash structure for future opens */
101
if (multi_key_cache_set((unsigned char*) share->unique_file_name,
102
share->unique_name_length,
105
pthread_mutex_unlock(&share->intern_lock);
131
void mi_change_key_cache(KEY_CACHE *old_key_cache,
132
KEY_CACHE *new_key_cache)
75
void mi_change_key_cache(KEY_CACHE *, KEY_CACHE *)
135
Lock list to ensure that no one can close the table while we manipulate it
137
pthread_mutex_lock(&THR_LOCK_myisam);
138
list<MI_INFO *>::iterator it= myisam_open_list.begin();
139
while (it != myisam_open_list.end())
142
MYISAM_SHARE *share= info->s;
143
if (share->key_cache == old_key_cache)
144
mi_assign_to_key_cache(info, new_key_cache);
149
We have to do the following call while we have the lock on the
150
MyISAM list structure to ensure that another thread is not trying to
151
open a new table that will be associted with the old key cache
153
multi_key_cache_change(old_key_cache, new_key_cache);
154
pthread_mutex_unlock(&THR_LOCK_myisam);