Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
build
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
lf
build
Commits
e0af95dc
Commit
e0af95dc
authored
11 years ago
by
Linux Build Service Account
Committed by
Gerrit - the friendly Code Review server
11 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Remove decrease-logger-buffer-sizes.patch"
parents
928eddbb
441a2c95
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
patch/ics/kernel/decrease-logger-buffer-sizes.patch
+0
-28
0 additions, 28 deletions
patch/ics/kernel/decrease-logger-buffer-sizes.patch
with
0 additions
and
28 deletions
patch/ics/kernel/decrease-logger-buffer-sizes.patch
deleted
100644 → 0
+
0
−
28
View file @
928eddbb
commit 1bf49f3a2682696fa4d4834ae026feb50de21053
Author: Surya Chittuluri <suryanar@codeaurora.org>
Date: Tue Jan 31 15:58:15 2012 -0800
decreased the static buffers used for logging (from 1MB to 256KB)
Change-Id: I02ab0e83b2f65bf7bbafe4ac20fdef3456103781
Signed-off-by: Surya Chittuluri <suryanar@codeaurora.org>
diff --git a/drivers/staging/android/logger.c b/drivers/staging/android/logger.c
index fa76ce7..88e3547 100644
--- a/drivers/staging/android/logger.c
+++ b/drivers/staging/android/logger.c
@@ -555,10 +555,10 @@
static struct logger_log VAR = { \
.size = SIZE, \
};
-DEFINE_LOGGER_DEVICE(log_main, LOGGER_LOG_MAIN, 256*1024)
-DEFINE_LOGGER_DEVICE(log_events, LOGGER_LOG_EVENTS, 256*1024)
-DEFINE_LOGGER_DEVICE(log_radio, LOGGER_LOG_RADIO, 256*1024)
-DEFINE_LOGGER_DEVICE(log_system, LOGGER_LOG_SYSTEM, 256*1024)
+DEFINE_LOGGER_DEVICE(log_main, LOGGER_LOG_MAIN, 64*1024)
+DEFINE_LOGGER_DEVICE(log_events, LOGGER_LOG_EVENTS, 64*1024)
+DEFINE_LOGGER_DEVICE(log_radio, LOGGER_LOG_RADIO, 64*1024)
+DEFINE_LOGGER_DEVICE(log_system, LOGGER_LOG_SYSTEM, 64*1024)
static struct logger_log *get_log_from_minor(int minor)
{
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment