balloc.c 25.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 *  linux/fs/ufs/balloc.c
 *
 * Copyright (C) 1998
 * Daniel Pirkl <daniel.pirkl@email.cz>
 * Charles University, Faculty of Mathematics and Physics
 */

#include <linux/fs.h>
#include <linux/ufs_fs.h>
#include <linux/stat.h>
#include <linux/time.h>
#include <linux/string.h>
#include <linux/quotaops.h>
#include <linux/buffer_head.h>
16
#include <linux/capability.h>
L
Linus Torvalds 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
#include <linux/sched.h>
#include <linux/bitops.h>
#include <asm/byteorder.h>

#include "swab.h"
#include "util.h"

static unsigned ufs_add_fragments (struct inode *, unsigned, unsigned, unsigned, int *);
static unsigned ufs_alloc_fragments (struct inode *, unsigned, unsigned, unsigned, int *);
static unsigned ufs_alloccg_block (struct inode *, struct ufs_cg_private_info *, unsigned, int *);
static unsigned ufs_bitmap_search (struct super_block *, struct ufs_cg_private_info *, unsigned, unsigned);
static unsigned char ufs_fragtable_8fpb[], ufs_fragtable_other[];
static void ufs_clusteracct(struct super_block *, struct ufs_cg_private_info *, unsigned, int);

/*
 * Free 'count' fragments from fragment number 'fragment'
 */
34 35
void ufs_free_fragments(struct inode *inode, unsigned fragment, unsigned count)
{
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44
	struct super_block * sb;
	struct ufs_sb_private_info * uspi;
	struct ufs_super_block_first * usb1;
	struct ufs_cg_private_info * ucpi;
	struct ufs_cylinder_group * ucg;
	unsigned cgno, bit, end_bit, bbase, blkmap, i, blkno, cylno;
	
	sb = inode->i_sb;
	uspi = UFS_SB(sb)->s_uspi;
E
Evgeniy 已提交
45
	usb1 = ubh_get_usb_first(uspi);
L
Linus Torvalds 已提交
46
	
E
Evgeniy Dushistov 已提交
47
	UFSD("ENTER, fragment %u, count %u\n", fragment, count);
L
Linus Torvalds 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
	
	if (ufs_fragnum(fragment) + count > uspi->s_fpg)
		ufs_error (sb, "ufs_free_fragments", "internal error");
	
	lock_super(sb);
	
	cgno = ufs_dtog(fragment);
	bit = ufs_dtogd(fragment);
	if (cgno >= uspi->s_ncg) {
		ufs_panic (sb, "ufs_free_fragments", "freeing blocks are outside device");
		goto failed;
	}
		
	ucpi = ufs_load_cylinder (sb, cgno);
	if (!ucpi) 
		goto failed;
E
Evgeniy Dushistov 已提交
64
	ucg = ubh_get_ucg (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
65 66 67 68 69 70 71
	if (!ufs_cg_chkmagic(sb, ucg)) {
		ufs_panic (sb, "ufs_free_fragments", "internal error, bad magic number on cg %u", cgno);
		goto failed;
	}

	end_bit = bit + count;
	bbase = ufs_blknum (bit);
E
Evgeniy Dushistov 已提交
72
	blkmap = ubh_blkmap (UCPI_UBH(ucpi), ucpi->c_freeoff, bbase);
L
Linus Torvalds 已提交
73 74
	ufs_fragacct (sb, blkmap, ucg->cg_frsum, -1);
	for (i = bit; i < end_bit; i++) {
E
Evgeniy Dushistov 已提交
75 76
		if (ubh_isclr (UCPI_UBH(ucpi), ucpi->c_freeoff, i))
			ubh_setbit (UCPI_UBH(ucpi), ucpi->c_freeoff, i);
E
Evgeniy 已提交
77 78 79
		else 
			ufs_error (sb, "ufs_free_fragments",
				   "bit already cleared for fragment %u", i);
L
Linus Torvalds 已提交
80 81 82 83 84 85
	}
	
	DQUOT_FREE_BLOCK (inode, count);

	
	fs32_add(sb, &ucg->cg_cs.cs_nffree, count);
86
	uspi->cs_total.cs_nffree += count;
L
Linus Torvalds 已提交
87
	fs32_add(sb, &UFS_SB(sb)->fs_cs(cgno).cs_nffree, count);
E
Evgeniy Dushistov 已提交
88
	blkmap = ubh_blkmap (UCPI_UBH(ucpi), ucpi->c_freeoff, bbase);
L
Linus Torvalds 已提交
89 90 91 92 93 94
	ufs_fragacct(sb, blkmap, ucg->cg_frsum, 1);

	/*
	 * Trying to reassemble free fragments into block
	 */
	blkno = ufs_fragstoblks (bbase);
E
Evgeniy Dushistov 已提交
95
	if (ubh_isblockset(UCPI_UBH(ucpi), ucpi->c_freeoff, blkno)) {
L
Linus Torvalds 已提交
96
		fs32_sub(sb, &ucg->cg_cs.cs_nffree, uspi->s_fpb);
97
		uspi->cs_total.cs_nffree -= uspi->s_fpb;
L
Linus Torvalds 已提交
98 99 100 101
		fs32_sub(sb, &UFS_SB(sb)->fs_cs(cgno).cs_nffree, uspi->s_fpb);
		if ((UFS_SB(sb)->s_flags & UFS_CG_MASK) == UFS_CG_44BSD)
			ufs_clusteracct (sb, ucpi, blkno, 1);
		fs32_add(sb, &ucg->cg_cs.cs_nbfree, 1);
102
		uspi->cs_total.cs_nbfree++;
L
Linus Torvalds 已提交
103 104 105 106 107 108
		fs32_add(sb, &UFS_SB(sb)->fs_cs(cgno).cs_nbfree, 1);
		cylno = ufs_cbtocylno (bbase);
		fs16_add(sb, &ubh_cg_blks(ucpi, cylno, ufs_cbtorpos(bbase)), 1);
		fs32_add(sb, &ubh_cg_blktot(ucpi, cylno), 1);
	}
	
E
Evgeniy Dushistov 已提交
109 110
	ubh_mark_buffer_dirty (USPI_UBH(uspi));
	ubh_mark_buffer_dirty (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
111
	if (sb->s_flags & MS_SYNCHRONOUS) {
112
		ubh_ll_rw_block(SWRITE, UCPI_UBH(ucpi));
E
Evgeniy Dushistov 已提交
113
		ubh_wait_on_buffer (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
114 115 116 117
	}
	sb->s_dirt = 1;
	
	unlock_super (sb);
E
Evgeniy Dushistov 已提交
118
	UFSD("EXIT\n");
L
Linus Torvalds 已提交
119 120 121 122
	return;

failed:
	unlock_super (sb);
E
Evgeniy Dushistov 已提交
123
	UFSD("EXIT (FAILED)\n");
L
Linus Torvalds 已提交
124 125 126 127 128 129
	return;
}

/*
 * Free 'count' fragments from fragment number 'fragment' (free whole blocks)
 */
130 131
void ufs_free_blocks(struct inode *inode, unsigned fragment, unsigned count)
{
L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139 140
	struct super_block * sb;
	struct ufs_sb_private_info * uspi;
	struct ufs_super_block_first * usb1;
	struct ufs_cg_private_info * ucpi;
	struct ufs_cylinder_group * ucg;
	unsigned overflow, cgno, bit, end_bit, blkno, i, cylno;
	
	sb = inode->i_sb;
	uspi = UFS_SB(sb)->s_uspi;
E
Evgeniy 已提交
141
	usb1 = ubh_get_usb_first(uspi);
L
Linus Torvalds 已提交
142

E
Evgeniy Dushistov 已提交
143
	UFSD("ENTER, fragment %u, count %u\n", fragment, count);
L
Linus Torvalds 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
	
	if ((fragment & uspi->s_fpbmask) || (count & uspi->s_fpbmask)) {
		ufs_error (sb, "ufs_free_blocks", "internal error, "
			"fragment %u, count %u\n", fragment, count);
		goto failed;
	}

	lock_super(sb);
	
do_more:
	overflow = 0;
	cgno = ufs_dtog (fragment);
	bit = ufs_dtogd (fragment);
	if (cgno >= uspi->s_ncg) {
		ufs_panic (sb, "ufs_free_blocks", "freeing blocks are outside device");
159
		goto failed_unlock;
L
Linus Torvalds 已提交
160 161 162 163 164 165 166 167 168 169
	}
	end_bit = bit + count;
	if (end_bit > uspi->s_fpg) {
		overflow = bit + count - uspi->s_fpg;
		count -= overflow;
		end_bit -= overflow;
	}

	ucpi = ufs_load_cylinder (sb, cgno);
	if (!ucpi) 
170
		goto failed_unlock;
E
Evgeniy Dushistov 已提交
171
	ucg = ubh_get_ucg (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
172 173
	if (!ufs_cg_chkmagic(sb, ucg)) {
		ufs_panic (sb, "ufs_free_blocks", "internal error, bad magic number on cg %u", cgno);
174
		goto failed_unlock;
L
Linus Torvalds 已提交
175 176 177 178
	}

	for (i = bit; i < end_bit; i += uspi->s_fpb) {
		blkno = ufs_fragstoblks(i);
E
Evgeniy Dushistov 已提交
179
		if (ubh_isblockset(UCPI_UBH(ucpi), ucpi->c_freeoff, blkno)) {
L
Linus Torvalds 已提交
180 181
			ufs_error(sb, "ufs_free_blocks", "freeing free fragment");
		}
E
Evgeniy Dushistov 已提交
182
		ubh_setblock(UCPI_UBH(ucpi), ucpi->c_freeoff, blkno);
L
Linus Torvalds 已提交
183 184 185 186 187
		if ((UFS_SB(sb)->s_flags & UFS_CG_MASK) == UFS_CG_44BSD)
			ufs_clusteracct (sb, ucpi, blkno, 1);
		DQUOT_FREE_BLOCK(inode, uspi->s_fpb);

		fs32_add(sb, &ucg->cg_cs.cs_nbfree, 1);
188
		uspi->cs_total.cs_nbfree++;
L
Linus Torvalds 已提交
189 190 191 192 193 194
		fs32_add(sb, &UFS_SB(sb)->fs_cs(cgno).cs_nbfree, 1);
		cylno = ufs_cbtocylno(i);
		fs16_add(sb, &ubh_cg_blks(ucpi, cylno, ufs_cbtorpos(i)), 1);
		fs32_add(sb, &ubh_cg_blktot(ucpi, cylno), 1);
	}

E
Evgeniy Dushistov 已提交
195 196
	ubh_mark_buffer_dirty (USPI_UBH(uspi));
	ubh_mark_buffer_dirty (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
197
	if (sb->s_flags & MS_SYNCHRONOUS) {
198
		ubh_ll_rw_block(SWRITE, UCPI_UBH(ucpi));
E
Evgeniy Dushistov 已提交
199
		ubh_wait_on_buffer (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
200 201 202 203 204 205 206 207 208 209
	}

	if (overflow) {
		fragment += count;
		count = overflow;
		goto do_more;
	}

	sb->s_dirt = 1;
	unlock_super (sb);
E
Evgeniy Dushistov 已提交
210
	UFSD("EXIT\n");
L
Linus Torvalds 已提交
211 212
	return;

213
failed_unlock:
L
Linus Torvalds 已提交
214
	unlock_super (sb);
215
failed:
E
Evgeniy Dushistov 已提交
216
	UFSD("EXIT (FAILED)\n");
L
Linus Torvalds 已提交
217 218 219
	return;
}

220 221 222 223 224 225 226 227 228 229
/*
 * Modify inode page cache in such way:
 * have - blocks with b_blocknr equal to oldb...oldb+count-1
 * get - blocks with b_blocknr equal to newb...newb+count-1
 * also we suppose that oldb...oldb+count-1 blocks
 * situated at the end of file.
 *
 * We can come here from ufs_writepage or ufs_prepare_write,
 * locked_page is argument of these functions, so we already lock it.
 */
230 231 232
static void ufs_change_blocknr(struct inode *inode, unsigned int baseblk,
			       unsigned int count, unsigned int oldb,
			       unsigned int newb, struct page *locked_page)
233 234 235 236 237 238 239 240
{
	unsigned int blk_per_page = 1 << (PAGE_CACHE_SHIFT - inode->i_blkbits);
	struct address_space *mapping = inode->i_mapping;
	pgoff_t index, cur_index = locked_page->index;
	unsigned int i, j;
	struct page *page;
	struct buffer_head *head, *bh;

E
Evgeniy Dushistov 已提交
241 242
	UFSD("ENTER, ino %lu, count %u, oldb %u, newb %u\n",
	      inode->i_ino, count, oldb, newb);
243 244 245 246 247 248 249 250

	BUG_ON(!PageLocked(locked_page));

	for (i = 0; i < count; i += blk_per_page) {
		index = (baseblk+i) >> (PAGE_CACHE_SHIFT - inode->i_blkbits);

		if (likely(cur_index != index)) {
			page = ufs_get_locked_page(mapping, index);
251
			if (!page || IS_ERR(page)) /* it was truncated or EIO */
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
				continue;
		} else
			page = locked_page;

		j = i;
		head = page_buffers(page);
		bh = head;
		do {
			if (likely(bh->b_blocknr == j + oldb && j < count)) {
				unmap_underlying_metadata(bh->b_bdev,
							  bh->b_blocknr);
				bh->b_blocknr = newb + j++;
				mark_buffer_dirty(bh);
			}

			bh = bh->b_this_page;
		} while (bh != head);

		set_page_dirty(page);

272 273
		if (likely(cur_index != index))
			ufs_put_locked_page(page);
274
 	}
E
Evgeniy Dushistov 已提交
275
	UFSD("EXIT\n");
276 277 278 279
}

unsigned ufs_new_fragments(struct inode * inode, __fs32 * p, unsigned fragment,
			   unsigned goal, unsigned count, int * err, struct page *locked_page)
L
Linus Torvalds 已提交
280 281 282 283
{
	struct super_block * sb;
	struct ufs_sb_private_info * uspi;
	struct ufs_super_block_first * usb1;
284
	unsigned cgno, oldcount, newcount, tmp, request, result;
L
Linus Torvalds 已提交
285
	
E
Evgeniy Dushistov 已提交
286
	UFSD("ENTER, ino %lu, fragment %u, goal %u, count %u\n", inode->i_ino, fragment, goal, count);
L
Linus Torvalds 已提交
287 288 289
	
	sb = inode->i_sb;
	uspi = UFS_SB(sb)->s_uspi;
E
Evgeniy 已提交
290
	usb1 = ubh_get_usb_first(uspi);
L
Linus Torvalds 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
	*err = -ENOSPC;

	lock_super (sb);
	
	tmp = fs32_to_cpu(sb, *p);
	if (count + ufs_fragnum(fragment) > uspi->s_fpb) {
		ufs_warning (sb, "ufs_new_fragments", "internal warning"
			" fragment %u, count %u", fragment, count);
		count = uspi->s_fpb - ufs_fragnum(fragment); 
	}
	oldcount = ufs_fragnum (fragment);
	newcount = oldcount + count;

	/*
	 * Somebody else has just allocated our fragments
	 */
	if (oldcount) {
		if (!tmp) {
			ufs_error (sb, "ufs_new_fragments", "internal error, "
				"fragment %u, tmp %u\n", fragment, tmp);
			unlock_super (sb);
			return (unsigned)-1;
		}
		if (fragment < UFS_I(inode)->i_lastfrag) {
E
Evgeniy Dushistov 已提交
315
			UFSD("EXIT (ALREADY ALLOCATED)\n");
L
Linus Torvalds 已提交
316 317 318 319 320 321
			unlock_super (sb);
			return 0;
		}
	}
	else {
		if (tmp) {
E
Evgeniy Dushistov 已提交
322
			UFSD("EXIT (ALREADY ALLOCATED)\n");
L
Linus Torvalds 已提交
323 324 325 326 327 328 329 330
			unlock_super(sb);
			return 0;
		}
	}

	/*
	 * There is not enough space for user on the device
	 */
331
	if (!capable(CAP_SYS_RESOURCE) && ufs_freespace(uspi, UFS_MINFREE) <= 0) {
L
Linus Torvalds 已提交
332
		unlock_super (sb);
E
Evgeniy Dushistov 已提交
333
		UFSD("EXIT (FAILED)\n");
L
Linus Torvalds 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
		return 0;
	}

	if (goal >= uspi->s_size) 
		goal = 0;
	if (goal == 0) 
		cgno = ufs_inotocg (inode->i_ino);
	else
		cgno = ufs_dtog (goal);
	 
	/*
	 * allocate new fragment
	 */
	if (oldcount == 0) {
		result = ufs_alloc_fragments (inode, cgno, goal, count, err);
		if (result) {
			*p = cpu_to_fs32(sb, result);
			*err = 0;
			UFS_I(inode)->i_lastfrag = max_t(u32, UFS_I(inode)->i_lastfrag, fragment + count);
		}
		unlock_super(sb);
E
Evgeniy Dushistov 已提交
355
		UFSD("EXIT, result %u\n", result);
L
Linus Torvalds 已提交
356 357 358 359 360 361 362 363 364 365 366
		return result;
	}

	/*
	 * resize block
	 */
	result = ufs_add_fragments (inode, tmp, oldcount, newcount, err);
	if (result) {
		*err = 0;
		UFS_I(inode)->i_lastfrag = max_t(u32, UFS_I(inode)->i_lastfrag, fragment + count);
		unlock_super(sb);
E
Evgeniy Dushistov 已提交
367
		UFSD("EXIT, result %u\n", result);
L
Linus Torvalds 已提交
368 369 370 371 372 373 374 375 376
		return result;
	}

	/*
	 * allocate new block and move data
	 */
	switch (fs32_to_cpu(sb, usb1->fs_optim)) {
	    case UFS_OPTSPACE:
		request = newcount;
377 378
		if (uspi->s_minfree < 5 || uspi->cs_total.cs_nffree
		    > uspi->s_dsize * uspi->s_minfree / (2 * 100))
L
Linus Torvalds 已提交
379 380 381 382 383 384 385 386
			break;
		usb1->fs_optim = cpu_to_fs32(sb, UFS_OPTTIME);
		break;
	    default:
		usb1->fs_optim = cpu_to_fs32(sb, UFS_OPTTIME);
	
	    case UFS_OPTTIME:
		request = uspi->s_fpb;
387
		if (uspi->cs_total.cs_nffree < uspi->s_dsize *
L
Linus Torvalds 已提交
388 389 390 391 392 393 394
		    (uspi->s_minfree - 2) / 100)
			break;
		usb1->fs_optim = cpu_to_fs32(sb, UFS_OPTTIME);
		break;
	}
	result = ufs_alloc_fragments (inode, cgno, goal, request, err);
	if (result) {
395 396
		ufs_change_blocknr(inode, fragment - oldcount, oldcount, tmp,
				   result, locked_page);
397

L
Linus Torvalds 已提交
398 399 400 401 402 403 404
		*p = cpu_to_fs32(sb, result);
		*err = 0;
		UFS_I(inode)->i_lastfrag = max_t(u32, UFS_I(inode)->i_lastfrag, fragment + count);
		unlock_super(sb);
		if (newcount < request)
			ufs_free_fragments (inode, result + newcount, request - newcount);
		ufs_free_fragments (inode, tmp, oldcount);
E
Evgeniy Dushistov 已提交
405
		UFSD("EXIT, result %u\n", result);
L
Linus Torvalds 已提交
406 407 408 409
		return result;
	}

	unlock_super(sb);
E
Evgeniy Dushistov 已提交
410
	UFSD("EXIT (FAILED)\n");
L
Linus Torvalds 已提交
411 412 413 414 415 416 417 418 419 420 421 422 423 424
	return 0;
}		

static unsigned
ufs_add_fragments (struct inode * inode, unsigned fragment,
		   unsigned oldcount, unsigned newcount, int * err)
{
	struct super_block * sb;
	struct ufs_sb_private_info * uspi;
	struct ufs_super_block_first * usb1;
	struct ufs_cg_private_info * ucpi;
	struct ufs_cylinder_group * ucg;
	unsigned cgno, fragno, fragoff, count, fragsize, i;
	
E
Evgeniy Dushistov 已提交
425
	UFSD("ENTER, fragment %u, oldcount %u, newcount %u\n", fragment, oldcount, newcount);
L
Linus Torvalds 已提交
426 427 428
	
	sb = inode->i_sb;
	uspi = UFS_SB(sb)->s_uspi;
E
Evgeniy 已提交
429
	usb1 = ubh_get_usb_first (uspi);
L
Linus Torvalds 已提交
430 431 432 433 434 435 436 437 438 439
	count = newcount - oldcount;
	
	cgno = ufs_dtog(fragment);
	if (fs32_to_cpu(sb, UFS_SB(sb)->fs_cs(cgno).cs_nffree) < count)
		return 0;
	if ((ufs_fragnum (fragment) + newcount) > uspi->s_fpb)
		return 0;
	ucpi = ufs_load_cylinder (sb, cgno);
	if (!ucpi)
		return 0;
E
Evgeniy Dushistov 已提交
440
	ucg = ubh_get_ucg (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
441 442 443 444 445 446 447 448 449
	if (!ufs_cg_chkmagic(sb, ucg)) {
		ufs_panic (sb, "ufs_add_fragments",
			"internal error, bad magic number on cg %u", cgno);
		return 0;
	}

	fragno = ufs_dtogd (fragment);
	fragoff = ufs_fragnum (fragno);
	for (i = oldcount; i < newcount; i++)
E
Evgeniy Dushistov 已提交
450
		if (ubh_isclr (UCPI_UBH(ucpi), ucpi->c_freeoff, fragno + i))
L
Linus Torvalds 已提交
451 452 453 454 455 456
			return 0;
	/*
	 * Block can be extended
	 */
	ucg->cg_time = cpu_to_fs32(sb, get_seconds());
	for (i = newcount; i < (uspi->s_fpb - fragoff); i++)
E
Evgeniy Dushistov 已提交
457
		if (ubh_isclr (UCPI_UBH(ucpi), ucpi->c_freeoff, fragno + i))
L
Linus Torvalds 已提交
458 459 460 461 462 463 464 465 466
			break;
	fragsize = i - oldcount;
	if (!fs32_to_cpu(sb, ucg->cg_frsum[fragsize]))
		ufs_panic (sb, "ufs_add_fragments",
			"internal error or corrupted bitmap on cg %u", cgno);
	fs32_sub(sb, &ucg->cg_frsum[fragsize], 1);
	if (fragsize != count)
		fs32_add(sb, &ucg->cg_frsum[fragsize - count], 1);
	for (i = oldcount; i < newcount; i++)
E
Evgeniy Dushistov 已提交
467
		ubh_clrbit (UCPI_UBH(ucpi), ucpi->c_freeoff, fragno + i);
L
Linus Torvalds 已提交
468 469 470 471 472 473 474
	if(DQUOT_ALLOC_BLOCK(inode, count)) {
		*err = -EDQUOT;
		return 0;
	}

	fs32_sub(sb, &ucg->cg_cs.cs_nffree, count);
	fs32_sub(sb, &UFS_SB(sb)->fs_cs(cgno).cs_nffree, count);
475
	uspi->cs_total.cs_nffree -= count;
L
Linus Torvalds 已提交
476
	
E
Evgeniy Dushistov 已提交
477 478
	ubh_mark_buffer_dirty (USPI_UBH(uspi));
	ubh_mark_buffer_dirty (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
479
	if (sb->s_flags & MS_SYNCHRONOUS) {
480
		ubh_ll_rw_block(SWRITE, UCPI_UBH(ucpi));
E
Evgeniy Dushistov 已提交
481
		ubh_wait_on_buffer (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
482 483 484
	}
	sb->s_dirt = 1;

E
Evgeniy Dushistov 已提交
485
	UFSD("EXIT, fragment %u\n", fragment);
L
Linus Torvalds 已提交
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
	
	return fragment;
}

#define UFS_TEST_FREE_SPACE_CG \
	ucg = (struct ufs_cylinder_group *) UFS_SB(sb)->s_ucg[cgno]->b_data; \
	if (fs32_to_cpu(sb, ucg->cg_cs.cs_nbfree)) \
		goto cg_found; \
	for (k = count; k < uspi->s_fpb; k++) \
		if (fs32_to_cpu(sb, ucg->cg_frsum[k])) \
			goto cg_found; 

static unsigned ufs_alloc_fragments (struct inode * inode, unsigned cgno,
	unsigned goal, unsigned count, int * err)
{
	struct super_block * sb;
	struct ufs_sb_private_info * uspi;
	struct ufs_super_block_first * usb1;
	struct ufs_cg_private_info * ucpi;
	struct ufs_cylinder_group * ucg;
	unsigned oldcg, i, j, k, result, allocsize;
	
E
Evgeniy Dushistov 已提交
508
	UFSD("ENTER, ino %lu, cgno %u, goal %u, count %u\n", inode->i_ino, cgno, goal, count);
L
Linus Torvalds 已提交
509 510 511

	sb = inode->i_sb;
	uspi = UFS_SB(sb)->s_uspi;
E
Evgeniy 已提交
512
	usb1 = ubh_get_usb_first(uspi);
L
Linus Torvalds 已提交
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541
	oldcg = cgno;
	
	/*
	 * 1. searching on preferred cylinder group
	 */
	UFS_TEST_FREE_SPACE_CG

	/*
	 * 2. quadratic rehash
	 */
	for (j = 1; j < uspi->s_ncg; j *= 2) {
		cgno += j;
		if (cgno >= uspi->s_ncg) 
			cgno -= uspi->s_ncg;
		UFS_TEST_FREE_SPACE_CG
	}

	/*
	 * 3. brute force search
	 * We start at i = 2 ( 0 is checked at 1.step, 1 at 2.step )
	 */
	cgno = (oldcg + 1) % uspi->s_ncg;
	for (j = 2; j < uspi->s_ncg; j++) {
		cgno++;
		if (cgno >= uspi->s_ncg)
			cgno = 0;
		UFS_TEST_FREE_SPACE_CG
	}
	
E
Evgeniy Dushistov 已提交
542
	UFSD("EXIT (FAILED)\n");
L
Linus Torvalds 已提交
543 544 545 546 547 548
	return 0;

cg_found:
	ucpi = ufs_load_cylinder (sb, cgno);
	if (!ucpi)
		return 0;
E
Evgeniy Dushistov 已提交
549
	ucg = ubh_get_ucg (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571
	if (!ufs_cg_chkmagic(sb, ucg)) 
		ufs_panic (sb, "ufs_alloc_fragments",
			"internal error, bad magic number on cg %u", cgno);
	ucg->cg_time = cpu_to_fs32(sb, get_seconds());

	if (count == uspi->s_fpb) {
		result = ufs_alloccg_block (inode, ucpi, goal, err);
		if (result == (unsigned)-1)
			return 0;
		goto succed;
	}

	for (allocsize = count; allocsize < uspi->s_fpb; allocsize++)
		if (fs32_to_cpu(sb, ucg->cg_frsum[allocsize]) != 0)
			break;
	
	if (allocsize == uspi->s_fpb) {
		result = ufs_alloccg_block (inode, ucpi, goal, err);
		if (result == (unsigned)-1)
			return 0;
		goal = ufs_dtogd (result);
		for (i = count; i < uspi->s_fpb; i++)
E
Evgeniy Dushistov 已提交
572
			ubh_setbit (UCPI_UBH(ucpi), ucpi->c_freeoff, goal + i);
L
Linus Torvalds 已提交
573 574 575 576
		i = uspi->s_fpb - count;
		DQUOT_FREE_BLOCK(inode, i);

		fs32_add(sb, &ucg->cg_cs.cs_nffree, i);
577
		uspi->cs_total.cs_nffree += i;
L
Linus Torvalds 已提交
578 579 580 581 582 583 584 585 586 587 588 589 590
		fs32_add(sb, &UFS_SB(sb)->fs_cs(cgno).cs_nffree, i);
		fs32_add(sb, &ucg->cg_frsum[i], 1);
		goto succed;
	}

	result = ufs_bitmap_search (sb, ucpi, goal, allocsize);
	if (result == (unsigned)-1)
		return 0;
	if(DQUOT_ALLOC_BLOCK(inode, count)) {
		*err = -EDQUOT;
		return 0;
	}
	for (i = 0; i < count; i++)
E
Evgeniy Dushistov 已提交
591
		ubh_clrbit (UCPI_UBH(ucpi), ucpi->c_freeoff, result + i);
L
Linus Torvalds 已提交
592 593
	
	fs32_sub(sb, &ucg->cg_cs.cs_nffree, count);
594
	uspi->cs_total.cs_nffree -= count;
L
Linus Torvalds 已提交
595 596 597 598 599 600 601
	fs32_sub(sb, &UFS_SB(sb)->fs_cs(cgno).cs_nffree, count);
	fs32_sub(sb, &ucg->cg_frsum[allocsize], 1);

	if (count != allocsize)
		fs32_add(sb, &ucg->cg_frsum[allocsize - count], 1);

succed:
E
Evgeniy Dushistov 已提交
602 603
	ubh_mark_buffer_dirty (USPI_UBH(uspi));
	ubh_mark_buffer_dirty (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
604
	if (sb->s_flags & MS_SYNCHRONOUS) {
605
		ubh_ll_rw_block(SWRITE, UCPI_UBH(ucpi));
E
Evgeniy Dushistov 已提交
606
		ubh_wait_on_buffer (UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
607 608 609 610
	}
	sb->s_dirt = 1;

	result += cgno * uspi->s_fpg;
E
Evgeniy Dushistov 已提交
611
	UFSD("EXIT3, result %u\n", result);
L
Linus Torvalds 已提交
612 613 614 615 616 617 618 619 620 621 622 623
	return result;
}

static unsigned ufs_alloccg_block (struct inode * inode,
	struct ufs_cg_private_info * ucpi, unsigned goal, int * err)
{
	struct super_block * sb;
	struct ufs_sb_private_info * uspi;
	struct ufs_super_block_first * usb1;
	struct ufs_cylinder_group * ucg;
	unsigned result, cylno, blkno;

E
Evgeniy Dushistov 已提交
624
	UFSD("ENTER, goal %u\n", goal);
L
Linus Torvalds 已提交
625 626 627

	sb = inode->i_sb;
	uspi = UFS_SB(sb)->s_uspi;
E
Evgeniy 已提交
628
	usb1 = ubh_get_usb_first(uspi);
E
Evgeniy Dushistov 已提交
629
	ucg = ubh_get_ucg(UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
630 631 632 633 634 635 636 637 638 639 640

	if (goal == 0) {
		goal = ucpi->c_rotor;
		goto norot;
	}
	goal = ufs_blknum (goal);
	goal = ufs_dtogd (goal);
	
	/*
	 * If the requested block is available, use it.
	 */
E
Evgeniy Dushistov 已提交
641
	if (ubh_isblockset(UCPI_UBH(ucpi), ucpi->c_freeoff, ufs_fragstoblks(goal))) {
L
Linus Torvalds 已提交
642 643 644 645 646 647 648 649 650 651 652
		result = goal;
		goto gotit;
	}
	
norot:	
	result = ufs_bitmap_search (sb, ucpi, goal, uspi->s_fpb);
	if (result == (unsigned)-1)
		return (unsigned)-1;
	ucpi->c_rotor = result;
gotit:
	blkno = ufs_fragstoblks(result);
E
Evgeniy Dushistov 已提交
653
	ubh_clrblock (UCPI_UBH(ucpi), ucpi->c_freeoff, blkno);
L
Linus Torvalds 已提交
654 655 656 657 658 659 660 661
	if ((UFS_SB(sb)->s_flags & UFS_CG_MASK) == UFS_CG_44BSD)
		ufs_clusteracct (sb, ucpi, blkno, -1);
	if(DQUOT_ALLOC_BLOCK(inode, uspi->s_fpb)) {
		*err = -EDQUOT;
		return (unsigned)-1;
	}

	fs32_sub(sb, &ucg->cg_cs.cs_nbfree, 1);
662
	uspi->cs_total.cs_nbfree--;
L
Linus Torvalds 已提交
663 664 665 666 667
	fs32_sub(sb, &UFS_SB(sb)->fs_cs(ucpi->c_cgx).cs_nbfree, 1);
	cylno = ufs_cbtocylno(result);
	fs16_sub(sb, &ubh_cg_blks(ucpi, cylno, ufs_cbtorpos(result)), 1);
	fs32_sub(sb, &ubh_cg_blktot(ucpi, cylno), 1);
	
E
Evgeniy Dushistov 已提交
668
	UFSD("EXIT, result %u\n", result);
L
Linus Torvalds 已提交
669 670 671 672

	return result;
}

673 674 675 676
static unsigned ubh_scanc(struct ufs_sb_private_info *uspi,
			  struct ufs_buffer_head *ubh,
			  unsigned begin, unsigned size,
			  unsigned char *table, unsigned char mask)
L
Linus Torvalds 已提交
677
{
678 679
	unsigned rest, offset;
	unsigned char *cp;
L
Linus Torvalds 已提交
680 681
	

682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
	offset = begin & ~uspi->s_fmask;
	begin >>= uspi->s_fshift;
	for (;;) {
		if ((offset + size) < uspi->s_fsize)
			rest = size;
		else
			rest = uspi->s_fsize - offset;
		size -= rest;
		cp = ubh->bh[begin]->b_data + offset;
		while ((table[*cp++] & mask) == 0 && --rest)
			;
		if (rest || !size)
			break;
		begin++;
		offset = 0;
	}
	return (size + rest);
}

/*
 * Find a block of the specified size in the specified cylinder group.
 * @sp: pointer to super block
 * @ucpi: pointer to cylinder group info
 * @goal: near which block we want find new one
 * @count: specified size
 */
static unsigned ufs_bitmap_search(struct super_block *sb,
				  struct ufs_cg_private_info *ucpi,
				  unsigned goal, unsigned count)
{
	/*
	 * Bit patterns for identifying fragments in the block map
	 * used as ((map & mask_arr) == want_arr)
	 */
	static const int mask_arr[9] = {
		0x3, 0x7, 0xf, 0x1f, 0x3f, 0x7f, 0xff, 0x1ff, 0x3ff
	};
	static const int want_arr[9] = {
		0x0, 0x2, 0x6, 0xe, 0x1e, 0x3e, 0x7e, 0xfe, 0x1fe
	};
	struct ufs_sb_private_info *uspi = UFS_SB(sb)->s_uspi;
	struct ufs_super_block_first *usb1;
	struct ufs_cylinder_group *ucg;
	unsigned start, length, loc, result;
	unsigned pos, want, blockmap, mask, end;

E
Evgeniy Dushistov 已提交
728
	UFSD("ENTER, cg %u, goal %u, count %u\n", ucpi->c_cgx, goal, count);
729

E
Evgeniy 已提交
730
	usb1 = ubh_get_usb_first (uspi);
E
Evgeniy Dushistov 已提交
731
	ucg = ubh_get_ucg(UCPI_UBH(ucpi));
L
Linus Torvalds 已提交
732 733 734 735 736 737 738

	if (goal)
		start = ufs_dtogd(goal) >> 3;
	else
		start = ucpi->c_frotor >> 3;
		
	length = ((uspi->s_fpg + 7) >> 3) - start;
739
	loc = ubh_scanc(uspi, UCPI_UBH(ucpi), ucpi->c_freeoff + start, length,
L
Linus Torvalds 已提交
740 741
		(uspi->s_fpb == 8) ? ufs_fragtable_8fpb : ufs_fragtable_other,
		1 << (count - 1 + (uspi->s_fpb & 7))); 
742
	if (loc == 0) {
L
Linus Torvalds 已提交
743
		length = start + 1;
744 745 746 747 748 749 750 751 752 753
		loc = ubh_scanc(uspi, UCPI_UBH(ucpi), ucpi->c_freeoff, length,
				(uspi->s_fpb == 8) ? ufs_fragtable_8fpb :
				ufs_fragtable_other,
				1 << (count - 1 + (uspi->s_fpb & 7)));
		if (loc == 0) {
			ufs_error(sb, "ufs_bitmap_search",
				  "bitmap corrupted on cg %u, start %u,"
				  " length %u, count %u, freeoff %u\n",
				  ucpi->c_cgx, start, length, count,
				  ucpi->c_freeoff);
L
Linus Torvalds 已提交
754 755 756 757
			return (unsigned)-1;
		}
		start = 0;
	}
758
	result = (start + length - loc) << 3;
L
Linus Torvalds 已提交
759 760 761 762 763
	ucpi->c_frotor = result;

	/*
	 * found the byte in the map
	 */
764 765 766 767 768 769 770 771

	for (end = result + 8; result < end; result += uspi->s_fpb) {
		blockmap = ubh_blkmap(UCPI_UBH(ucpi), ucpi->c_freeoff, result);
		blockmap <<= 1;
		mask = mask_arr[count];
		want = want_arr[count];
		for (pos = 0; pos <= uspi->s_fpb - count; pos++) {
			if ((blockmap & mask) == want) {
E
Evgeniy Dushistov 已提交
772
				UFSD("EXIT, result %u\n", result);
773 774 775 776 777 778 779 780 781
				return result + pos;
 			}
			mask <<= 1;
			want <<= 1;
 		}
 	}

	ufs_error(sb, "ufs_bitmap_search", "block not in map on cg %u\n",
		  ucpi->c_cgx);
E
Evgeniy Dushistov 已提交
782
	UFSD("EXIT (FAILED)\n");
L
Linus Torvalds 已提交
783 784 785 786 787 788 789 790 791 792 793 794 795 796
	return (unsigned)-1;
}

static void ufs_clusteracct(struct super_block * sb,
	struct ufs_cg_private_info * ucpi, unsigned blkno, int cnt)
{
	struct ufs_sb_private_info * uspi;
	int i, start, end, forw, back;
	
	uspi = UFS_SB(sb)->s_uspi;
	if (uspi->s_contigsumsize <= 0)
		return;

	if (cnt > 0)
E
Evgeniy Dushistov 已提交
797
		ubh_setbit(UCPI_UBH(ucpi), ucpi->c_clusteroff, blkno);
L
Linus Torvalds 已提交
798
	else
E
Evgeniy Dushistov 已提交
799
		ubh_clrbit(UCPI_UBH(ucpi), ucpi->c_clusteroff, blkno);
L
Linus Torvalds 已提交
800 801 802 803 804 805 806 807

	/*
	 * Find the size of the cluster going forward.
	 */
	start = blkno + 1;
	end = start + uspi->s_contigsumsize;
	if ( end >= ucpi->c_nclusterblks)
		end = ucpi->c_nclusterblks;
E
Evgeniy Dushistov 已提交
808
	i = ubh_find_next_zero_bit (UCPI_UBH(ucpi), ucpi->c_clusteroff, end, start);
L
Linus Torvalds 已提交
809 810 811 812 813 814 815 816 817 818 819
	if (i > end)
		i = end;
	forw = i - start;
	
	/*
	 * Find the size of the cluster going backward.
	 */
	start = blkno - 1;
	end = start - uspi->s_contigsumsize;
	if (end < 0 ) 
		end = -1;
E
Evgeniy Dushistov 已提交
820
	i = ubh_find_last_zero_bit (UCPI_UBH(ucpi), ucpi->c_clusteroff, start, end);
L
Linus Torvalds 已提交
821 822 823 824 825 826 827 828 829 830 831
	if ( i < end) 
		i = end;
	back = start - i;
	
	/*
	 * Account for old cluster and the possibly new forward and
	 * back clusters.
	 */
	i = back + forw + 1;
	if (i > uspi->s_contigsumsize)
		i = uspi->s_contigsumsize;
E
Evgeniy Dushistov 已提交
832
	fs32_add(sb, (__fs32*)ubh_get_addr(UCPI_UBH(ucpi), ucpi->c_clustersumoff + (i << 2)), cnt);
L
Linus Torvalds 已提交
833
	if (back > 0)
E
Evgeniy Dushistov 已提交
834
		fs32_sub(sb, (__fs32*)ubh_get_addr(UCPI_UBH(ucpi), ucpi->c_clustersumoff + (back << 2)), cnt);
L
Linus Torvalds 已提交
835
	if (forw > 0)
E
Evgeniy Dushistov 已提交
836
		fs32_sub(sb, (__fs32*)ubh_get_addr(UCPI_UBH(ucpi), ucpi->c_clustersumoff + (forw << 2)), cnt);
L
Linus Torvalds 已提交
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
}


static unsigned char ufs_fragtable_8fpb[] = {
	0x00, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x04, 0x01, 0x01, 0x01, 0x03, 0x02, 0x03, 0x04, 0x08,
	0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x02, 0x03, 0x03, 0x02, 0x04, 0x05, 0x08, 0x10,
	0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x01, 0x01, 0x01, 0x03, 0x03, 0x03, 0x05, 0x09,
	0x02, 0x03, 0x03, 0x02, 0x03, 0x03, 0x02, 0x06, 0x04, 0x05, 0x05, 0x06, 0x08, 0x09, 0x10, 0x20,
	0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x01, 0x01, 0x01, 0x03, 0x03, 0x03, 0x05, 0x09,	
	0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x03, 0x03, 0x03, 0x03, 0x05, 0x05, 0x09, 0x11,
	0x02, 0x03, 0x03, 0x02, 0x03, 0x03, 0x02, 0x06, 0x03, 0x03, 0x03, 0x03, 0x02, 0x03, 0x06, 0x0A,
	0x04, 0x05, 0x05, 0x06, 0x05, 0x05, 0x06, 0x04, 0x08, 0x09, 0x09, 0x0A, 0x10, 0x11, 0x20, 0x40,
	0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x01, 0x01, 0x01, 0x03, 0x03, 0x03, 0x05, 0x09,
	0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x03, 0x03, 0x03, 0x03, 0x05, 0x05, 0x09, 0x11,
	0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x01, 0x01, 0x01, 0x03, 0x03, 0x03, 0x05, 0x09,
	0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x07, 0x05, 0x05, 0x05, 0x07, 0x09, 0x09, 0x11, 0x21,
	0x02, 0x03, 0x03, 0x02, 0x03, 0x03, 0x02, 0x06, 0x03, 0x03, 0x03, 0x03, 0x02, 0x03, 0x06, 0x0A,
	0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x07, 0x02, 0x03, 0x03, 0x02, 0x06, 0x07, 0x0A, 0x12,
	0x04, 0x05, 0x05, 0x06, 0x05, 0x05, 0x06, 0x04, 0x05, 0x05, 0x05, 0x07, 0x06, 0x07, 0x04, 0x0C,
	0x08, 0x09, 0x09, 0x0A, 0x09, 0x09, 0x0A, 0x0C, 0x10, 0x11, 0x11, 0x12, 0x20, 0x21, 0x40, 0x80,
};

static unsigned char ufs_fragtable_other[] = {
	0x00, 0x16, 0x16, 0x2A, 0x16, 0x16, 0x26, 0x4E, 0x16, 0x16, 0x16, 0x3E, 0x2A, 0x3E, 0x4E, 0x8A,
	0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
	0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
	0x2A, 0x3E, 0x3E, 0x2A, 0x3E, 0x3E, 0x2E, 0x6E, 0x3E, 0x3E, 0x3E, 0x3E, 0x2A, 0x3E, 0x6E, 0xAA,
	0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
	0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
	0x26, 0x36, 0x36, 0x2E, 0x36, 0x36, 0x26, 0x6E, 0x36, 0x36, 0x36, 0x3E, 0x2E, 0x3E, 0x6E, 0xAE,
	0x4E, 0x5E, 0x5E, 0x6E, 0x5E, 0x5E, 0x6E, 0x4E, 0x5E, 0x5E, 0x5E, 0x7E, 0x6E, 0x7E, 0x4E, 0xCE,
	0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
	0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
	0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
	0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x7E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x7E, 0xBE,
	0x2A, 0x3E, 0x3E, 0x2A, 0x3E, 0x3E, 0x2E, 0x6E, 0x3E, 0x3E, 0x3E, 0x3E, 0x2A, 0x3E, 0x6E, 0xAA,
	0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x7E,	0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x7E, 0xBE,
	0x4E, 0x5E, 0x5E, 0x6E, 0x5E, 0x5E, 0x6E, 0x4E, 0x5E, 0x5E, 0x5E, 0x7E, 0x6E, 0x7E, 0x4E, 0xCE,
	0x8A, 0x9E, 0x9E, 0xAA, 0x9E, 0x9E, 0xAE, 0xCE, 0x9E, 0x9E, 0x9E, 0xBE, 0xAA, 0xBE, 0xCE, 0x8A,
};