/* Note - racing to start/reset the obd_eviction timer is safe */
if (exp->exp_obd->obd_eviction_timer == 0) {
- unsigned long interval = PING_INTERVAL;
-
/* Check if the oldest entry is expired. */
if (CURRENT_SECONDS > (oldest_time +
(3 * obd_timeout / 2) + extra_delay)) {
struct dentry *__filter_oa2dentry(struct obd_device *obd, struct obdo *oa,
const char *what, int quiet);
#define filter_oa2dentry(obd, oa) __filter_oa2dentry(obd, oa, __FUNCTION__, 0)
+#define filter_oa2dentry_quiet(obd, oa) __filter_oa2dentry(obd, oa, __FUNCTION__, 1)
int filter_finish_transno(struct obd_export *, struct obd_trans_info *, int rc);
__u64 filter_last_id(struct filter_obd *, int group);
iobuf = filter_iobuf_get(oti->oti_thread, &exp->exp_obd->u.filter);
- dentry = filter_oa2dentry(obd, oa);
+ dentry = filter_oa2dentry_quiet(obd, oa);
if (IS_ERR(dentry)) {
if (PTR_ERR(dentry) == -ENOENT) {
dentry = NULL;