2008-08-02 16:25:34 +02:00
|
|
|
/****************************************************************************
|
2014-09-28 19:06:21 +02:00
|
|
|
* fs/driver/fs_closeblockdriver.c
|
2008-08-02 16:25:34 +02:00
|
|
|
*
|
2021-02-03 14:47:23 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2008-08-02 16:25:34 +02:00
|
|
|
*
|
2021-02-03 14:47:23 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2008-08-02 16:25:34 +02:00
|
|
|
*
|
2021-02-03 14:47:23 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2008-08-02 16:25:34 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2009-12-15 01:18:32 +01:00
|
|
|
|
2008-08-02 16:25:34 +02:00
|
|
|
#include <debug.h>
|
|
|
|
#include <errno.h>
|
2012-03-21 19:01:07 +01:00
|
|
|
#include <nuttx/fs/fs.h>
|
2008-08-02 16:25:34 +02:00
|
|
|
|
2014-09-29 15:14:38 +02:00
|
|
|
#include "inode/inode.h"
|
2008-08-02 16:25:34 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: close_blockdriver
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Call the close method and release the inode
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Input Parameters:
|
2021-02-04 13:56:38 +01:00
|
|
|
* inode - reference to the inode of a block driver opened by
|
|
|
|
* open_blockdriver
|
2008-08-02 16:25:34 +02:00
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2008-08-02 16:25:34 +02:00
|
|
|
* Returns zero on success or a negated errno on failure:
|
|
|
|
*
|
|
|
|
* EINVAL - inode is NULL
|
|
|
|
* ENOTBLK - The inode is not a block driver
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int close_blockdriver(FAR struct inode *inode)
|
|
|
|
{
|
|
|
|
int ret = 0; /* Assume success */
|
|
|
|
|
|
|
|
/* Sanity checks */
|
2012-07-14 23:05:40 +02:00
|
|
|
|
2016-06-11 22:14:08 +02:00
|
|
|
#ifdef CONFIG_DEBUG_FEATURES
|
2008-08-02 16:25:34 +02:00
|
|
|
if (!inode || !inode->u.i_bops)
|
|
|
|
{
|
|
|
|
ret = -EINVAL;
|
|
|
|
goto errout;
|
|
|
|
}
|
2008-08-02 19:22:22 +02:00
|
|
|
#endif
|
2008-08-02 16:25:34 +02:00
|
|
|
|
|
|
|
/* Verify that the inode is a block driver. */
|
|
|
|
|
|
|
|
if (!INODE_IS_BLOCK(inode))
|
2014-04-13 21:18:06 +02:00
|
|
|
{
|
2016-06-12 01:14:02 +02:00
|
|
|
ferr("ERROR: inode is not a block driver\n");
|
2008-08-02 16:25:34 +02:00
|
|
|
ret = -ENOTBLK;
|
|
|
|
goto errout;
|
2019-10-27 18:48:14 +01:00
|
|
|
}
|
2008-08-02 16:25:34 +02:00
|
|
|
|
|
|
|
/* Close the block driver. Not that no mutually exclusive access
|
|
|
|
* to the driver is enforced here. That must be done in the driver
|
|
|
|
* if needed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (inode->u.i_bops->close)
|
|
|
|
{
|
|
|
|
ret = inode->u.i_bops->close(inode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Then release the reference on the inode */
|
|
|
|
|
|
|
|
inode_release(inode);
|
2012-07-14 23:05:40 +02:00
|
|
|
|
2008-08-02 16:25:34 +02:00
|
|
|
errout:
|
|
|
|
return ret;
|
|
|
|
}
|