From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752699AbbJaBgX (ORCPT ); Fri, 30 Oct 2015 21:36:23 -0400 Received: from casper.infradead.org ([85.118.1.10]:49945 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751680AbbJaBgW (ORCPT ); Fri, 30 Oct 2015 21:36:22 -0400 To: LKML , axboe From: Randy Dunlap Subject: [PATCH v2] block: fix blk-core.c kernel-doc warning X-Enigmail-Draft-Status: N1110 Cc: Andrew Morton , Jeff Moyer Message-ID: <56341B10.9030106@infradead.org> Date: Fri, 30 Oct 2015 18:36:16 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Randy Dunlap Fix kernel-doc warning in blk-core.c: Warning(..//block/blk-core.c:1549): No description found for parameter 'same_queue_rq' Signed-off-by: Randy Dunlap Cc: Jeff Moyer Cc: Jens Axboe --- block/blk-core.c | 3 +++ 1 file changed, 3 insertions(+) --- lnx-43-rc7.orig/block/blk-core.c +++ lnx-43-rc7/block/blk-core.c @@ -1529,6 +1529,9 @@ bool bio_attempt_front_merge(struct requ * @q: request_queue new bio is being queued at * @bio: new bio being queued * @request_count: out parameter for number of traversed plugged requests + * @same_queue_rq: pointer to &struct request that gets filled in when + * another request associated with @q is found on the plug list + * (optional, may be %NULL) * * Determine whether @bio being queued on @q can be merged with a request * on %current's plugged list. Returns %true if merge was successful,