hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
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
# SPDX-License-Identifier: GPL-2.0
 
config HAVE_GENERIC_VDSO
   bool
 
if HAVE_GENERIC_VDSO
 
config GENERIC_GETTIMEOFDAY
   bool
   help
     This is a generic implementation of gettimeofday vdso.
     Each architecture that enables this feature has to
     provide the fallback implementation.
 
config GENERIC_VDSO_32
   bool
   depends on GENERIC_GETTIMEOFDAY && !64BIT
   help
     This config option helps to avoid possible performance issues
     in 32 bit only architectures.
 
config GENERIC_COMPAT_VDSO
   bool
   help
     This config option enables the compat VDSO layer.
 
config GENERIC_VDSO_TIME_NS
   bool
   help
     Selected by architectures which support time namespaces in the
     VDSO
 
config GENERIC_CLOCKSOURCE_VDSO
        depends on ARM || ARM64
        select CLKSRC_MMIO
   bool
   help
      Enables access to clocksources via the vDSO based on
      generic MMIO operations.
 
endif