]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/mntent_cache.h
update version
[bacula/bacula] / bacula / src / lib / mntent_cache.h
index 876cf695238549d5866e527a2adaff895e1fb285..36bd5243e04f444909761799c3bc96b2c2c925b1 100644 (file)
@@ -6,7 +6,7 @@
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
    This program is Free Software; you can redistribute it and/or
-   modify it under the terms of version two of the GNU General Public
+   modify it under the terms of version three of the GNU Affero General Public
    License as published by the Free Software Foundation and included
    in the file LICENSE.
 
@@ -15,7 +15,7 @@
    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
+   You should have received a copy of the GNU Affero General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 #ifndef _MNTENT_CACHE_H
 #define _MNTENT_CACHE_H 1
 
-#define NR_MNTENT_CACHE_ENTRIES 32
+/*
+ * Initial size of number of hash entries we expect in the cache.
+ * If more are needed the hash table will grow as needed.
+ */
+#define NR_MNTENT_CACHE_ENTRIES                256
+
+/*
+ * Number of pages to allocate for the big_buffer used by htable.
+ */
+#define NR_MNTENT_HTABLE_PAGES         32
 
 struct mntent_cache_entry_t {
+   hlink link;
    uint32_t dev;
    char *special;
    char *mountpoint;
    char *fstype;
    char *mntopts;
-   struct mntent_cache_entry_t *next;
 };
 
 mntent_cache_entry_t *find_mntent_mapping(uint32_t dev);