diff --git a/backref.c b/backref.c index 8f41f829..7578e928 100644 --- a/backref.c +++ b/backref.c @@ -22,6 +22,7 @@ #include "backref.h" #include "ulist.h" #include "transaction.h" +#include "internal.h" #define pr_debug(...) do { } while (0) diff --git a/ctree.c b/ctree.c index 04cc476e..1f938d76 100644 --- a/ctree.c +++ b/ctree.c @@ -20,6 +20,7 @@ #include "transaction.h" #include "print-tree.h" #include "repair.h" +#include "internal.h" static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root *root, struct btrfs_path *path, int level); diff --git a/extent_io.c b/extent_io.c index 88e92736..bdaecc0f 100644 --- a/extent_io.c +++ b/extent_io.c @@ -27,6 +27,7 @@ #include "list.h" #include "ctree.h" #include "volumes.h" +#include "internal.h" void extent_io_tree_init(struct extent_io_tree *tree) { diff --git a/file-item.c b/file-item.c index b46d7f10..7a3bbf35 100644 --- a/file-item.c +++ b/file-item.c @@ -25,6 +25,7 @@ #include "transaction.h" #include "print-tree.h" #include "crc32c.h" +#include "internal.h" #define MAX_CSUM_ITEMS(r,size) ((((BTRFS_LEAF_DATA_SIZE(r) - \ sizeof(struct btrfs_item) * 2) / \ diff --git a/free-space-cache.c b/free-space-cache.c index d10a5f51..357d69e7 100644 --- a/free-space-cache.c +++ b/free-space-cache.c @@ -24,6 +24,7 @@ #include "extent_io.h" #include "crc32c.h" #include "bitops.h" +#include "internal.h" /* * Kernel always uses PAGE_CACHE_SIZE for sectorsize, but we don't have diff --git a/inode-map.c b/inode-map.c index 346952b7..9e4dcd3c 100644 --- a/inode-map.c +++ b/inode-map.c @@ -19,6 +19,7 @@ #include "ctree.h" #include "disk-io.h" #include "transaction.h" +#include "internal.h" /* * walks the btree of allocated inodes and find a hole. diff --git a/internal.h b/internal.h new file mode 100644 index 00000000..d5ea9986 --- /dev/null +++ b/internal.h @@ -0,0 +1,42 @@ +/* + * Copyright (C) 2007 Oracle. All rights reserved. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public + * License v2 as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 021110-1307, USA. + */ + +#ifndef __INTERNAL_H__ +#define __INTERNAL_H__ + +/* + * max/min macro + */ +#define min(x,y) ({ \ + typeof(x) _x = (x); \ + typeof(y) _y = (y); \ + (void) (&_x == &_y); \ + _x < _y ? _x : _y; }) + +#define max(x,y) ({ \ + typeof(x) _x = (x); \ + typeof(y) _y = (y); \ + (void) (&_x == &_y); \ + _x > _y ? _x : _y; }) + +#define min_t(type,x,y) \ + ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; }) +#define max_t(type,x,y) \ + ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; }) + +#endif diff --git a/kerncompat.h b/kerncompat.h index 0f207b7f..ee65aa72 100644 --- a/kerncompat.h +++ b/kerncompat.h @@ -240,26 +240,6 @@ static inline long IS_ERR(const void *ptr) return IS_ERR_VALUE((unsigned long)ptr); } -/* - * max/min macro - */ -#define min(x,y) ({ \ - typeof(x) _x = (x); \ - typeof(y) _y = (y); \ - (void) (&_x == &_y); \ - _x < _y ? _x : _y; }) - -#define max(x,y) ({ \ - typeof(x) _x = (x); \ - typeof(y) _y = (y); \ - (void) (&_x == &_y); \ - _x > _y ? _x : _y; }) - -#define min_t(type,x,y) \ - ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; }) -#define max_t(type,x,y) \ - ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; }) - /* * This looks more complex than it should be. But we need to * get the type for the ~ right in round_down (it needs to be diff --git a/utils.h b/utils.h index d53357a2..a4e55bf5 100644 --- a/utils.h +++ b/utils.h @@ -23,6 +23,7 @@ #include "ctree.h" #include #include +#include "internal.h" #define BTRFS_MKFS_SYSTEM_GROUP_SIZE (4 * 1024 * 1024) #define BTRFS_MKFS_SMALL_VOLUME_SIZE (1024 * 1024 * 1024)