Limit number of posts in wp loop

To display 5 posts, say, use posts_per_page. See the Codex.

$the_query = new WP_Query( array( 'brand' => 'sony-vaio','posts_per_page'=>5 ) );

tech