-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoption-table.h
105 lines (94 loc) · 4.17 KB
/
option-table.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
* nvidia-persistenced: A daemon for maintaining persistent driver state,
* specifically for use by the NVIDIA Linux driver.
*
* Copyright (C) 2013-2016 NVIDIA Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
* option-table.h
*/
#include "nvgetopt.h"
enum {
PERSISTENCE_MODE_OPTION = 1024,
NVIDIA_CFG_PATH_OPTION,
};
static const NVGetoptOption __options[] = {
{ "version",
'v',
NVGETOPT_HELP_ALWAYS,
NULL,
"Print the utility version and exit." },
{ "help",
'h',
NVGETOPT_HELP_ALWAYS,
NULL,
"Print usage information for the command line options and exit." },
{ "verbose",
'V',
NVGETOPT_HELP_ALWAYS,
NULL,
"Controls how much information is printed. By default, "
"nvidia-persistenced will only print errors and warnings to syslog for "
"unexpected events, as well as startup and shutdown notices. "
"Specifying this flag will cause nvidia-persistenced to also print "
"notices to syslog on state transitions, such as when persistence mode "
"is enabled or disabled, and informational messages on startup and "
"exit." },
{ "user",
'u',
NVGETOPT_STRING_ARGUMENT | NVGETOPT_HELP_ALWAYS,
"USERNAME",
"Runs nvidia-persistenced with the user permissions of the user "
"specified by the &USERNAME& argument. This user must have write access "
"to the /var/run/nvidia-persistenced directory. If this directory does "
"not exist, nvidia-persistenced will attempt to create it prior to "
"changing the process user and group IDs. "
"If this option is not given, nvidia-persistenced will not attempt "
"to change the process user ID." },
{ "group",
'g',
NVGETOPT_STRING_ARGUMENT | NVGETOPT_HELP_ALWAYS,
"GROUPNAME",
"Runs nvidia-persistenced with the group permissions of the group "
"specified by the &GROUPNAME& argument. "
"If both this option and the --user option are given, this option "
"will take precedence when determining the group ID to use. "
"If this option is not given, nvidia-persistenced will use the "
"primary group ID of the user specified by the --user option argument. "
"If the --user option is also not given, nvidia-persistenced will not "
"attempt to change the process group ID." },
{ "persistence-mode",
PERSISTENCE_MODE_OPTION,
NVGETOPT_IS_BOOLEAN | NVGETOPT_HELP_ALWAYS,
NULL,
"By default, nvidia-persistenced starts with persistence mode enabled "
"for all devices. Use '--no-persistence-mode' to force persistence mode "
"off for all devices on startup." },
{ "nvidia-cfg-path",
NVIDIA_CFG_PATH_OPTION,
NVGETOPT_STRING_ARGUMENT | NVGETOPT_HELP_ALWAYS,
"PATH",
"The nvidia-cfg library is used to communicate with the NVIDIA kernel "
"module to query and manage GPUs in the system. This library is "
"required by nvidia-persistenced. This option tells "
"nvidia-persistenced where to look for this library (in case it cannot "
"find it on its own). This option should normally not be needed." },
{ NULL, 0, 0, NULL, NULL },
};