2018-04-03 17:23:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2008-07-24 16:17:14 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 Red Hat. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ctree.h"
|
2022-10-26 19:08:41 +00:00
|
|
|
#include "orphan.h"
|
2008-07-24 16:17:14 +00:00
|
|
|
|
|
|
|
int btrfs_insert_orphan_item(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root, u64 offset)
|
|
|
|
{
|
2024-09-03 18:19:07 +00:00
|
|
|
BTRFS_PATH_AUTO_FREE(path);
|
2008-07-24 16:17:14 +00:00
|
|
|
struct btrfs_key key;
|
|
|
|
|
|
|
|
key.objectid = BTRFS_ORPHAN_OBJECTID;
|
2014-06-04 16:41:45 +00:00
|
|
|
key.type = BTRFS_ORPHAN_ITEM_KEY;
|
2008-07-24 16:17:14 +00:00
|
|
|
key.offset = offset;
|
|
|
|
|
|
|
|
path = btrfs_alloc_path();
|
|
|
|
if (!path)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2024-09-03 18:19:07 +00:00
|
|
|
return btrfs_insert_empty_item(trans, root, path, &key, 0);
|
2008-07-24 16:17:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int btrfs_del_orphan_item(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root, u64 offset)
|
|
|
|
{
|
2024-09-03 18:19:07 +00:00
|
|
|
BTRFS_PATH_AUTO_FREE(path);
|
2008-07-24 16:17:14 +00:00
|
|
|
struct btrfs_key key;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
key.objectid = BTRFS_ORPHAN_OBJECTID;
|
2014-06-04 16:41:45 +00:00
|
|
|
key.type = BTRFS_ORPHAN_ITEM_KEY;
|
2008-07-24 16:17:14 +00:00
|
|
|
key.offset = offset;
|
|
|
|
|
|
|
|
path = btrfs_alloc_path();
|
|
|
|
if (!path)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
|
2010-12-08 17:22:34 +00:00
|
|
|
if (ret < 0)
|
2024-09-03 18:19:07 +00:00
|
|
|
return ret;
|
|
|
|
if (ret)
|
|
|
|
return -ENOENT;
|
2008-07-24 16:17:14 +00:00
|
|
|
|
2024-09-03 18:19:07 +00:00
|
|
|
return btrfs_del_item(trans, root, path);
|
2008-07-24 16:17:14 +00:00
|
|
|
}
|