|
1 # trace.cif |
|
2 # |
|
3 # Copyright (c) 2010 Accenture. All rights reserved. |
|
4 # This component and the accompanying materials are made available |
|
5 # under the terms of the "Eclipse Public License v1.0" |
|
6 # which accompanies this distribution, and is available |
|
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 # |
|
9 # Initial Contributors: |
|
10 # Accenture - Initial contribution |
|
11 # |
|
12 |
|
13 ==name trace |
|
14 |
|
15 ==short-description |
|
16 |
|
17 Edit the flags that control kernel and file server tracing. |
|
18 |
|
19 ==long-description |
|
20 |
|
21 If no debug_mask (and no fileserver options) is specified, the current values of all the trace flags are displayed. |
|
22 |
|
23 Fileserver trace flags can be specified by name, using the C<--f32> and related options. A subsequent call to the trace command will overwrite what was previously specified. For example see the following sequence of calls: |
|
24 |
|
25 trace --f32 # General fileserver traces enabled |
|
26 trace --fat # FAT traces enabled, but general traces NO LONGER enabled |
|
27 trace --f32 --fat # Both sets of traces are enabled |
|
28 trace # This will turn off all fileserver tracing |
|
29 |
|
30 ==argument uint debug_mask optional |
|
31 |
|
32 The kernel debug mask value (prefix hex with "0x"). |
|
33 |
|
34 ==argument uint index optional |
|
35 |
|
36 The kernel debug mask index. |
|
37 |
|
38 ==option bool s f32 |
|
39 |
|
40 Enable general file server traces. |
|
41 |
|
42 ==option bool m multi-thread |
|
43 |
|
44 Enable general multi-threaded file server traces. |
|
45 |
|
46 ==option bool l loader |
|
47 |
|
48 Enable loader traces. |
|
49 |
|
50 ==option bool f fat |
|
51 |
|
52 Enable FAT traces. |
|
53 |
|
54 ==option bool t lffs |
|
55 |
|
56 Enable LFFS traces. |
|
57 |
|
58 ==option bool i iso9660 |
|
59 |
|
60 Enable ISO9660 traces. |
|
61 |
|
62 ==option bool n ntfs |
|
63 |
|
64 Enable NTFS traces. |
|
65 |
|
66 ==option bool o rofs |
|
67 |
|
68 Enable ROFS traces. |
|
69 |
|
70 ==option bool c compfs |
|
71 |
|
72 Enable COMPFS traces. |
|
73 |
|
74 ==option string e enable multiple |
|
75 |
|
76 Enable the given trace flag. Eg C<trace --enable kusb>. |
|
77 |
|
78 ==option string d disable multiple |
|
79 |
|
80 Disable the given trace flag. Eg C<trace --disable kusb>. |
|
81 |
|
82 ==copyright |
|
83 |
|
84 Copyright (c) 2006-2010 Accenture. All rights reserved. |
|
85 |