infra: remove unnecessary compile restriction

The corresponding bug has been fixed a while ago.
So this should no longer be necessary.
This commit is contained in:
Thomas Schoebel-Theuer 2019-08-13 10:44:47 +02:00 committed by Thomas Schoebel-Theuer
parent 19a8177af7
commit a7c994acf8
2 changed files with 0 additions and 7 deletions

View File

@ -5,7 +5,6 @@
config MARS config MARS
tristate "block storage replication MARS" tristate "block storage replication MARS"
depends on BLOCK && PROC_SYSCTL && HIGH_RES_TIMERS depends on BLOCK && PROC_SYSCTL && HIGH_RES_TIMERS
depends on !DEBUG_SLAB && !DEBUG_SG
default n default n
---help--- ---help---
See https://github.com/schoebel/mars/docu/ See https://github.com/schoebel/mars/docu/

View File

@ -58,12 +58,6 @@
#ifndef CONFIG_HIGH_RES_TIMERS #ifndef CONFIG_HIGH_RES_TIMERS
#error CONFIG_HIGH_RES_TIMERS must be set #error CONFIG_HIGH_RES_TIMERS must be set
#endif #endif
#ifdef CONFIG_DEBUG_SLAB
#error Fixme: CONFIG_DEBUG_SLAB does not work (fix the bio offset calculation)
#endif
#ifdef CONFIG_DEBUG_SG
#error Fixme: CONFIG_DEBUG_SG does not work (fix the bio offset calculation)
#endif
///////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////