From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Lendacky Subject: Re: [PATCH 2] crypto: ccp - Provide a roll-back method for debugfs setup Date: Tue, 27 Jun 2017 09:47:41 -0500 Message-ID: <27b22aed-db9b-9a38-a718-af36d81e9fab@amd.com> References: <149857183214.26572.8412877312728402721.stgit@sosxen.amd.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Cc: herbert@gondor.apana.org.au, davem@davemloft.net To: Gary R Hook , linux-crypto@vger.kernel.org Return-path: Received: from mail-by2nam01on0082.outbound.protection.outlook.com ([104.47.34.82]:27616 "EHLO NAM01-BY2-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751658AbdF0Ory (ORCPT ); Tue, 27 Jun 2017 10:47:54 -0400 In-Reply-To: <149857183214.26572.8412877312728402721.stgit@sosxen.amd.com> Content-Language: en-US Sender: linux-crypto-owner@vger.kernel.org List-ID: On 6/27/2017 8:57 AM, Gary R Hook wrote: > Changes since v1: > - Remove unneeded local variable > > Signed-off-by: Gary R Hook > --- > drivers/crypto/ccp/ccp-debugfs.c | 17 ++++++++++++----- > 1 file changed, 12 insertions(+), 5 deletions(-) > > diff --git a/drivers/crypto/ccp/ccp-debugfs.c b/drivers/crypto/ccp/ccp-debugfs.c > index 3cd6c83754e0..88191c45ca7d 100644 > --- a/drivers/crypto/ccp/ccp-debugfs.c > +++ b/drivers/crypto/ccp/ccp-debugfs.c > @@ -305,19 +305,19 @@ void ccp5_debugfs_setup(struct ccp_device *ccp) > > ccp->debugfs_instance = debugfs_create_dir(ccp->name, ccp_debugfs_dir); > if (!ccp->debugfs_instance) > - return; > + goto err; > > debugfs_info = debugfs_create_file("info", 0400, > ccp->debugfs_instance, ccp, > &ccp_debugfs_info_ops); > if (!debugfs_info) > - return; > + goto err; > > debugfs_stats = debugfs_create_file("stats", 0600, > ccp->debugfs_instance, ccp, > &ccp_debugfs_stats_ops); > if (!debugfs_stats) > - return; > + goto err; > > for (i = 0; i < ccp->cmd_q_count; i++) { > cmd_q = &ccp->cmd_q[i]; > @@ -327,15 +327,22 @@ void ccp5_debugfs_setup(struct ccp_device *ccp) > debugfs_q_instance = > debugfs_create_dir(name, ccp->debugfs_instance); > if (!debugfs_q_instance) > - return; > + goto err; > > debugfs_q_stats = > debugfs_create_file("stats", 0600, > debugfs_q_instance, cmd_q, > &ccp_debugfs_queue_ops); > if (!debugfs_q_stats) > - return; > + goto err; > } > + return; > + > +err: > + write_lock_irqsave(&ccp_debugfs_lock, flags); > + debugfs_remove_recursive(ccp_debugfs_dir); This is removing the whole debugfs directory structure. Did you want to do that or just the directory entry for this instance? If you want the whole directory structure you should probably hold the debugfs lock the whole time you're creating entries. Thanks, Tom > + ccp_debugfs_dir = NULL; > + write_unlock_irqrestore(&ccp_debugfs_lock, flags); > } > > void ccp5_debugfs_destroy(void) >