Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
aa4aa521
Commit
aa4aa521
authored
Apr 30, 2018
by
Tommaso Sardelli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
profile: change default --stack-storage-size to 16384
parent
718c9282
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
man/man8/profile.8
man/man8/profile.8
+1
-1
tools/profile.py
tools/profile.py
+1
-1
No files found.
man/man8/profile.8
View file @
aa4aa521
...
...
@@ -52,7 +52,7 @@ Show stacks from kernel space only (no user space stacks).
.TP
\-\-stack-storage-size COUNT
The maximum number of unique stack traces that the kernel will count (default
1
0240
). If the sampled count exceeds this, a warning will be printed.
1
6384
). If the sampled count exceeds this, a warning will be printed.
.TP
duration
Duration to trace, in seconds.
...
...
tools/profile.py
View file @
aa4aa521
...
...
@@ -99,7 +99,7 @@ parser.add_argument("-a", "--annotations", action="store_true",
help
=
"add _[k] annotations to kernel frames"
)
parser
.
add_argument
(
"-f"
,
"--folded"
,
action
=
"store_true"
,
help
=
"output folded format, one line per stack (for flame graphs)"
)
parser
.
add_argument
(
"--stack-storage-size"
,
default
=
1
0240
,
parser
.
add_argument
(
"--stack-storage-size"
,
default
=
1
6384
,
type
=
positive_nonzero_int
,
help
=
"the number of unique stack traces that can be stored and "
"displayed (default %(default)s)"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment