Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1992)

Unified Diff: chrome/browser/chromeos/chrome_browser_main_chromeos.cc

Issue 11744024: Add zram field trial (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add logging Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/chrome_browser_main_chromeos.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/chrome_browser_main_chromeos.cc
diff --git a/chrome/browser/chromeos/chrome_browser_main_chromeos.cc b/chrome/browser/chromeos/chrome_browser_main_chromeos.cc
index e8d9f722e6612e0c842e5832d3a88c43211cd7b9..d47e9fcf27a8a197c39dad4bf21fd147f476f69a 100644
--- a/chrome/browser/chromeos/chrome_browser_main_chromeos.cc
+++ b/chrome/browser/chromeos/chrome_browser_main_chromeos.cc
@@ -12,6 +12,7 @@
#include "base/callback.h"
#include "base/chromeos/chromeos_version.h"
#include "base/command_line.h"
+#include "base/file_util.h"
#include "base/lazy_instance.h"
#include "base/linux_util.h"
#include "base/message_loop.h"
@@ -712,6 +713,7 @@ void ChromeBrowserMainPartsChromeos::PostMainMessageLoopRun() {
void ChromeBrowserMainPartsChromeos::SetupPlatformFieldTrials() {
SetupLowMemoryHeadroomFieldTrial();
+ SetupZramFieldTrial();
}
void ChromeBrowserMainPartsChromeos::SetupLowMemoryHeadroomFieldTrial() {
@@ -760,4 +762,33 @@ void ChromeBrowserMainPartsChromeos::SetupLowMemoryHeadroomFieldTrial() {
}
}
+
+void ChromeBrowserMainPartsChromeos::SetupZramFieldTrial() {
+ // The dice for this experiment has been thrown at boot. The selected group
Ilya Sherman 2013/01/08 02:19:04 nit: either "has" -> "have" or "dice" -> "die"
Luigi Semenzato 2013/01/08 18:17:57 Both forms (die and dice) are used for the singula
+ // number is stored in a file.
+ const FilePath kZramGroupPath("/home/chronos/.swap_exp_enrolled");
James Cook 2013/01/08 05:07:43 We frequently run a linux_chromeos build on Ubuntu
Luigi Semenzato 2013/01/08 18:17:57 If the file does not exist, the experiment is not
James Cook 2013/01/08 19:03:44 I'm afraid this might cause NFS to attempt to moun
Luigi Semenzato 2013/01/08 21:28:18 We discussed this offline and decided to leave as
+ std::string zram_group;
+ // If the file does not exist, the experiment has not started. If the file
+ // exists but contains an "x", the user has a non-standard swap size and has
+ // been opted out.
+ if (!file_util::ReadFileToString(kZramGroupPath, &zram_group) ||
James Cook 2013/01/08 05:07:43 We should run this in a Debug build to make sure w
Luigi Semenzato 2013/01/08 18:17:57 OK, thanks. I don't even know if the file thread
James Cook 2013/01/08 19:03:44 If the file thread isn't created yet, this should
Luigi Semenzato 2013/01/08 21:28:18 James tested this and no assertion is produced.
+ StartsWithASCII(zram_group, "x", true)) {
+ return;
+ }
+ const base::FieldTrial::Probability kDivisor = 1; // on/off only
+ scoped_refptr<base::FieldTrial> trial =
+ base::FieldTrialList::FactoryGetFieldTrial(
+ "ZRAM", kDivisor, "default", 2013, 12, 31, NULL);
+ // Assign probability of 1 to the group Chrome OS has picked. Assign 0 to
+ // all other choices.
+ const char *groups[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8" };
Ilya Sherman 2013/01/08 02:19:04 nit: "const char* const kGroups[] = ..."
Ilya Sherman 2013/01/08 02:19:04 Is 9 intentionally omitted? What do each of these
Luigi Semenzato 2013/01/08 18:17:57 OK
Luigi Semenzato 2013/01/08 18:17:57 Yes, there are only 9 groups (0-8). Should the gr
Ilya Sherman 2013/01/08 20:16:16 It's always nice when names are self-documenting.
Luigi Semenzato 2013/01/08 21:28:18 OK. I was about to change the names, but then asv
+ for (unsigned int i = 0; i < sizeof(groups) / sizeof(groups[0]); i++) {
Ilya Sherman 2013/01/08 02:19:04 nit: Please use the arraysize macro here.
Ilya Sherman 2013/01/08 02:19:04 nit: "unsigned int" -> "size_t"
Ilya Sherman 2013/01/08 02:19:04 nit: "i++" -> "++i"
Luigi Semenzato 2013/01/08 18:17:57 OK
Luigi Semenzato 2013/01/08 18:17:57 Are you sure? A size divided by a size is a dimen
Luigi Semenzato 2013/01/08 18:17:57 OK
Ilya Sherman 2013/01/08 20:16:16 According to [ http://dev.chromium.org/developers/
Luigi Semenzato 2013/01/08 21:28:18 Thank you for setting me straight on this.
+ bool match = StartsWithASCII(zram_group, groups[i], true);
Ilya Sherman 2013/01/08 02:19:04 Why are you checking for a prefix, rather than dir
Luigi Semenzato 2013/01/08 18:17:57 Because I don't want to have to worry whether the
Ilya Sherman 2013/01/08 20:16:16 IMO it would be better to trim off any whitespace,
+ (void) trial->AppendGroup(groups[i], match ? 1 : 0);
Ilya Sherman 2013/01/08 02:19:04 nit: Remove the "(void)"
Luigi Semenzato 2013/01/08 18:17:57 OK. I thought it may help to indicate I am aware
James Cook 2013/01/08 19:03:44 I think Chrome-style is to leave it out.
+ if (match) {
+ LOG(WARNING) << "zram field trial: group " << groups[i];
Ilya Sherman 2013/01/08 02:19:04 nit: Can this be a DVLOG(1)?
James Cook 2013/01/08 05:07:43 Actually, I'd be OK with leaving this in as a warn
Luigi Semenzato 2013/01/08 18:17:57 Yes, it's only one line and I would prefer to alwa
Ilya Sherman 2013/01/08 20:16:16 FWIW, the list of running field trials is also ava
Luigi Semenzato 2013/01/08 21:28:18 Good to know, thanks, but if you don't mind I'd le
+ }
Ilya Sherman 2013/01/08 02:19:04 nit: No need for curly braces since this is a 1-li
Luigi Semenzato 2013/01/08 18:17:57 OK
+ }
+}
+
} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/chrome_browser_main_chromeos.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698