2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2014-09-29 01:06:21 +08:00
|
|
|
* fs/inode/fs_inode.c
|
2007-02-18 07:21:28 +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-02-18 07:21:28 +08:00
|
|
|
*
|
2020-03-30 07:36:19 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 07:21:28 +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-02-18 07:21:28 +08:00
|
|
|
*
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Included Files
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2017-02-04 01:23:57 +08:00
|
|
|
#include <unistd.h>
|
2017-02-03 00:39:41 +08:00
|
|
|
#include <assert.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <errno.h>
|
|
|
|
|
2012-03-22 02:01:07 +08:00
|
|
|
#include <nuttx/fs/fs.h>
|
2022-05-29 23:59:14 +08:00
|
|
|
#include <nuttx/mutex.h>
|
2011-04-06 05:18:03 +08:00
|
|
|
|
2014-09-29 21:14:38 +08:00
|
|
|
#include "inode/inode.h"
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2009-12-15 08:18:32 +08:00
|
|
|
* Pre-processor Definitions
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2013-11-29 03:12:14 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
2016-04-15 00:14:38 +08:00
|
|
|
|
2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2016-02-22 08:08:58 +08:00
|
|
|
* Private Data
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2022-05-29 23:59:14 +08:00
|
|
|
static rmutex_t g_inode_lock = NXRMUTEX_INITIALIZER;
|
2007-02-18 07:21:28 +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-02-18 07:21:28 +08:00
|
|
|
|
2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2014-10-06 22:11:37 +08:00
|
|
|
* Name: inode_initialize
|
2007-03-15 06:41:09 +08:00
|
|
|
*
|
|
|
|
* Description:
|
2012-07-15 05:05:40 +08:00
|
|
|
* This is called from the OS initialization logic to configure the file
|
|
|
|
* system.
|
2007-03-15 06:41:09 +08:00
|
|
|
*
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2014-10-06 22:11:37 +08:00
|
|
|
void inode_initialize(void)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2020-09-15 17:42:42 +08:00
|
|
|
/* Reserve the root node */
|
|
|
|
|
|
|
|
inode_root_reserve();
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|
|
|
|
|
2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2022-09-06 14:18:45 +08:00
|
|
|
* Name: inode_lock
|
2012-08-04 06:04:14 +08:00
|
|
|
*
|
|
|
|
* Description:
|
2013-11-29 03:12:14 +08:00
|
|
|
* Get exclusive access to the in-memory inode tree (g_inode_sem).
|
2012-08-04 06:04:14 +08:00
|
|
|
*
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-03-15 06:41:09 +08:00
|
|
|
|
2022-09-06 14:18:45 +08:00
|
|
|
int inode_lock(void)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2022-05-29 23:59:14 +08:00
|
|
|
return nxrmutex_lock(&g_inode_lock);
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|
|
|
|
|
2008-06-01 04:14:15 +08:00
|
|
|
/****************************************************************************
|
2022-09-06 14:18:45 +08:00
|
|
|
* Name: inode_unlock
|
2012-08-04 06:04:14 +08:00
|
|
|
*
|
|
|
|
* Description:
|
2013-11-29 03:12:14 +08:00
|
|
|
* Relinquish exclusive access to the in-memory inode tree (g_inode_sem).
|
2012-08-04 06:04:14 +08:00
|
|
|
*
|
2008-06-01 04:14:15 +08:00
|
|
|
****************************************************************************/
|
2007-03-15 06:41:09 +08:00
|
|
|
|
2022-09-06 14:18:45 +08:00
|
|
|
void inode_unlock(void)
|
2007-03-15 06:41:09 +08:00
|
|
|
{
|
2022-05-29 23:59:14 +08:00
|
|
|
DEBUGVERIFY(nxrmutex_unlock(&g_inode_lock));
|
2007-03-15 06:41:09 +08:00
|
|
|
}
|