Linux Audio

Check our new training course

Loading...
v5.9
  1// SPDX-License-Identifier: GPL-2.0+
  2/*
  3 * btnode.c - NILFS B-tree node cache
  4 *
  5 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
  6 *
  7 * Originally written by Seiji Kihara.
  8 * Fully revised by Ryusuke Konishi for stabilization and simplification.
  9 *
 10 */
 11
 12#include <linux/types.h>
 13#include <linux/buffer_head.h>
 14#include <linux/mm.h>
 15#include <linux/backing-dev.h>
 16#include <linux/gfp.h>
 17#include "nilfs.h"
 18#include "mdt.h"
 19#include "dat.h"
 20#include "page.h"
 21#include "btnode.h"
 22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 23void nilfs_btnode_cache_clear(struct address_space *btnc)
 24{
 25	invalidate_mapping_pages(btnc, 0, -1);
 26	truncate_inode_pages(btnc, 0);
 27}
 28
 29struct buffer_head *
 30nilfs_btnode_create_block(struct address_space *btnc, __u64 blocknr)
 31{
 32	struct inode *inode = NILFS_BTNC_I(btnc);
 33	struct buffer_head *bh;
 34
 35	bh = nilfs_grab_buffer(inode, btnc, blocknr, BIT(BH_NILFS_Node));
 36	if (unlikely(!bh))
 37		return NULL;
 38
 39	if (unlikely(buffer_mapped(bh) || buffer_uptodate(bh) ||
 40		     buffer_dirty(bh))) {
 41		brelse(bh);
 42		BUG();
 43	}
 44	memset(bh->b_data, 0, i_blocksize(inode));
 45	bh->b_bdev = inode->i_sb->s_bdev;
 46	bh->b_blocknr = blocknr;
 47	set_buffer_mapped(bh);
 48	set_buffer_uptodate(bh);
 49
 50	unlock_page(bh->b_page);
 51	put_page(bh->b_page);
 52	return bh;
 53}
 54
 55int nilfs_btnode_submit_block(struct address_space *btnc, __u64 blocknr,
 56			      sector_t pblocknr, int mode, int mode_flags,
 57			      struct buffer_head **pbh, sector_t *submit_ptr)
 58{
 59	struct buffer_head *bh;
 60	struct inode *inode = NILFS_BTNC_I(btnc);
 61	struct page *page;
 62	int err;
 63
 64	bh = nilfs_grab_buffer(inode, btnc, blocknr, BIT(BH_NILFS_Node));
 65	if (unlikely(!bh))
 66		return -ENOMEM;
 67
 68	err = -EEXIST; /* internal code */
 69	page = bh->b_page;
 70
 71	if (buffer_uptodate(bh) || buffer_dirty(bh))
 72		goto found;
 73
 74	if (pblocknr == 0) {
 75		pblocknr = blocknr;
 76		if (inode->i_ino != NILFS_DAT_INO) {
 77			struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 78
 79			/* blocknr is a virtual block number */
 80			err = nilfs_dat_translate(nilfs->ns_dat, blocknr,
 81						  &pblocknr);
 82			if (unlikely(err)) {
 83				brelse(bh);
 84				goto out_locked;
 85			}
 86		}
 87	}
 88
 89	if (mode_flags & REQ_RAHEAD) {
 90		if (pblocknr != *submit_ptr + 1 || !trylock_buffer(bh)) {
 91			err = -EBUSY; /* internal code */
 92			brelse(bh);
 93			goto out_locked;
 94		}
 95	} else { /* mode == READ */
 96		lock_buffer(bh);
 97	}
 98	if (buffer_uptodate(bh)) {
 99		unlock_buffer(bh);
100		err = -EEXIST; /* internal code */
101		goto found;
102	}
103	set_buffer_mapped(bh);
104	bh->b_bdev = inode->i_sb->s_bdev;
105	bh->b_blocknr = pblocknr; /* set block address for read */
106	bh->b_end_io = end_buffer_read_sync;
107	get_bh(bh);
108	submit_bh(mode, mode_flags, bh);
109	bh->b_blocknr = blocknr; /* set back to the given block address */
110	*submit_ptr = pblocknr;
111	err = 0;
112found:
113	*pbh = bh;
114
115out_locked:
116	unlock_page(page);
117	put_page(page);
118	return err;
119}
120
121/**
122 * nilfs_btnode_delete - delete B-tree node buffer
123 * @bh: buffer to be deleted
124 *
125 * nilfs_btnode_delete() invalidates the specified buffer and delete the page
126 * including the buffer if the page gets unbusy.
127 */
128void nilfs_btnode_delete(struct buffer_head *bh)
129{
130	struct address_space *mapping;
131	struct page *page = bh->b_page;
132	pgoff_t index = page_index(page);
133	int still_dirty;
134
135	get_page(page);
136	lock_page(page);
137	wait_on_page_writeback(page);
138
139	nilfs_forget_buffer(bh);
140	still_dirty = PageDirty(page);
141	mapping = page->mapping;
142	unlock_page(page);
143	put_page(page);
144
145	if (!still_dirty && mapping)
146		invalidate_inode_pages2_range(mapping, index, index);
147}
148
149/**
150 * nilfs_btnode_prepare_change_key
151 *  prepare to move contents of the block for old key to one of new key.
152 *  the old buffer will not be removed, but might be reused for new buffer.
153 *  it might return -ENOMEM because of memory allocation errors,
154 *  and might return -EIO because of disk read errors.
155 */
156int nilfs_btnode_prepare_change_key(struct address_space *btnc,
157				    struct nilfs_btnode_chkey_ctxt *ctxt)
158{
159	struct buffer_head *obh, *nbh;
160	struct inode *inode = NILFS_BTNC_I(btnc);
161	__u64 oldkey = ctxt->oldkey, newkey = ctxt->newkey;
162	int err;
163
164	if (oldkey == newkey)
165		return 0;
166
167	obh = ctxt->bh;
168	ctxt->newbh = NULL;
169
170	if (inode->i_blkbits == PAGE_SHIFT) {
171		struct page *opage = obh->b_page;
172		lock_page(opage);
173retry:
174		/* BUG_ON(oldkey != obh->b_page->index); */
175		if (unlikely(oldkey != opage->index))
176			NILFS_PAGE_BUG(opage,
177				       "invalid oldkey %lld (newkey=%lld)",
178				       (unsigned long long)oldkey,
179				       (unsigned long long)newkey);
180
181		xa_lock_irq(&btnc->i_pages);
182		err = __xa_insert(&btnc->i_pages, newkey, opage, GFP_NOFS);
183		xa_unlock_irq(&btnc->i_pages);
184		/*
185		 * Note: page->index will not change to newkey until
186		 * nilfs_btnode_commit_change_key() will be called.
187		 * To protect the page in intermediate state, the page lock
188		 * is held.
189		 */
190		if (!err)
191			return 0;
192		else if (err != -EBUSY)
193			goto failed_unlock;
194
195		err = invalidate_inode_pages2_range(btnc, newkey, newkey);
196		if (!err)
197			goto retry;
198		/* fallback to copy mode */
199		unlock_page(opage);
200	}
201
202	nbh = nilfs_btnode_create_block(btnc, newkey);
203	if (!nbh)
204		return -ENOMEM;
205
206	BUG_ON(nbh == obh);
207	ctxt->newbh = nbh;
208	return 0;
209
210 failed_unlock:
211	unlock_page(obh->b_page);
212	return err;
213}
214
215/**
216 * nilfs_btnode_commit_change_key
217 *  commit the change_key operation prepared by prepare_change_key().
218 */
219void nilfs_btnode_commit_change_key(struct address_space *btnc,
220				    struct nilfs_btnode_chkey_ctxt *ctxt)
221{
222	struct buffer_head *obh = ctxt->bh, *nbh = ctxt->newbh;
223	__u64 oldkey = ctxt->oldkey, newkey = ctxt->newkey;
224	struct page *opage;
225
226	if (oldkey == newkey)
227		return;
228
229	if (nbh == NULL) {	/* blocksize == pagesize */
230		opage = obh->b_page;
231		if (unlikely(oldkey != opage->index))
232			NILFS_PAGE_BUG(opage,
233				       "invalid oldkey %lld (newkey=%lld)",
234				       (unsigned long long)oldkey,
235				       (unsigned long long)newkey);
236		mark_buffer_dirty(obh);
237
238		xa_lock_irq(&btnc->i_pages);
239		__xa_erase(&btnc->i_pages, oldkey);
240		__xa_set_mark(&btnc->i_pages, newkey, PAGECACHE_TAG_DIRTY);
241		xa_unlock_irq(&btnc->i_pages);
242
243		opage->index = obh->b_blocknr = newkey;
244		unlock_page(opage);
245	} else {
246		nilfs_copy_buffer(nbh, obh);
247		mark_buffer_dirty(nbh);
248
249		nbh->b_blocknr = newkey;
250		ctxt->bh = nbh;
251		nilfs_btnode_delete(obh); /* will decrement bh->b_count */
252	}
253}
254
255/**
256 * nilfs_btnode_abort_change_key
257 *  abort the change_key operation prepared by prepare_change_key().
258 */
259void nilfs_btnode_abort_change_key(struct address_space *btnc,
260				   struct nilfs_btnode_chkey_ctxt *ctxt)
261{
262	struct buffer_head *nbh = ctxt->newbh;
263	__u64 oldkey = ctxt->oldkey, newkey = ctxt->newkey;
264
265	if (oldkey == newkey)
266		return;
267
268	if (nbh == NULL) {	/* blocksize == pagesize */
269		xa_erase_irq(&btnc->i_pages, newkey);
270		unlock_page(ctxt->bh->b_page);
271	} else
272		brelse(nbh);
 
 
 
 
 
 
 
 
273}
v6.9.4
  1// SPDX-License-Identifier: GPL-2.0+
  2/*
  3 * NILFS B-tree node cache
  4 *
  5 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
  6 *
  7 * Originally written by Seiji Kihara.
  8 * Fully revised by Ryusuke Konishi for stabilization and simplification.
  9 *
 10 */
 11
 12#include <linux/types.h>
 13#include <linux/buffer_head.h>
 14#include <linux/mm.h>
 15#include <linux/backing-dev.h>
 16#include <linux/gfp.h>
 17#include "nilfs.h"
 18#include "mdt.h"
 19#include "dat.h"
 20#include "page.h"
 21#include "btnode.h"
 22
 23
 24/**
 25 * nilfs_init_btnc_inode - initialize B-tree node cache inode
 26 * @btnc_inode: inode to be initialized
 27 *
 28 * nilfs_init_btnc_inode() sets up an inode for B-tree node cache.
 29 */
 30void nilfs_init_btnc_inode(struct inode *btnc_inode)
 31{
 32	struct nilfs_inode_info *ii = NILFS_I(btnc_inode);
 33
 34	btnc_inode->i_mode = S_IFREG;
 35	ii->i_flags = 0;
 36	memset(&ii->i_bmap_data, 0, sizeof(struct nilfs_bmap));
 37	mapping_set_gfp_mask(btnc_inode->i_mapping, GFP_NOFS);
 38}
 39
 40void nilfs_btnode_cache_clear(struct address_space *btnc)
 41{
 42	invalidate_mapping_pages(btnc, 0, -1);
 43	truncate_inode_pages(btnc, 0);
 44}
 45
 46struct buffer_head *
 47nilfs_btnode_create_block(struct address_space *btnc, __u64 blocknr)
 48{
 49	struct inode *inode = btnc->host;
 50	struct buffer_head *bh;
 51
 52	bh = nilfs_grab_buffer(inode, btnc, blocknr, BIT(BH_NILFS_Node));
 53	if (unlikely(!bh))
 54		return NULL;
 55
 56	if (unlikely(buffer_mapped(bh) || buffer_uptodate(bh) ||
 57		     buffer_dirty(bh))) {
 58		brelse(bh);
 59		BUG();
 60	}
 61	memset(bh->b_data, 0, i_blocksize(inode));
 62	bh->b_bdev = inode->i_sb->s_bdev;
 63	bh->b_blocknr = blocknr;
 64	set_buffer_mapped(bh);
 65	set_buffer_uptodate(bh);
 66
 67	folio_unlock(bh->b_folio);
 68	folio_put(bh->b_folio);
 69	return bh;
 70}
 71
 72int nilfs_btnode_submit_block(struct address_space *btnc, __u64 blocknr,
 73			      sector_t pblocknr, blk_opf_t opf,
 74			      struct buffer_head **pbh, sector_t *submit_ptr)
 75{
 76	struct buffer_head *bh;
 77	struct inode *inode = btnc->host;
 78	struct folio *folio;
 79	int err;
 80
 81	bh = nilfs_grab_buffer(inode, btnc, blocknr, BIT(BH_NILFS_Node));
 82	if (unlikely(!bh))
 83		return -ENOMEM;
 84
 85	err = -EEXIST; /* internal code */
 86	folio = bh->b_folio;
 87
 88	if (buffer_uptodate(bh) || buffer_dirty(bh))
 89		goto found;
 90
 91	if (pblocknr == 0) {
 92		pblocknr = blocknr;
 93		if (inode->i_ino != NILFS_DAT_INO) {
 94			struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 95
 96			/* blocknr is a virtual block number */
 97			err = nilfs_dat_translate(nilfs->ns_dat, blocknr,
 98						  &pblocknr);
 99			if (unlikely(err)) {
100				brelse(bh);
101				goto out_locked;
102			}
103		}
104	}
105
106	if (opf & REQ_RAHEAD) {
107		if (pblocknr != *submit_ptr + 1 || !trylock_buffer(bh)) {
108			err = -EBUSY; /* internal code */
109			brelse(bh);
110			goto out_locked;
111		}
112	} else { /* opf == REQ_OP_READ */
113		lock_buffer(bh);
114	}
115	if (buffer_uptodate(bh)) {
116		unlock_buffer(bh);
117		err = -EEXIST; /* internal code */
118		goto found;
119	}
120	set_buffer_mapped(bh);
121	bh->b_bdev = inode->i_sb->s_bdev;
122	bh->b_blocknr = pblocknr; /* set block address for read */
123	bh->b_end_io = end_buffer_read_sync;
124	get_bh(bh);
125	submit_bh(opf, bh);
126	bh->b_blocknr = blocknr; /* set back to the given block address */
127	*submit_ptr = pblocknr;
128	err = 0;
129found:
130	*pbh = bh;
131
132out_locked:
133	folio_unlock(folio);
134	folio_put(folio);
135	return err;
136}
137
138/**
139 * nilfs_btnode_delete - delete B-tree node buffer
140 * @bh: buffer to be deleted
141 *
142 * nilfs_btnode_delete() invalidates the specified buffer and delete the page
143 * including the buffer if the page gets unbusy.
144 */
145void nilfs_btnode_delete(struct buffer_head *bh)
146{
147	struct address_space *mapping;
148	struct folio *folio = bh->b_folio;
149	pgoff_t index = folio->index;
150	int still_dirty;
151
152	folio_get(folio);
153	folio_lock(folio);
154	folio_wait_writeback(folio);
155
156	nilfs_forget_buffer(bh);
157	still_dirty = folio_test_dirty(folio);
158	mapping = folio->mapping;
159	folio_unlock(folio);
160	folio_put(folio);
161
162	if (!still_dirty && mapping)
163		invalidate_inode_pages2_range(mapping, index, index);
164}
165
166/**
167 * nilfs_btnode_prepare_change_key
168 *  prepare to move contents of the block for old key to one of new key.
169 *  the old buffer will not be removed, but might be reused for new buffer.
170 *  it might return -ENOMEM because of memory allocation errors,
171 *  and might return -EIO because of disk read errors.
172 */
173int nilfs_btnode_prepare_change_key(struct address_space *btnc,
174				    struct nilfs_btnode_chkey_ctxt *ctxt)
175{
176	struct buffer_head *obh, *nbh;
177	struct inode *inode = btnc->host;
178	__u64 oldkey = ctxt->oldkey, newkey = ctxt->newkey;
179	int err;
180
181	if (oldkey == newkey)
182		return 0;
183
184	obh = ctxt->bh;
185	ctxt->newbh = NULL;
186
187	if (inode->i_blkbits == PAGE_SHIFT) {
188		struct folio *ofolio = obh->b_folio;
189		folio_lock(ofolio);
190retry:
191		/* BUG_ON(oldkey != obh->b_folio->index); */
192		if (unlikely(oldkey != ofolio->index))
193			NILFS_FOLIO_BUG(ofolio,
194				       "invalid oldkey %lld (newkey=%lld)",
195				       (unsigned long long)oldkey,
196				       (unsigned long long)newkey);
197
198		xa_lock_irq(&btnc->i_pages);
199		err = __xa_insert(&btnc->i_pages, newkey, ofolio, GFP_NOFS);
200		xa_unlock_irq(&btnc->i_pages);
201		/*
202		 * Note: folio->index will not change to newkey until
203		 * nilfs_btnode_commit_change_key() will be called.
204		 * To protect the folio in intermediate state, the folio lock
205		 * is held.
206		 */
207		if (!err)
208			return 0;
209		else if (err != -EBUSY)
210			goto failed_unlock;
211
212		err = invalidate_inode_pages2_range(btnc, newkey, newkey);
213		if (!err)
214			goto retry;
215		/* fallback to copy mode */
216		folio_unlock(ofolio);
217	}
218
219	nbh = nilfs_btnode_create_block(btnc, newkey);
220	if (!nbh)
221		return -ENOMEM;
222
223	BUG_ON(nbh == obh);
224	ctxt->newbh = nbh;
225	return 0;
226
227 failed_unlock:
228	folio_unlock(obh->b_folio);
229	return err;
230}
231
232/**
233 * nilfs_btnode_commit_change_key
234 *  commit the change_key operation prepared by prepare_change_key().
235 */
236void nilfs_btnode_commit_change_key(struct address_space *btnc,
237				    struct nilfs_btnode_chkey_ctxt *ctxt)
238{
239	struct buffer_head *obh = ctxt->bh, *nbh = ctxt->newbh;
240	__u64 oldkey = ctxt->oldkey, newkey = ctxt->newkey;
241	struct folio *ofolio;
242
243	if (oldkey == newkey)
244		return;
245
246	if (nbh == NULL) {	/* blocksize == pagesize */
247		ofolio = obh->b_folio;
248		if (unlikely(oldkey != ofolio->index))
249			NILFS_FOLIO_BUG(ofolio,
250				       "invalid oldkey %lld (newkey=%lld)",
251				       (unsigned long long)oldkey,
252				       (unsigned long long)newkey);
253		mark_buffer_dirty(obh);
254
255		xa_lock_irq(&btnc->i_pages);
256		__xa_erase(&btnc->i_pages, oldkey);
257		__xa_set_mark(&btnc->i_pages, newkey, PAGECACHE_TAG_DIRTY);
258		xa_unlock_irq(&btnc->i_pages);
259
260		ofolio->index = obh->b_blocknr = newkey;
261		folio_unlock(ofolio);
262	} else {
263		nilfs_copy_buffer(nbh, obh);
264		mark_buffer_dirty(nbh);
265
266		nbh->b_blocknr = newkey;
267		ctxt->bh = nbh;
268		nilfs_btnode_delete(obh); /* will decrement bh->b_count */
269	}
270}
271
272/**
273 * nilfs_btnode_abort_change_key
274 *  abort the change_key operation prepared by prepare_change_key().
275 */
276void nilfs_btnode_abort_change_key(struct address_space *btnc,
277				   struct nilfs_btnode_chkey_ctxt *ctxt)
278{
279	struct buffer_head *nbh = ctxt->newbh;
280	__u64 oldkey = ctxt->oldkey, newkey = ctxt->newkey;
281
282	if (oldkey == newkey)
283		return;
284
285	if (nbh == NULL) {	/* blocksize == pagesize */
286		xa_erase_irq(&btnc->i_pages, newkey);
287		folio_unlock(ctxt->bh->b_folio);
288	} else {
289		/*
290		 * When canceling a buffer that a prepare operation has
291		 * allocated to copy a node block to another location, use
292		 * nilfs_btnode_delete() to initialize and release the buffer
293		 * so that the buffer flags will not be in an inconsistent
294		 * state when it is reallocated.
295		 */
296		nilfs_btnode_delete(nbh);
297	}
298}