Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 346167
b: refs/heads/master
c: d93f630
h: refs/heads/master
i:
  346165: 8b4d483
  346163: dc906cb
  346159: 19c7df7
v: v3
  • Loading branch information
Lars Ellenberg authored and Philipp Reisner committed Nov 8, 2012
1 parent 4b266e3 commit 2f54fd1
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 81f448629aa25051c47b4d5b81702da8cbe922c3
refs/heads/master: d93f63028f3bc07bbcf6fe25d8d7d8a50f441bd9
30 changes: 30 additions & 0 deletions trunk/drivers/block/drbd/drbd_receiver.c
Original file line number Diff line number Diff line change
Expand Up @@ -1911,6 +1911,33 @@ static void update_peer_seq(struct drbd_conf *mdev, unsigned int peer_seq)
}
}

static inline int overlaps(sector_t s1, int l1, sector_t s2, int l2)
{
return !((s1 + (l1>>9) <= s2) || (s1 >= s2 + (l2>>9)));
}

/* maybe change sync_ee into interval trees as well? */
static bool overlaping_resync_write(struct drbd_conf *mdev, struct drbd_peer_request *peer_req)
{
struct drbd_peer_request *rs_req;
bool rv = 0;

spin_lock_irq(&mdev->tconn->req_lock);
list_for_each_entry(rs_req, &mdev->sync_ee, w.list) {
if (overlaps(peer_req->i.sector, peer_req->i.size,
rs_req->i.sector, rs_req->i.size)) {
rv = 1;
break;
}
}
spin_unlock_irq(&mdev->tconn->req_lock);

if (rv)
dev_warn(DEV, "WARN: Avoiding concurrent data/resync write to single sector.\n");

return rv;
}

/* Called from receive_Data.
* Synchronize packets on sock with packets on msock.
*
Expand Down Expand Up @@ -2192,6 +2219,9 @@ static int receive_Data(struct drbd_tconn *tconn, struct packet_info *pi)
list_add(&peer_req->w.list, &mdev->active_ee);
spin_unlock_irq(&mdev->tconn->req_lock);

if (mdev->state.conn == C_SYNC_TARGET)
wait_event(mdev->ee_wait, !overlaping_resync_write(mdev, peer_req));

if (mdev->tconn->agreed_pro_version < 100) {
rcu_read_lock();
switch (rcu_dereference(mdev->tconn->net_conf)->wire_protocol) {
Expand Down

0 comments on commit 2f54fd1

Please sign in to comment.