2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2014-09-29 01:06:21 +08:00
|
|
|
* fs/inode/fs_inodeaddref.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
|
|
|
|
2007-03-15 06:41:09 +08:00
|
|
|
#include <errno.h>
|
2012-03-22 02:01:07 +08:00
|
|
|
#include <nuttx/fs/fs.h>
|
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_addref
|
|
|
|
*
|
|
|
|
* Description:
|
2012-07-15 05:05:40 +08:00
|
|
|
* Increment the reference count on an inode (as when a file descriptor
|
|
|
|
* is dup'ed).
|
2007-03-15 06:41:09 +08:00
|
|
|
*
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-03-15 06:41:09 +08:00
|
|
|
|
2024-10-01 22:23:12 +08:00
|
|
|
void inode_addref(FAR struct inode *inode)
|
2007-03-15 06:41:09 +08:00
|
|
|
{
|
|
|
|
if (inode)
|
|
|
|
{
|
2024-07-23 19:30:19 +08:00
|
|
|
atomic_fetch_add(&inode->i_crefs, 1);
|
2007-03-15 06:41:09 +08:00
|
|
|
}
|
|
|
|
}
|