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