Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Mon, 16 Dec 2002 05:02:21 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Mon, 16 Dec 2002 05:01:44 -0500 Received: from cmailg4.svr.pol.co.uk ([195.92.195.174]:26127 "EHLO cmailg4.svr.pol.co.uk") by vger.kernel.org with ESMTP id ; Mon, 16 Dec 2002 05:00:16 -0500 Date: Mon, 16 Dec 2002 10:08:21 +0000 To: Joe Thornber Cc: Linus Torvalds , Kernel Mailing List Subject: 4/19 Message-ID: <20021216100821.GE7407@reti> References: <20021211121749.GA20782@reti> <20021216100457.GA7407@reti> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20021216100457.GA7407@reti> User-Agent: Mutt/1.4i From: Joe Thornber Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 750 Lines: 20 No need to validate the parameters if we are doing a REMOVE_ALL command. --- diff/drivers/md/dm-ioctl.c 2002-12-11 11:50:25.000000000 +0000 +++ source/drivers/md/dm-ioctl.c 2002-12-16 09:40:39.000000000 +0000 @@ -986,6 +986,10 @@ static int validate_params(uint cmd, struct dm_ioctl *param) { + /* Ignores parameters */ + if (cmd == DM_REMOVE_ALL_CMD) + return 0; + /* Unless creating, either name of uuid but not both */ if (cmd != DM_DEV_CREATE_CMD) { if ((!*param->uuid && !*param->name) || - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/