mf_iocache.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:18k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*
  18.   Cashing of files with only does (sequential) read or writes of fixed-
  19.   length records. A read isn't allowed to go over file-length. A read is ok
  20.   if it ends at file-length and next read can try to read after file-length
  21.   (and get a EOF-error).
  22.   Possibly use of asyncronic io.
  23.   macros for read and writes for faster io.
  24.   Used instead of FILE when reading or writing whole files.
  25.   This will make mf_rec_cache obsolete.
  26.   One can change info->pos_in_file to a higher value to skip bytes in file if
  27.   also info->rc_pos is set to info->rc_end.
  28.   If called through open_cached_file(), then the temporary file will
  29.   only be created if a write exeeds the file buffer or if one calls
  30.   flush_io_cache().  
  31. */
  32. #define MAP_TO_USE_RAID
  33. #include "mysys_priv.h"
  34. #include <m_string.h>
  35. #ifdef HAVE_AIOWAIT
  36. #include "mysys_err.h"
  37. #include <errno.h>
  38. static void my_aiowait(my_aio_result *result);
  39. #endif
  40. /*
  41. ** if cachesize == 0 then use default cachesize (from s-file)
  42. ** if file == -1 then real_open_cached_file() will be called.
  43. ** returns 0 if ok
  44. */
  45. int init_io_cache(IO_CACHE *info, File file, uint cachesize,
  46.   enum cache_type type, my_off_t seek_offset,
  47.   pbool use_async_io, myf cache_myflags)
  48. {
  49.   uint min_cache;
  50.   DBUG_ENTER("init_io_cache");
  51.   DBUG_PRINT("enter",("type: %d  pos: %ld",(int) type, (ulong) seek_offset));
  52.   info->file=file;
  53.   if (!cachesize)
  54.     if (! (cachesize= my_default_record_cache_size))
  55.       DBUG_RETURN(1); /* No cache requested */
  56.   min_cache=use_async_io ? IO_SIZE*4 : IO_SIZE*2;
  57.   if (type == READ_CACHE)
  58.   { /* Assume file isn't growing */
  59.     if (cache_myflags & MY_DONT_CHECK_FILESIZE)
  60.     {
  61.       cache_myflags &= ~MY_DONT_CHECK_FILESIZE;
  62.     }
  63.     else
  64.     {
  65.       my_off_t file_pos,end_of_file;
  66.       if ((file_pos=my_tell(file,MYF(0)) == MY_FILEPOS_ERROR))
  67. DBUG_RETURN(1);
  68.       end_of_file=my_seek(file,0L,MY_SEEK_END,MYF(0));
  69.       if (end_of_file < seek_offset)
  70. end_of_file=seek_offset;
  71.       VOID(my_seek(file,file_pos,MY_SEEK_SET,MYF(0)));
  72.       if ((my_off_t) cachesize > end_of_file-seek_offset+IO_SIZE*2-1)
  73.       {
  74. cachesize=(uint) (end_of_file-seek_offset)+IO_SIZE*2-1;
  75. use_async_io=0; /* No nead to use async */
  76.       }
  77.     }
  78.   }
  79.   for (;;)
  80.   {
  81.     cachesize=(uint) ((ulong) (cachesize + min_cache-1) &
  82.       (ulong) ~(min_cache-1));
  83.     if (cachesize < min_cache)
  84.       cachesize = min_cache;
  85.     if ((info->buffer=
  86.  (byte*) my_malloc(cachesize,
  87.    MYF((cache_myflags & ~ MY_WME) |
  88.        (cachesize == min_cache ? MY_WME : 0)))) != 0)
  89.       break; /* Enough memory found */
  90.     if (cachesize == min_cache)
  91.       DBUG_RETURN(2); /* Can't alloc cache */
  92.     cachesize= (uint) ((long) cachesize*3/4); /* Try with less memory */
  93.   }
  94.   info->pos_in_file=seek_offset;
  95.   info->read_length=info->buffer_length=cachesize;
  96.   info->seek_not_done= test(file >= 0); /* Seek not done */
  97.   info->myflags=cache_myflags & ~(MY_NABP | MY_FNABP);
  98.   info->rc_request_pos=info->rc_pos=info->buffer;
  99.   if (type == READ_CACHE)
  100.   {
  101.     info->rc_end=info->buffer; /* Nothing in cache */
  102.   }
  103.   else /* type == WRITE_CACHE */
  104.   {
  105.     info->rc_end=info->buffer+info->buffer_length- (seek_offset & (IO_SIZE-1));
  106.   }
  107.   info->end_of_file=MY_FILEPOS_ERROR; /* May be changed by user */
  108.   info->type=type;
  109.   info->error=0;
  110.   info->read_function=_my_b_read;
  111. #ifdef HAVE_AIOWAIT
  112.   if (use_async_io && ! my_disable_async_io)
  113.   {
  114.     DBUG_PRINT("info",("Using async io"));
  115.     info->read_length/=2;
  116.     info->read_function=_my_b_async_read;
  117.   }
  118.   info->inited=info->aio_result.pending=0;
  119. #endif
  120.   DBUG_RETURN(0);
  121. } /* init_io_cache */
  122. /* Wait until current request is ready */
  123. #ifdef HAVE_AIOWAIT
  124. static void my_aiowait(my_aio_result *result)
  125. {
  126.   if (result->pending)
  127.   {
  128.     struct aio_result_t *tmp;
  129.     for (;;)
  130.     {
  131.       if ((int) (tmp=aiowait((struct timeval *) 0)) == -1)
  132.       {
  133. if (errno == EINTR)
  134.   continue;
  135. DBUG_PRINT("error",("No aio request, error: %d",errno));
  136. result->pending=0; /* Assume everythings is ok */
  137. break;
  138.       }
  139.       ((my_aio_result*) tmp)->pending=0;
  140.       if ((my_aio_result*) tmp == result)
  141. break;
  142.     }
  143.   }
  144.   return;
  145. }
  146. #endif
  147. /* Use this to reset cache to start or other type */
  148. /* Some simple optimizing is done when reinit in current buffer */
  149. my_bool reinit_io_cache(IO_CACHE *info, enum cache_type type,
  150. my_off_t seek_offset,
  151. pbool use_async_io __attribute__((unused)),
  152. pbool clear_cache)
  153. {
  154.   DBUG_ENTER("reinit_io_cache");
  155.   info->seek_not_done= test(info->file >= 0); /* Seek not done */
  156.   if (! clear_cache &&
  157.       seek_offset >= info->pos_in_file &&
  158.       seek_offset <= info->pos_in_file +
  159.       (uint) (info->rc_end - info->rc_request_pos))
  160.   { /* use current buffer */
  161.     if (info->type == WRITE_CACHE && type == READ_CACHE)
  162.     {
  163.       info->rc_end=info->rc_pos;
  164.       info->end_of_file=my_b_tell(info);
  165.     }
  166.     else if (info->type == READ_CACHE && type == WRITE_CACHE)
  167.       info->rc_end=info->buffer+info->buffer_length;
  168.     info->rc_pos=info->rc_request_pos+(seek_offset-info->pos_in_file);
  169. #ifdef HAVE_AIOWAIT
  170.     my_aiowait(&info->aio_result); /* Wait for outstanding req */
  171. #endif
  172.   }
  173.   else
  174.   {
  175.     if (info->type == WRITE_CACHE && type == READ_CACHE)
  176.       info->end_of_file=my_b_tell(info);
  177.     if (flush_io_cache(info))
  178.       DBUG_RETURN(1);
  179.     info->pos_in_file=seek_offset;
  180.     info->rc_request_pos=info->rc_pos=info->buffer;
  181.     if (type == READ_CACHE)
  182.     {
  183.       info->rc_end=info->buffer; /* Nothing in cache */
  184.     }
  185.     else
  186.     {
  187.       info->rc_end=info->buffer+info->buffer_length-
  188. (seek_offset & (IO_SIZE-1));
  189.       info->end_of_file=MY_FILEPOS_ERROR; /* May be changed by user */
  190.     }
  191.   }
  192.   info->type=type;
  193.   info->error=0;
  194.   info->read_function=_my_b_read;
  195. #ifdef HAVE_AIOWAIT
  196.   if (use_async_io && ! my_disable_async_io &&
  197.       ((ulong) info->buffer_length <
  198.        (ulong) (info->end_of_file - seek_offset)))
  199.   {
  200.     info->read_length=info->buffer_length/2;
  201.     info->read_function=_my_b_async_read;
  202.   }
  203.   info->inited=0;
  204. #endif
  205.   DBUG_RETURN(0);
  206. } /* init_io_cache */
  207. /* Read buffered. Returns 1 if can't read requested characters */
  208. /* Returns 0 if record read */
  209. int _my_b_read(register IO_CACHE *info, byte *Buffer, uint Count)
  210. {
  211.   uint length,diff_length,left_length;
  212.   my_off_t max_length, pos_in_file;
  213.   memcpy(Buffer,info->rc_pos,
  214.  (size_t) (left_length=(uint) (info->rc_end-info->rc_pos)));
  215.   Buffer+=left_length;
  216.   Count-=left_length;
  217.   pos_in_file=info->pos_in_file+(uint) (info->rc_end - info->buffer);
  218.   if (info->seek_not_done)
  219.   { /* File touched, do seek */
  220.     VOID(my_seek(info->file,pos_in_file,MY_SEEK_SET,MYF(0)));
  221.     info->seek_not_done=0;
  222.   }
  223.   diff_length=(uint) (pos_in_file & (IO_SIZE-1));
  224.   if (Count >= (uint) (IO_SIZE+(IO_SIZE-diff_length)))
  225.   { /* Fill first intern buffer */
  226.     uint read_length;
  227.     if (info->end_of_file == pos_in_file)
  228.     { /* End of file */
  229.       info->error=(int) left_length;
  230.       return 1;
  231.     }
  232.     length=(Count & (uint) ~(IO_SIZE-1))-diff_length;
  233.     if ((read_length=my_read(info->file,Buffer,(uint) length,info->myflags))
  234. != (uint) length)
  235.     {
  236.       info->error= read_length == (uint) -1 ? -1 :
  237. (int) (read_length+left_length);
  238.       return 1;
  239.     }
  240.     Count-=length;
  241.     Buffer+=length;
  242.     pos_in_file+=length;
  243.     left_length+=length;
  244.     diff_length=0;
  245.   }
  246.   max_length=info->end_of_file - pos_in_file;
  247.   if (max_length > info->read_length-diff_length)
  248.     max_length=info->read_length-diff_length;
  249.   if (!max_length)
  250.   {
  251.     if (Count)
  252.     {
  253.       info->error= left_length; /* We only got this many char */
  254.       return 1;
  255.     }
  256.     length=0; /* Didn't read any chars */
  257.   }
  258.   else if ((length=my_read(info->file,info->buffer,(uint) max_length,
  259.    info->myflags)) < Count ||
  260.    length == (uint) -1)
  261.   {
  262.     if (length != (uint) -1)
  263.       memcpy(Buffer,info->buffer,(size_t) length);
  264.     info->error= length == (uint) -1 ? -1 : (int) (length+left_length);
  265.     return 1;
  266.   }
  267.   info->rc_pos=info->buffer+Count;
  268.   info->rc_end=info->buffer+length;
  269.   info->pos_in_file=pos_in_file;
  270.   memcpy(Buffer,info->buffer,(size_t) Count);
  271.   return 0;
  272. }
  273. #ifdef HAVE_AIOWAIT
  274. int _my_b_async_read(register IO_CACHE *info, byte *Buffer, uint Count)
  275. {
  276.   uint length,read_length,diff_length,left_length,use_length,org_Count;
  277.   my_off_t max_length;
  278.   my_off_t next_pos_in_file;
  279.   byte *read_buffer;
  280.   memcpy(Buffer,info->rc_pos,
  281.  (size_t) (left_length=(uint) (info->rc_end-info->rc_pos)));
  282.   Buffer+=left_length;
  283.   org_Count=Count;
  284.   Count-=left_length;
  285.   if (info->inited)
  286.   { /* wait for read block */
  287.     info->inited=0; /* No more block to read */
  288.     my_aiowait(&info->aio_result); /* Wait for outstanding req */
  289.     if (info->aio_result.result.aio_errno)
  290.     {
  291.       if (info->myflags & MY_WME)
  292. my_error(EE_READ, MYF(ME_BELL+ME_WAITTANG),
  293.  my_filename(info->file),
  294.  info->aio_result.result.aio_errno);
  295.       my_errno=info->aio_result.result.aio_errno;
  296.       info->error= -1;
  297.       return(1);
  298.     }
  299.     if (! (read_length = (uint) info->aio_result.result.aio_return) ||
  300. read_length == (uint) -1)
  301.     {
  302.       my_errno=0; /* For testing */
  303.       info->error= (read_length == (uint) -1 ? -1 :
  304.     (int) (read_length+left_length));
  305.       return(1);
  306.     }
  307.     info->pos_in_file+=(uint) (info->rc_end - info->rc_request_pos);
  308.     if (info->rc_request_pos != info->buffer)
  309.       info->rc_request_pos=info->buffer;
  310.     else
  311.       info->rc_request_pos=info->buffer+info->read_length;
  312.     info->rc_pos=info->rc_request_pos;
  313.     next_pos_in_file=info->aio_read_pos+read_length;
  314. /* Check if pos_in_file is changed
  315.    (_ni_read_cache may have skipped some bytes) */
  316.     if (info->aio_read_pos < info->pos_in_file)
  317.     { /* Fix if skipped bytes */
  318.       if (info->aio_read_pos + read_length < info->pos_in_file)
  319.       {
  320. read_length=0; /* Skipp block */
  321. next_pos_in_file=info->pos_in_file;
  322.       }
  323.       else
  324.       {
  325. my_off_t offset= (info->pos_in_file - info->aio_read_pos);
  326. info->pos_in_file=info->aio_read_pos; /* Whe are here */
  327. info->rc_pos=info->rc_request_pos+offset;
  328. read_length-=offset; /* Bytes left from rc_pos */
  329.       }
  330.     }
  331. #ifndef DBUG_OFF
  332.     if (info->aio_read_pos > info->pos_in_file)
  333.     {
  334.       my_errno=EINVAL;
  335.       return(info->read_length= -1);
  336.     }
  337. #endif
  338. /* Copy found bytes to buffer */
  339.     length=min(Count,read_length);
  340.     memcpy(Buffer,info->rc_pos,(size_t) length);
  341.     Buffer+=length;
  342.     Count-=length;
  343.     left_length+=length;
  344.     info->rc_end=info->rc_pos+read_length;
  345.     info->rc_pos+=length;
  346.   }
  347.   else
  348.     next_pos_in_file=(info->pos_in_file+ (uint)
  349.       (info->rc_end - info->rc_request_pos));
  350. /* If reading large blocks, or first read or read with skipp */
  351.   if (Count)
  352.   {
  353.     if (next_pos_in_file == info->end_of_file)
  354.     {
  355.       info->error=(int) (read_length+left_length);
  356.       return 1;
  357.     }
  358.     VOID(my_seek(info->file,next_pos_in_file,MY_SEEK_SET,MYF(0)));
  359.     read_length=IO_SIZE*2- (uint) (next_pos_in_file & (IO_SIZE-1));
  360.     if (Count < read_length)
  361.     { /* Small block, read to cache */
  362.       if ((read_length=my_read(info->file,info->rc_request_pos,
  363.        read_length, info->myflags)) == (uint) -1)
  364. return info->error= -1;
  365.       use_length=min(Count,read_length);
  366.       memcpy(Buffer,info->rc_request_pos,(size_t) use_length);
  367.       info->rc_pos=info->rc_request_pos+Count;
  368.       info->rc_end=info->rc_request_pos+read_length;
  369.       info->pos_in_file=next_pos_in_file; /* Start of block in cache */
  370.       next_pos_in_file+=read_length;
  371.       if (Count != use_length)
  372.       { /* Didn't find hole block */
  373. if (info->myflags & (MY_WME | MY_FAE | MY_FNABP) && Count != org_Count)
  374.   my_error(EE_EOFERR, MYF(ME_BELL+ME_WAITTANG),
  375.    my_filename(info->file),my_errno);
  376. info->error=(int) (read_length+left_length);
  377. return 1;
  378.       }
  379.     }
  380.     else
  381.     { /* Big block, don't cache it */
  382.       if ((read_length=my_read(info->file,Buffer,(uint) Count,info->myflags))
  383.   != Count)
  384.       {
  385. info->error= read_length == (uint)  -1 ? -1 : read_length+left_length;
  386. return 1;
  387.       }
  388.       info->rc_pos=info->rc_end=info->rc_request_pos;
  389.       info->pos_in_file=(next_pos_in_file+=Count);
  390.     }
  391.   }
  392. /* Read next block with asyncronic io */
  393.   max_length=info->end_of_file - next_pos_in_file;
  394.   diff_length=(next_pos_in_file & (IO_SIZE-1));
  395.   if (max_length > (my_off_t) info->read_length - diff_length)
  396.     max_length= (my_off_t) info->read_length - diff_length;
  397.   if (info->rc_request_pos != info->buffer)
  398.     read_buffer=info->buffer;
  399.   else
  400.     read_buffer=info->buffer+info->read_length;
  401.   info->aio_read_pos=next_pos_in_file;
  402.   if (max_length)
  403.   {
  404.     info->aio_result.result.aio_errno=AIO_INPROGRESS; /* Marker for test */
  405.     DBUG_PRINT("aioread",("filepos: %ld  length: %ld",
  406.   (ulong) next_pos_in_file,(ulong) max_length));
  407.     if (aioread(info->file,read_buffer,(int) max_length,
  408. (my_off_t) next_pos_in_file,MY_SEEK_SET,
  409. &info->aio_result.result))
  410.     { /* Skipp async io */
  411.       my_errno=errno;
  412.       DBUG_PRINT("error",("got error: %d, aio_result: %d from aioread, async skipped",
  413.   errno, info->aio_result.result.aio_errno));
  414.       if (info->rc_request_pos != info->buffer)
  415.       {
  416. bmove(info->buffer,info->rc_request_pos,
  417.       (uint) (info->rc_end - info->rc_pos));
  418. info->rc_request_pos=info->buffer;
  419. info->rc_pos-=info->read_length;
  420. info->rc_end-=info->read_length;
  421.       }
  422.       info->read_length=info->buffer_length; /* Use hole buffer */
  423.       info->read_function=_my_b_read; /* Use normal IO_READ next */
  424.     }
  425.     else
  426.       info->inited=info->aio_result.pending=1;
  427.   }
  428.   return 0; /* Block read, async in use */
  429. } /* _my_b_async_read */
  430. #endif
  431. /* Read one byte when buffer is empty */
  432. int _my_b_get(IO_CACHE *info)
  433. {
  434.   byte buff;
  435.   if ((*(info)->read_function)(info,&buff,1))
  436.     return my_b_EOF;
  437.   return (int) (uchar) buff;
  438. }
  439. /* Returns != 0 if error on write */
  440. int _my_b_write(register IO_CACHE *info, const byte *Buffer, uint Count)
  441. {
  442.   uint rest_length,length;
  443.   rest_length=(uint) (info->rc_end - info->rc_pos);
  444.   memcpy(info->rc_pos,Buffer,(size_t) rest_length);
  445.   Buffer+=rest_length;
  446.   Count-=rest_length;
  447.   info->rc_pos+=rest_length;
  448.   if (flush_io_cache(info))
  449.     return 1;
  450.   if (Count >= IO_SIZE)
  451.   { /* Fill first intern buffer */
  452.     length=Count & (uint) ~(IO_SIZE-1);
  453.     if (info->seek_not_done)
  454.     { /* File touched, do seek */
  455.       VOID(my_seek(info->file,info->pos_in_file,MY_SEEK_SET,MYF(0)));
  456.       info->seek_not_done=0;
  457.     }
  458.     if (my_write(info->file,Buffer,(uint) length,info->myflags | MY_NABP))
  459.       return info->error= -1;
  460.     Count-=length;
  461.     Buffer+=length;
  462.     info->pos_in_file+=length;
  463.   }
  464.   memcpy(info->rc_pos,Buffer,(size_t) Count);
  465.   info->rc_pos+=Count;
  466.   return 0;
  467. }
  468. /*
  469.   Write a block to disk where part of the data may be inside the record
  470.   buffer.  As all write calls to the data goes through the cache,
  471.   we will never get a seek over the end of the buffer
  472. */
  473. int my_block_write(register IO_CACHE *info, const byte *Buffer, uint Count,
  474.    my_off_t pos)
  475. {
  476.   uint length;
  477.   int error=0;
  478.   if (pos < info->pos_in_file)
  479.   {
  480.     /* Of no overlap, write everything without buffering */
  481.     if (pos + Count <= info->pos_in_file)
  482.       return my_pwrite(info->file, Buffer, Count, pos,
  483.        info->myflags | MY_NABP);
  484.     /* Write the part of the block that is before buffer */
  485.     length= (uint) (info->pos_in_file - pos);
  486.     if (my_pwrite(info->file, Buffer, length, pos, info->myflags | MY_NABP))
  487.       info->error=error=-1;
  488.     Buffer+=length;
  489.     pos+=  length;
  490.     Count-= length;
  491.   }
  492.   /* Check if we want to write inside the used part of the buffer.*/
  493.   length= (uint) (info->rc_end - info->buffer);
  494.   if (pos < info->pos_in_file + length)
  495.   {
  496.     uint offset= (uint) (pos - info->pos_in_file);
  497.     length-=offset;
  498.     if (length > Count)
  499.       length=Count;
  500.     memcpy(info->buffer+offset, Buffer, length);
  501.     Buffer+=length;
  502.     Count-= length;
  503.     /* Fix length of buffer if the new data was larger */
  504.     if (info->buffer+length > info->rc_pos)
  505.       info->rc_pos=info->buffer+length;
  506.     if (!Count)
  507.       return (error);
  508.   }
  509.   /* Write at the end of the current buffer; This is the normal case */
  510.   if (_my_b_write(info, Buffer, Count))
  511.     error= -1;
  512.   return error;
  513. }
  514. /* Flush write cache */
  515. int flush_io_cache(IO_CACHE *info)
  516. {
  517.   uint length;
  518.   DBUG_ENTER("flush_io_cache");
  519.   if (info->type == WRITE_CACHE)
  520.   {
  521.     if (info->file == -1)
  522.     {
  523.       if (real_open_cached_file(info))
  524. DBUG_RETURN((info->error= -1));
  525.     }
  526.     if (info->rc_pos != info->buffer)
  527.     {
  528.       length=(uint) (info->rc_pos - info->buffer);
  529.       if (info->seek_not_done)
  530.       { /* File touched, do seek */
  531. if (my_seek(info->file,info->pos_in_file,MY_SEEK_SET,MYF(0)) ==
  532.     MY_FILEPOS_ERROR)
  533.   DBUG_RETURN((info->error= -1));
  534. info->seek_not_done=0;
  535.       }
  536.       info->rc_pos=info->buffer;
  537.       info->pos_in_file+=length;
  538.       info->rc_end=(info->buffer+info->buffer_length-
  539.     (info->pos_in_file & (IO_SIZE-1)));
  540.       if (my_write(info->file,info->buffer,length,info->myflags | MY_NABP))
  541. DBUG_RETURN((info->error= -1));
  542.       DBUG_RETURN(0);
  543.     }
  544.   }
  545. #ifdef HAVE_AIOWAIT
  546.   else
  547.   {
  548.     my_aiowait(&info->aio_result); /* Wait for outstanding req */
  549.     info->inited=0;
  550.   }
  551. #endif
  552.   DBUG_RETURN(0);
  553. }
  554. int end_io_cache(IO_CACHE *info)
  555. {
  556.   int error=0;
  557.   DBUG_ENTER("end_io_cache");
  558.   if (info->buffer)
  559.   {
  560.     if (info->file != -1) /* File doesn't exist */
  561.       error=flush_io_cache(info);
  562.     my_free((gptr) info->buffer,MYF(MY_WME));
  563.     info->buffer=info->rc_pos=(byte*) 0;
  564.   }
  565.   DBUG_RETURN(error);
  566. } /* end_io_cache */