]> git.saurik.com Git - apt-legacy.git/commitdiff
This cache limit patch was a year old :/.
authorJay Freeman (saurik) <saurik@saurik.com>
Thu, 2 Jul 2015 02:45:50 +0000 (02:45 +0000)
committerJay Freeman (saurik) <saurik@saurik.com>
Thu, 2 Jul 2015 02:45:50 +0000 (02:45 +0000)
A cache-limit.diff

git-svn-id: http://svn.telesphoreo.org/trunk@804 514c082c-b64e-11dc-b46d-3d985efe055d

apt-pkg/pkgcachegen.cc
apt-pkg/pkgcachegen.cc.orig

index e5c572fbf22189b991fac7cabe58ad02a3f429a3..8606f30bb121c2ce8362804f035be0a74a4488ba 100644 (file)
@@ -916,7 +916,7 @@ bool pkgMakeStatusCache(pkgSourceList &List,OpProgress &Progress,
                        MMap **OutMap,bool AllowMem)
 {
    bool const Debug = _config->FindB("Debug::pkgCacheGen", false);
-   unsigned long const MapSize = _config->FindI("APT::Cache-Limit",24*1024*1024);
+   unsigned long const MapSize = _config->FindI("APT::Cache-Limit",128*1024*1024);
    
    vector<pkgIndexFile *> Files;
    for (vector<metaIndex *>::const_iterator i = List.begin();
@@ -1081,7 +1081,7 @@ bool pkgMakeStatusCache(pkgSourceList &List,OpProgress &Progress,
 /* */
 bool pkgMakeOnlyStatusCache(OpProgress &Progress,DynamicMMap **OutMap)
 {
-   unsigned long MapSize = _config->FindI("APT::Cache-Limit",20*1024*1024);
+   unsigned long MapSize = _config->FindI("APT::Cache-Limit",128*1024*1024);
    vector<pkgIndexFile *> Files;
    unsigned long EndOfSource = Files.size();
    if (_system->AddStatusFiles(Files) == false)
index 3eeb18cae69c2ee85ea1242a7481f1d7a917876b..1d1b1b33b9cf9eea393fe8319cc59dbdb9f3c792 100644 (file)
@@ -827,7 +827,7 @@ bool pkgMakeStatusCache(pkgSourceList &List,OpProgress &Progress,
                        MMap **OutMap,bool AllowMem)
 {
    bool const Debug = _config->FindB("Debug::pkgCacheGen", false);
-   unsigned long const MapSize = _config->FindI("APT::Cache-Limit",24*1024*1024);
+   unsigned long const MapSize = _config->FindI("APT::Cache-Limit",128*1024*1024);
    
    vector<pkgIndexFile *> Files;
    for (vector<metaIndex *>::const_iterator i = List.begin();
@@ -992,7 +992,7 @@ bool pkgMakeStatusCache(pkgSourceList &List,OpProgress &Progress,
 /* */
 bool pkgMakeOnlyStatusCache(OpProgress &Progress,DynamicMMap **OutMap)
 {
-   unsigned long MapSize = _config->FindI("APT::Cache-Limit",20*1024*1024);
+   unsigned long MapSize = _config->FindI("APT::Cache-Limit",128*1024*1024);
    vector<pkgIndexFile *> Files;
    unsigned long EndOfSource = Files.size();
    if (_system->AddStatusFiles(Files) == false)