~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/innobase/include/fsp0fsp.ic

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-03-18 12:12:31 UTC
  • Revision ID: james.westby@ubuntu.com-20100318121231-k6g1xe6cshbwa0f8
Tags: upstream-2010.03.1347
ImportĀ upstreamĀ versionĀ 2010.03.1347

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 
 
3
Copyright (c) 1995, 2009, Innobase Oy. All Rights Reserved.
 
4
 
 
5
This program is free software; you can redistribute it and/or modify it under
 
6
the terms of the GNU General Public License as published by the Free Software
 
7
Foundation; version 2 of the License.
 
8
 
 
9
This program is distributed in the hope that it will be useful, but WITHOUT
 
10
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
11
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
 
12
 
 
13
You should have received a copy of the GNU General Public License along with
 
14
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
 
15
Place, Suite 330, Boston, MA 02111-1307 USA
 
16
 
 
17
*****************************************************************************/
 
18
 
 
19
/**************************************************//**
 
20
@file include/fsp0fsp.ic
 
21
File space management
 
22
 
 
23
Created 12/18/1995 Heikki Tuuri
 
24
*******************************************************/
 
25
 
 
26
/***********************************************************************//**
 
27
Checks if a page address is an extent descriptor page address.
 
28
@return TRUE if a descriptor page */
 
29
UNIV_INLINE
 
30
ibool
 
31
fsp_descr_page(
 
32
/*===========*/
 
33
        ulint   zip_size,/*!< in: compressed page size in bytes;
 
34
                        0 for uncompressed pages */
 
35
        ulint   page_no)/*!< in: page number */
 
36
{
 
37
        ut_ad(ut_is_2pow(zip_size));
 
38
 
 
39
        if (!zip_size) {
 
40
                return(UNIV_UNLIKELY((page_no & (UNIV_PAGE_SIZE - 1))
 
41
                                     == FSP_XDES_OFFSET));
 
42
        }
 
43
 
 
44
        return(UNIV_UNLIKELY((page_no & (zip_size - 1)) == FSP_XDES_OFFSET));
 
45
}