Revision 3d5ebbf0

b/doc/glossary.rst
6 6

  
7 7
.. glossary::
8 8

  
9
  BE Parameter
10
    BE stands for Backend. BE parameters are hypervisor-independent
11
    instance parameters such as the amount of RAM/virtual CPUs it has
12
    been allocated.
13

  
9 14
  HVM
10 15
    Hardware virtualization mode, where the virtual machine is
11 16
    oblivious to the fact that's being virtualized and all the
......
15 20
    The code associated with an OpCode, e.g. the code that implements
16 21
    the startup of an instance.
17 22

  
23
  LUXI
24
     Local UniX Interface. The IPC method over unix sockets used between
25
     the cli tools and the master daemon.
26

  
18 27
  OpCode
19 28
    A data structure encapsulating a basic cluster operation; for
20 29
    example, start instance, add instance, etc.
b/lib/constants.py
200 200

  
201 201
PROC_MOUNTS = "/proc/mounts"
202 202

  
203
# luxi related constants
203
# Local UniX Interface related constants
204 204
LUXI_EOM = "\3"
205 205
LUXI_VERSION = CONFIG_VERSION
206 206

  
......
651 651

  
652 652
HVS_PARAMETERS = frozenset(HVS_PARAMETER_TYPES.keys())
653 653

  
654
# BE parameter names
654
# Backend parameter names
655 655
BE_MEMORY = "memory"
656 656
BE_VCPUS = "vcpus"
657 657
BE_AUTO_BALANCE = "auto_balance"
......
981 981
#: List of resources which can be queried using L{opcodes.OpQuery}
982 982
QR_OP_QUERY = frozenset([QR_INSTANCE, QR_NODE, QR_GROUP])
983 983

  
984
#: List of resources which can be queried using LUXI
984
#: List of resources which can be queried using Local UniX Interface
985 985
QR_OP_LUXI = QR_OP_QUERY.union([
986 986
  QR_LOCK,
987 987
  ])

Also available in: Unified diff