Description: kernel BUG at drivers/scsi/sd.c
Details : Remove sd iostats patch from sles11 patch series.
+Severity : normal
+Bugzilla : 23352
+Description: Modified value of at_min is not taken into account
+
-------------------------------------------------------------------------------
2010-10-29 Oracle, Inc.
at->at_flags = flags;
spin_lock_init(&at->at_lock);
}
+extern unsigned int at_min;
static inline int at_get(struct adaptive_timeout *at) {
- return at->at_current;
+ return (at->at_current > at_min) ? at->at_current : at_min;
}
int at_measured(struct adaptive_timeout *at, unsigned int val);
int import_at_get_index(struct obd_import *imp, int portal);