Skip to content

Commit

Permalink
xive: Don't try setting the reserved ACK# field in VPs
Browse files Browse the repository at this point in the history
That doesn't work, the HW doesn't implement it in the cache
watch facility anyway.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
  • Loading branch information
ozbenh authored and stewartsmith committed Sep 13, 2017
1 parent 3d9a256 commit 1cf6072
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions hw/xive.c
Original file line number Diff line number Diff line change
Expand Up @@ -882,11 +882,8 @@ static void xive_init_default_vp(struct xive_vp *vp,
{
memset(vp, 0, sizeof(struct xive_vp));

/* Stash the EQ base in the pressure relief interrupt field
* and set the ACK# to 0xff to disable pressure relief interrupts
*/
/* Stash the EQ base in the pressure relief interrupt field */
vp->w1 = (eq_blk << 28) | eq_idx;
vp->w5 = 0xff000000;
vp->w0 = VP_W0_VALID;
}

Expand Down

0 comments on commit 1cf6072

Please sign in to comment.