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