Skip to content

Commit

Permalink
Merge pull request #6 from rzk/odroid-3.0.y
Browse files Browse the repository at this point in the history
Mali-400 build and usage of SMP code in preemptible code fixes.
  • Loading branch information
hardkernel committed Jan 8, 2013
2 parents d0d77e6 + ab10080 commit fb06315
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions block/blk-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1273,8 +1273,10 @@ static int __make_request(struct request_queue *q, struct bio *bio)
init_request_from_bio(req, bio);

if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
bio_flagged(bio, BIO_CPU_AFFINE))
req->cpu = smp_processor_id();
bio_flagged(bio, BIO_CPU_AFFINE)) {
req->cpu = get_cpu();
put_cpu();
}

plug = current->plug;
if (plug) {
Expand Down
2 changes: 1 addition & 1 deletion drivers/media/video/samsung/mali/linux/mali_kernel_linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ int mali_driver_init(void)
}

/* print build options */
MALI_DEBUG_PRINT(2, ("%s\n", __malidrv_build_info()));
/* MALI_DEBUG_PRINT(2, ("%s\n", __malidrv_build_info())); */

return 0;
}
Expand Down

0 comments on commit fb06315

Please sign in to comment.