2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2014-09-29 01:06:21 +08:00
|
|
|
* fs/inode/fs_inoderelease.c
|
2007-03-15 06:41:09 +08:00
|
|
|
*
|
2020-03-30 07:36:19 +08: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
|
2007-03-15 06:41:09 +08:00
|
|
|
*
|
2020-03-30 07:36:19 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-03-15 06:41:09 +08:00
|
|
|
*
|
2020-03-30 07:36:19 +08: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.
|
2007-03-15 06:41:09 +08:00
|
|
|
*
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-03-15 06:41:09 +08:00
|
|
|
|
2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2007-03-15 06:41:09 +08:00
|
|
|
* Included Files
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-03-15 06:41:09 +08:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2009-12-15 08:18:32 +08:00
|
|
|
|
2021-05-18 14:59:14 +08:00
|
|
|
#include <assert.h>
|
2020-03-30 07:36:19 +08:00
|
|
|
#include <debug.h>
|
2007-03-15 06:41:09 +08:00
|
|
|
#include <errno.h>
|
2011-04-06 04:54:00 +08:00
|
|
|
|
|
|
|
#include <nuttx/kmalloc.h>
|
2012-03-22 02:01:07 +08:00
|
|
|
#include <nuttx/fs/fs.h>
|
2009-12-15 08:18:32 +08:00
|
|
|
|
2014-09-29 21:14:38 +08:00
|
|
|
#include "inode/inode.h"
|
2007-03-15 06:41:09 +08:00
|
|
|
|
2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2007-03-15 06:41:09 +08:00
|
|
|
* Public Functions
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-03-15 06:41:09 +08:00
|
|
|
|
2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2007-03-15 06:41:09 +08:00
|
|
|
* Name: inode_release
|
|
|
|
*
|
|
|
|
* Description:
|
2012-07-15 05:05:40 +08:00
|
|
|
* This is called from close() logic when it no longer refers to the inode.
|
2007-03-15 06:41:09 +08:00
|
|
|
*
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-03-15 06:41:09 +08:00
|
|
|
|
2023-11-01 10:46:59 +08:00
|
|
|
void inode_release(FAR struct inode *inode)
|
2007-03-15 06:41:09 +08:00
|
|
|
{
|
2023-11-01 10:46:59 +08:00
|
|
|
if (inode)
|
2007-03-15 06:41:09 +08:00
|
|
|
{
|
|
|
|
/* Decrement the references of the inode */
|
|
|
|
|
2024-07-23 19:30:19 +08:00
|
|
|
if (atomic_fetch_sub(&inode->i_crefs, 1) <= 1)
|
2007-03-15 06:41:09 +08:00
|
|
|
{
|
2023-11-01 10:46:59 +08:00
|
|
|
DEBUGASSERT(inode->i_peer == NULL);
|
|
|
|
inode_free(inode);
|
2007-03-15 06:41:09 +08:00
|
|
|
}
|
|
|
|
}
|
2007-03-17 06:03:58 +08:00
|
|
|
}
|