Skip to content

Commit

Permalink
Revert parts of "hlist: drop the node parameter from iterators"
Browse files Browse the repository at this point in the history
Commit b67bfe0 ("hlist: drop the node parameter from iterators")
did a lot of nice changes but also contains two small hunks that seem to
have slipped in accidentally and have no apparent connection to the
intent of the patch.

This reverts the two extraneous changes.

Signed-off-by: Arnd Bergmann <[email protected]>
Cc: Peter Senna Tschudin <[email protected]>
Cc: Paul E. McKenney <[email protected]>
Cc: Sasha Levin <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: Rusty Russell <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
arndb authored and torvalds committed Mar 8, 2013
1 parent 2e1c9b2 commit dc893e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kernel/smpboot.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ static int smpboot_thread_fn(void *data)
continue;
}

//BUG_ON(td->cpu != smp_processor_id());
BUG_ON(td->cpu != smp_processor_id());

/* Check for state change setup */
switch (td->status) {
Expand Down
2 changes: 1 addition & 1 deletion net/9p/trans_virtio.c
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ static struct p9_trans_module p9_virtio_trans = {
.create = p9_virtio_create,
.close = p9_virtio_close,
.request = p9_virtio_request,
//.zc_request = p9_virtio_zc_request,
.zc_request = p9_virtio_zc_request,
.cancel = p9_virtio_cancel,
/*
* We leave one entry for input and one entry for response
Expand Down

0 comments on commit dc893e1

Please sign in to comment.