* the meta-data super block. This function sets MD_DIRTY, and starts a
  * timer that ensures that within five seconds you have to call drbd_md_sync().
  */
-#ifdef DEBUG
-void drbd_md_mark_dirty_(struct drbd_device *device, unsigned int line, const char *func)
-{
-       if (!test_and_set_bit(MD_DIRTY, &device->flags)) {
-               mod_timer(&device->md_sync_timer, jiffies + HZ);
-               device->last_md_mark_dirty.line = line;
-               device->last_md_mark_dirty.func = func;
-       }
-}
-#else
 void drbd_md_mark_dirty(struct drbd_device *device)
 {
        if (!test_and_set_bit(MD_DIRTY, &device->flags))
                mod_timer(&device->md_sync_timer, jiffies + 5*HZ);
 }
-#endif
 
 void drbd_uuid_move_history(struct drbd_device *device) __must_hold(local)
 {