forked from luck/tmp_suning_uos_patched
1e0566fd4a
-----BEGIN PGP SIGNATURE----- iQFSBAABCAA8FiEEq68RxlopcLEwq+PEeb4+QwBBGIYFAlzrJgUeHHRvcnZhbGRz QGxpbnV4LWZvdW5kYXRpb24ub3JnAAoJEHm+PkMAQRiG1XAIAJajJpeKc9MVQipi zWiI+WgHDg8gG/HnLKzP2Zp4MUjTCz30t0rnBbdo6AyK6LnPBL53yxg9q64XN7vI p/h2ys+/DvqhIYSPWX6C++HYQT4Cb5ghxJABEIsztd3G4nfB9L2vgq9zKSNFusTD UtfUxufciZPX515TuE4IqWMwS4Ut5daH7V3jjZunhPiayTFv64e1KbpKLLzHR0NR DfFbrPcdp7VyCT/A5AKrqfqeB6O9dm/Fe4CsdsaKuzASCXJ6GUc/A7iZDndv/KA4 f5Xh7SGlQ2TfT1ud/aMfdw3AcMjqB8zgMJenovJ7UuHDfULBWNeAmMh/cTDwY9eY Xgyvfm0= =S8p9 -----END PGP SIGNATURE----- Merge tag 'v5.2-rc2' into patchwork Merge back from upstream into media tree, as there are some patches merged upstream that has pontential of causing conflicts (one actually rised a conflict already). Linux 5.2-rc2 * tag 'v5.2-rc2': (377 commits) Linux 5.2-rc2 random: fix soft lockup when trying to read from an uninitialized blocking pool tracing: Silence GCC 9 array bounds warning ext4: fix dcache lookup of !casefolded directories locking/lock_events: Use this_cpu_add() when necessary KVM: x86: fix return value for reserved EFER tools/kvm_stat: fix fields filter for child events KVM: selftests: Wrap vcpu_nested_state_get/set functions with x86 guard kvm: selftests: aarch64: compile with warnings on kvm: selftests: aarch64: fix default vm mode kvm: selftests: aarch64: dirty_log_test: fix unaligned memslot size KVM: s390: fix memory slot handling for KVM_SET_USER_MEMORY_REGION KVM: x86/pmu: do not mask the value that is written to fixed PMUs KVM: x86/pmu: mask the result of rdpmc according to the width of the counters x86/kvm/pmu: Set AMD's virt PMU version to 1 KVM: x86: do not spam dmesg with VMCS/VMCB dumps kvm: Check irqchip mode before assign irqfd kvm: svm/avic: fix off-by-one in checking host APIC ID KVM: selftests: do not blindly clobber registers in guest asm KVM: selftests: Remove duplicated TEST_ASSERT in hyperv_cpuid.c ...
54 lines
1.5 KiB
Plaintext
54 lines
1.5 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# DVB device configuration
|
|
#
|
|
|
|
config DVB_MAX_ADAPTERS
|
|
int "maximum number of DVB/ATSC adapters"
|
|
depends on DVB_CORE
|
|
default 16
|
|
range 1 255
|
|
help
|
|
Maximum number of DVB/ATSC adapters. Increasing this number
|
|
increases the memory consumption of the DVB subsystem even
|
|
if a much lower number of DVB/ATSC adapters is present.
|
|
Only values in the range 4-32 are tested.
|
|
|
|
If you are unsure about this, use the default value 16
|
|
|
|
config DVB_DYNAMIC_MINORS
|
|
bool "Dynamic DVB minor allocation"
|
|
depends on DVB_CORE
|
|
help
|
|
If you say Y here, the DVB subsystem will use dynamic minor
|
|
allocation for any device that uses the DVB major number.
|
|
This means that you can have more than 4 of a single type
|
|
of device (like demuxes and frontends) per adapter, but udev
|
|
will be required to manage the device nodes.
|
|
|
|
If you are unsure about this, say N here.
|
|
|
|
config DVB_DEMUX_SECTION_LOSS_LOG
|
|
bool "Enable DVB demux section packet loss log"
|
|
depends on DVB_CORE
|
|
help
|
|
Enable extra log messages meant to detect packet loss
|
|
inside the Kernel.
|
|
|
|
Should not be enabled on normal cases, as logs can
|
|
be very verbose.
|
|
|
|
If you are unsure about this, say N here.
|
|
|
|
config DVB_ULE_DEBUG
|
|
bool "Enable DVB net ULE packet debug messages"
|
|
depends on DVB_CORE
|
|
help
|
|
Enable extra log messages meant to detect problems while
|
|
handling DVB network ULE packet loss inside the Kernel.
|
|
|
|
Should not be enabled on normal cases, as logs can
|
|
be very verbose.
|
|
|
|
If you are unsure about this, say N here.
|