~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-security

« back to all changes in this revision

Viewing changes to storage/innobase/buf/buf0lru.c

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-08-27 21:12:36 UTC
  • mfrom: (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140827211236-se41hwfe4xy0hpef
* d/control: Removed Provides: libmysqlclient-dev (Closes: #759309)
* d/control: Removed Provides: libmysqld-dev with same motivation
* Re-introduced tha HPPA build patch as the upstream fix wasn't complete
* Fixed all kFreeBSD build and test suite issues
* Added Italian translation (Closes: #759813)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2080
2080
                        " in the hash table\n",
2081
2081
                        (ulong) bpage->space,
2082
2082
                        (ulong) bpage->offset);
 
2083
#ifdef UNIV_DEBUG
 
2084
                fprintf(stderr,
 
2085
                        "InnoDB: in_page_hash %lu in_zip_hash %lu\n"
 
2086
                        " in_free_list %lu in_flush_list %lu in_LRU_list %lu\n"
 
2087
                        " zip.data %p zip_size %lu page_state %d\n",
 
2088
                        bpage->in_page_hash, bpage->in_zip_hash,
 
2089
                        bpage->in_free_list, bpage->in_flush_list,
 
2090
                        bpage->in_LRU_list, bpage->zip.data,
 
2091
                        buf_page_get_zip_size(bpage),
 
2092
                        buf_page_get_state(bpage));
 
2093
#else
 
2094
                fprintf(stderr,
 
2095
                        "InnoDB: zip.data %p zip_size %lu page_state %d\n",
 
2096
                        bpage->zip.data,
 
2097
                        buf_page_get_zip_size(bpage),
 
2098
                        buf_page_get_state(bpage));
 
2099
#endif
 
2100
 
2083
2101
                if (hashed_bpage) {
2084
2102
                        fprintf(stderr,
2085
2103
                                "InnoDB: In hash table we find block"