balloc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:24k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/ufs/balloc.c
  3.  *
  4.  * Copyright (C) 1998
  5.  * Daniel Pirkl <daniel.pirkl@email.cz>
  6.  * Charles University, Faculty of Mathematics and Physics
  7.  */
  8. #include <linux/fs.h>
  9. #include <linux/ufs_fs.h>
  10. #include <linux/stat.h>
  11. #include <linux/sched.h>
  12. #include <linux/string.h>
  13. #include <linux/locks.h>
  14. #include <linux/quotaops.h>
  15. #include <asm/bitops.h>
  16. #include <asm/byteorder.h>
  17. #include "swab.h"
  18. #include "util.h"
  19. #undef UFS_BALLOC_DEBUG
  20. #ifdef UFS_BALLOC_DEBUG
  21. #define UFSD(x) printk("(%s, %d), %s:", __FILE__, __LINE__, __FUNCTION__); printk x;
  22. #else
  23. #define UFSD(x)
  24. #endif
  25. unsigned ufs_add_fragments (struct inode *, unsigned, unsigned, unsigned, int *);
  26. unsigned ufs_alloc_fragments (struct inode *, unsigned, unsigned, unsigned, int *);
  27. unsigned ufs_alloccg_block (struct inode *, struct ufs_cg_private_info *, unsigned, int *);
  28. unsigned ufs_bitmap_search (struct super_block *, struct ufs_cg_private_info *, unsigned, unsigned);
  29. static unsigned char ufs_fragtable_8fpb[], ufs_fragtable_other[];
  30. void ufs_clusteracct(struct super_block *, struct ufs_cg_private_info *, unsigned, int);
  31. /*
  32.  * Free 'count' fragments from fragment number 'fragment'
  33.  */
  34. void ufs_free_fragments (struct inode * inode, unsigned fragment, unsigned count) {
  35. struct super_block * sb;
  36. struct ufs_sb_private_info * uspi;
  37. struct ufs_super_block_first * usb1;
  38. struct ufs_cg_private_info * ucpi;
  39. struct ufs_cylinder_group * ucg;
  40. unsigned cgno, bit, end_bit, bbase, blkmap, i, blkno, cylno;
  41. sb = inode->i_sb;
  42. uspi = sb->u.ufs_sb.s_uspi;
  43. usb1 = ubh_get_usb_first(USPI_UBH);
  44. UFSD(("ENTER, fragment %u, count %un", fragment, count))
  45. if (ufs_fragnum(fragment) + count > uspi->s_fpg)
  46. ufs_error (sb, "ufs_free_fragments", "internal error");
  47. lock_super(sb);
  48. cgno = ufs_dtog(fragment);
  49. bit = ufs_dtogd(fragment);
  50. if (cgno >= uspi->s_ncg) {
  51. ufs_panic (sb, "ufs_free_fragments", "freeing blocks are outside device");
  52. goto failed;
  53. }
  54. ucpi = ufs_load_cylinder (sb, cgno);
  55. if (!ucpi) 
  56. goto failed;
  57. ucg = ubh_get_ucg (UCPI_UBH);
  58. if (!ufs_cg_chkmagic(sb, ucg)) {
  59. ufs_panic (sb, "ufs_free_fragments", "internal error, bad magic number on cg %u", cgno);
  60. goto failed;
  61. }
  62. end_bit = bit + count;
  63. bbase = ufs_blknum (bit);
  64. blkmap = ubh_blkmap (UCPI_UBH, ucpi->c_freeoff, bbase);
  65. ufs_fragacct (sb, blkmap, ucg->cg_frsum, -1);
  66. for (i = bit; i < end_bit; i++) {
  67. if (ubh_isclr (UCPI_UBH, ucpi->c_freeoff, i))
  68. ubh_setbit (UCPI_UBH, ucpi->c_freeoff, i);
  69. else ufs_error (sb, "ufs_free_fragments",
  70. "bit already cleared for fragment %u", i);
  71. }
  72. DQUOT_FREE_BLOCK (inode, count);
  73. fs32_add(sb, &ucg->cg_cs.cs_nffree, count);
  74. fs32_add(sb, &usb1->fs_cstotal.cs_nffree, count);
  75. fs32_add(sb, &sb->fs_cs(cgno).cs_nffree, count);
  76. blkmap = ubh_blkmap (UCPI_UBH, ucpi->c_freeoff, bbase);
  77. ufs_fragacct(sb, blkmap, ucg->cg_frsum, 1);
  78. /*
  79.  * Trying to reassemble free fragments into block
  80.  */
  81. blkno = ufs_fragstoblks (bbase);
  82. if (ubh_isblockset(UCPI_UBH, ucpi->c_freeoff, blkno)) {
  83. fs32_sub(sb, &ucg->cg_cs.cs_nffree, uspi->s_fpb);
  84. fs32_sub(sb, &usb1->fs_cstotal.cs_nffree, uspi->s_fpb);
  85. fs32_sub(sb, &sb->fs_cs(cgno).cs_nffree, uspi->s_fpb);
  86. if ((sb->u.ufs_sb.s_flags & UFS_CG_MASK) == UFS_CG_44BSD)
  87. ufs_clusteracct (sb, ucpi, blkno, 1);
  88. fs32_add(sb, &ucg->cg_cs.cs_nbfree, 1);
  89. fs32_add(sb, &usb1->fs_cstotal.cs_nbfree, 1);
  90. fs32_add(sb, &sb->fs_cs(cgno).cs_nbfree, 1);
  91. cylno = ufs_cbtocylno (bbase);
  92. fs16_add(sb, &ubh_cg_blks(ucpi, cylno, ufs_cbtorpos(bbase)), 1);
  93. fs32_add(sb, &ubh_cg_blktot(ucpi, cylno), 1);
  94. }
  95. ubh_mark_buffer_dirty (USPI_UBH);
  96. ubh_mark_buffer_dirty (UCPI_UBH);
  97. if (sb->s_flags & MS_SYNCHRONOUS) {
  98. ubh_ll_rw_block (WRITE, 1, (struct ufs_buffer_head **)&ucpi);
  99. ubh_wait_on_buffer (UCPI_UBH);
  100. }
  101. sb->s_dirt = 1;
  102. unlock_super (sb);
  103. UFSD(("EXITn"))
  104. return;
  105. failed:
  106. unlock_super (sb);
  107. UFSD(("EXIT (FAILED)n"))
  108. return;
  109. }
  110. /*
  111.  * Free 'count' fragments from fragment number 'fragment' (free whole blocks)
  112.  */
  113. void ufs_free_blocks (struct inode * inode, unsigned fragment, unsigned count) {
  114. struct super_block * sb;
  115. struct ufs_sb_private_info * uspi;
  116. struct ufs_super_block_first * usb1;
  117. struct ufs_cg_private_info * ucpi;
  118. struct ufs_cylinder_group * ucg;
  119. unsigned overflow, cgno, bit, end_bit, blkno, i, cylno;
  120. sb = inode->i_sb;
  121. uspi = sb->u.ufs_sb.s_uspi;
  122. usb1 = ubh_get_usb_first(USPI_UBH);
  123. UFSD(("ENTER, fragment %u, count %un", fragment, count))
  124. if ((fragment & uspi->s_fpbmask) || (count & uspi->s_fpbmask)) {
  125. ufs_error (sb, "ufs_free_blocks", "internal error, "
  126. "fragment %u, count %un", fragment, count);
  127. goto failed;
  128. }
  129. lock_super(sb);
  130. do_more:
  131. overflow = 0;
  132. cgno = ufs_dtog (fragment);
  133. bit = ufs_dtogd (fragment);
  134. if (cgno >= uspi->s_ncg) {
  135. ufs_panic (sb, "ufs_free_blocks", "freeing blocks are outside device");
  136. goto failed;
  137. }
  138. end_bit = bit + count;
  139. if (end_bit > uspi->s_fpg) {
  140. overflow = bit + count - uspi->s_fpg;
  141. count -= overflow;
  142. end_bit -= overflow;
  143. }
  144. ucpi = ufs_load_cylinder (sb, cgno);
  145. if (!ucpi) 
  146. goto failed;
  147. ucg = ubh_get_ucg (UCPI_UBH);
  148. if (!ufs_cg_chkmagic(sb, ucg)) {
  149. ufs_panic (sb, "ufs_free_blocks", "internal error, bad magic number on cg %u", cgno);
  150. goto failed;
  151. }
  152. for (i = bit; i < end_bit; i += uspi->s_fpb) {
  153. blkno = ufs_fragstoblks(i);
  154. if (ubh_isblockset(UCPI_UBH, ucpi->c_freeoff, blkno)) {
  155. ufs_error(sb, "ufs_free_blocks", "freeing free fragment");
  156. }
  157. ubh_setblock(UCPI_UBH, ucpi->c_freeoff, blkno);
  158. if ((sb->u.ufs_sb.s_flags & UFS_CG_MASK) == UFS_CG_44BSD)
  159. ufs_clusteracct (sb, ucpi, blkno, 1);
  160. DQUOT_FREE_BLOCK(inode, uspi->s_fpb);
  161. fs32_add(sb, &ucg->cg_cs.cs_nbfree, 1);
  162. fs32_add(sb, &usb1->fs_cstotal.cs_nbfree, 1);
  163. fs32_add(sb, &sb->fs_cs(cgno).cs_nbfree, 1);
  164. cylno = ufs_cbtocylno(i);
  165. fs16_add(sb, &ubh_cg_blks(ucpi, cylno, ufs_cbtorpos(i)), 1);
  166. fs32_add(sb, &ubh_cg_blktot(ucpi, cylno), 1);
  167. }
  168. ubh_mark_buffer_dirty (USPI_UBH);
  169. ubh_mark_buffer_dirty (UCPI_UBH);
  170. if (sb->s_flags & MS_SYNCHRONOUS) {
  171. ubh_ll_rw_block (WRITE, 1, (struct ufs_buffer_head **)&ucpi);
  172. ubh_wait_on_buffer (UCPI_UBH);
  173. }
  174. if (overflow) {
  175. fragment += count;
  176. count = overflow;
  177. goto do_more;
  178. }
  179. sb->s_dirt = 1;
  180. unlock_super (sb);
  181. UFSD(("EXITn"))
  182. return;
  183. failed:
  184. unlock_super (sb);
  185. UFSD(("EXIT (FAILED)n"))
  186. return;
  187. }
  188. #define NULLIFY_FRAGMENTS 
  189. for (i = oldcount; i < newcount; i++) { 
  190. bh = sb_getblk(sb, result + i); 
  191. memset (bh->b_data, 0, sb->s_blocksize); 
  192. mark_buffer_uptodate(bh, 1); 
  193. mark_buffer_dirty (bh); 
  194. if (IS_SYNC(inode)) { 
  195. ll_rw_block (WRITE, 1, &bh); 
  196. wait_on_buffer (bh); 
  197. brelse (bh); 
  198. }
  199. unsigned ufs_new_fragments (struct inode * inode, u32 * p, unsigned fragment,
  200. unsigned goal, unsigned count, int * err )
  201. {
  202. struct super_block * sb;
  203. struct ufs_sb_private_info * uspi;
  204. struct ufs_super_block_first * usb1;
  205. struct buffer_head * bh;
  206. unsigned cgno, oldcount, newcount, tmp, request, i, result;
  207. UFSD(("ENTER, ino %lu, fragment %u, goal %u, count %un", inode->i_ino, fragment, goal, count))
  208. sb = inode->i_sb;
  209. uspi = sb->u.ufs_sb.s_uspi;
  210. usb1 = ubh_get_usb_first(USPI_UBH);
  211. *err = -ENOSPC;
  212. lock_super (sb);
  213. tmp = fs32_to_cpu(sb, *p);
  214. if (count + ufs_fragnum(fragment) > uspi->s_fpb) {
  215. ufs_warning (sb, "ufs_new_fragments", "internal warning"
  216. " fragment %u, count %u", fragment, count);
  217. count = uspi->s_fpb - ufs_fragnum(fragment); 
  218. }
  219. oldcount = ufs_fragnum (fragment);
  220. newcount = oldcount + count;
  221. /*
  222.  * Somebody else has just allocated our fragments
  223.  */
  224. if (oldcount) {
  225. if (!tmp) {
  226. ufs_error (sb, "ufs_new_fragments", "internal error, "
  227. "fragment %u, tmp %un", fragment, tmp);
  228. unlock_super (sb);
  229. return (unsigned)-1;
  230. }
  231. if (fragment < inode->u.ufs_i.i_lastfrag) {
  232. UFSD(("EXIT (ALREADY ALLOCATED)n"))
  233. unlock_super (sb);
  234. return 0;
  235. }
  236. }
  237. else {
  238. if (tmp) {
  239. UFSD(("EXIT (ALREADY ALLOCATED)n"))
  240. unlock_super(sb);
  241. return 0;
  242. }
  243. }
  244. /*
  245.  * There is not enough space for user on the device
  246.  */
  247. if (!capable(CAP_SYS_RESOURCE) && ufs_freespace(usb1, UFS_MINFREE) <= 0) {
  248. unlock_super (sb);
  249. UFSD(("EXIT (FAILED)n"))
  250. return 0;
  251. }
  252. if (goal >= uspi->s_size) 
  253. goal = 0;
  254. if (goal == 0) 
  255. cgno = ufs_inotocg (inode->i_ino);
  256. else
  257. cgno = ufs_dtog (goal);
  258.  
  259. /*
  260.  * allocate new fragment
  261.  */
  262. if (oldcount == 0) {
  263. result = ufs_alloc_fragments (inode, cgno, goal, count, err);
  264. if (result) {
  265. *p = cpu_to_fs32(sb, result);
  266. *err = 0;
  267. inode->i_blocks += count << uspi->s_nspfshift;
  268. inode->u.ufs_i.i_lastfrag = max_t(u32, inode->u.ufs_i.i_lastfrag, fragment + count);
  269. NULLIFY_FRAGMENTS
  270. }
  271. unlock_super(sb);
  272. UFSD(("EXIT, result %un", result))
  273. return result;
  274. }
  275. /*
  276.  * resize block
  277.  */
  278. result = ufs_add_fragments (inode, tmp, oldcount, newcount, err);
  279. if (result) {
  280. *err = 0;
  281. inode->i_blocks += count << uspi->s_nspfshift;
  282. inode->u.ufs_i.i_lastfrag = max_t(u32, inode->u.ufs_i.i_lastfrag, fragment + count);
  283. NULLIFY_FRAGMENTS
  284. unlock_super(sb);
  285. UFSD(("EXIT, result %un", result))
  286. return result;
  287. }
  288. /*
  289.  * allocate new block and move data
  290.  */
  291. switch (fs32_to_cpu(sb, usb1->fs_optim)) {
  292.     case UFS_OPTSPACE:
  293. request = newcount;
  294. if (uspi->s_minfree < 5 || fs32_to_cpu(sb, usb1->fs_cstotal.cs_nffree) 
  295.     > uspi->s_dsize * uspi->s_minfree / (2 * 100) )
  296. break;
  297. usb1->fs_optim = cpu_to_fs32(sb, UFS_OPTTIME);
  298. break;
  299.     default:
  300. usb1->fs_optim = cpu_to_fs32(sb, UFS_OPTTIME);
  301.     case UFS_OPTTIME:
  302. request = uspi->s_fpb;
  303. if (fs32_to_cpu(sb, usb1->fs_cstotal.cs_nffree) < uspi->s_dsize *
  304.     (uspi->s_minfree - 2) / 100)
  305. break;
  306. usb1->fs_optim = cpu_to_fs32(sb, UFS_OPTTIME);
  307. break;
  308. }
  309. result = ufs_alloc_fragments (inode, cgno, goal, request, err);
  310. if (result) {
  311. for (i = 0; i < oldcount; i++) {
  312. bh = sb_bread(sb, tmp + i);
  313. if(bh)
  314. {
  315. mark_buffer_clean (bh);
  316. bh->b_blocknr = result + i;
  317. mark_buffer_dirty (bh);
  318. if (IS_SYNC(inode)) {
  319. ll_rw_block (WRITE, 1, &bh);
  320. wait_on_buffer (bh);
  321. }
  322. brelse (bh);
  323. }
  324. else
  325. {
  326. printk(KERN_ERR "ufs_new_fragments: bread failn");
  327. return 0;
  328. }
  329. }
  330. *p = cpu_to_fs32(sb, result);
  331. *err = 0;
  332. inode->i_blocks += count << uspi->s_nspfshift;
  333. inode->u.ufs_i.i_lastfrag = max_t(u32, inode->u.ufs_i.i_lastfrag, fragment + count);
  334. NULLIFY_FRAGMENTS
  335. unlock_super(sb);
  336. if (newcount < request)
  337. ufs_free_fragments (inode, result + newcount, request - newcount);
  338. ufs_free_fragments (inode, tmp, oldcount);
  339. UFSD(("EXIT, result %un", result))
  340. return result;
  341. }
  342. unlock_super(sb);
  343. UFSD(("EXIT (FAILED)n"))
  344. return 0;
  345. }
  346. unsigned ufs_add_fragments (struct inode * inode, unsigned fragment,
  347. unsigned oldcount, unsigned newcount, int * err)
  348. {
  349. struct super_block * sb;
  350. struct ufs_sb_private_info * uspi;
  351. struct ufs_super_block_first * usb1;
  352. struct ufs_cg_private_info * ucpi;
  353. struct ufs_cylinder_group * ucg;
  354. unsigned cgno, fragno, fragoff, count, fragsize, i;
  355. UFSD(("ENTER, fragment %u, oldcount %u, newcount %un", fragment, oldcount, newcount))
  356. sb = inode->i_sb;
  357. uspi = sb->u.ufs_sb.s_uspi;
  358. usb1 = ubh_get_usb_first (USPI_UBH);
  359. count = newcount - oldcount;
  360. cgno = ufs_dtog(fragment);
  361. if (sb->fs_cs(cgno).cs_nffree < count)
  362. return 0;
  363. if ((ufs_fragnum (fragment) + newcount) > uspi->s_fpb)
  364. return 0;
  365. ucpi = ufs_load_cylinder (sb, cgno);
  366. if (!ucpi)
  367. return 0;
  368. ucg = ubh_get_ucg (UCPI_UBH);
  369. if (!ufs_cg_chkmagic(sb, ucg)) {
  370. ufs_panic (sb, "ufs_add_fragments",
  371. "internal error, bad magic number on cg %u", cgno);
  372. return 0;
  373. }
  374. fragno = ufs_dtogd (fragment);
  375. fragoff = ufs_fragnum (fragno);
  376. for (i = oldcount; i < newcount; i++)
  377. if (ubh_isclr (UCPI_UBH, ucpi->c_freeoff, fragno + i))
  378. return 0;
  379. /*
  380.  * Block can be extended
  381.  */
  382. ucg->cg_time = cpu_to_fs32(sb, CURRENT_TIME);
  383. for (i = newcount; i < (uspi->s_fpb - fragoff); i++)
  384. if (ubh_isclr (UCPI_UBH, ucpi->c_freeoff, fragno + i))
  385. break;
  386. fragsize = i - oldcount;
  387. if (!fs32_to_cpu(sb, ucg->cg_frsum[fragsize]))
  388. ufs_panic (sb, "ufs_add_fragments",
  389. "internal error or corrupted bitmap on cg %u", cgno);
  390. fs32_sub(sb, &ucg->cg_frsum[fragsize], 1);
  391. if (fragsize != count)
  392. fs32_add(sb, &ucg->cg_frsum[fragsize - count], 1);
  393. for (i = oldcount; i < newcount; i++)
  394. ubh_clrbit (UCPI_UBH, ucpi->c_freeoff, fragno + i);
  395. if(DQUOT_ALLOC_BLOCK(inode, count)) {
  396. *err = -EDQUOT;
  397. return 0;
  398. }
  399. fs32_sub(sb, &ucg->cg_cs.cs_nffree, count);
  400. fs32_sub(sb, &sb->fs_cs(cgno).cs_nffree, count);
  401. fs32_sub(sb, &usb1->fs_cstotal.cs_nffree, count);
  402. ubh_mark_buffer_dirty (USPI_UBH);
  403. ubh_mark_buffer_dirty (UCPI_UBH);
  404. if (sb->s_flags & MS_SYNCHRONOUS) {
  405. ubh_ll_rw_block (WRITE, 1, (struct ufs_buffer_head **)&ucpi);
  406. ubh_wait_on_buffer (UCPI_UBH);
  407. }
  408. sb->s_dirt = 1;
  409. UFSD(("EXIT, fragment %un", fragment))
  410. return fragment;
  411. }
  412. #define UFS_TEST_FREE_SPACE_CG 
  413. ucg = (struct ufs_cylinder_group *) sb->u.ufs_sb.s_ucg[cgno]->b_data; 
  414. if (fs32_to_cpu(sb, ucg->cg_cs.cs_nbfree)) 
  415. goto cg_found; 
  416. for (k = count; k < uspi->s_fpb; k++) 
  417. if (fs32_to_cpu(sb, ucg->cg_frsum[k])) 
  418. goto cg_found; 
  419. unsigned ufs_alloc_fragments (struct inode * inode, unsigned cgno,
  420. unsigned goal, unsigned count, int * err)
  421. {
  422. struct super_block * sb;
  423. struct ufs_sb_private_info * uspi;
  424. struct ufs_super_block_first * usb1;
  425. struct ufs_cg_private_info * ucpi;
  426. struct ufs_cylinder_group * ucg;
  427. unsigned oldcg, i, j, k, result, allocsize;
  428. UFSD(("ENTER, ino %lu, cgno %u, goal %u, count %un", inode->i_ino, cgno, goal, count))
  429. sb = inode->i_sb;
  430. uspi = sb->u.ufs_sb.s_uspi;
  431. usb1 = ubh_get_usb_first(USPI_UBH);
  432. oldcg = cgno;
  433. /*
  434.  * 1. searching on preferred cylinder group
  435.  */
  436. UFS_TEST_FREE_SPACE_CG
  437. /*
  438.  * 2. quadratic rehash
  439.  */
  440. for (j = 1; j < uspi->s_ncg; j *= 2) {
  441. cgno += j;
  442. if (cgno >= uspi->s_ncg) 
  443. cgno -= uspi->s_ncg;
  444. UFS_TEST_FREE_SPACE_CG
  445. }
  446. /*
  447.  * 3. brute force search
  448.  * We start at i = 2 ( 0 is checked at 1.step, 1 at 2.step )
  449.  */
  450. cgno = (oldcg + 1) % uspi->s_ncg;
  451. for (j = 2; j < uspi->s_ncg; j++) {
  452. cgno++;
  453. if (cgno >= uspi->s_ncg)
  454. cgno = 0;
  455. UFS_TEST_FREE_SPACE_CG
  456. }
  457. UFSD(("EXIT (FAILED)n"))
  458. return 0;
  459. cg_found:
  460. ucpi = ufs_load_cylinder (sb, cgno);
  461. if (!ucpi)
  462. return 0;
  463. ucg = ubh_get_ucg (UCPI_UBH);
  464. if (!ufs_cg_chkmagic(sb, ucg)) 
  465. ufs_panic (sb, "ufs_alloc_fragments",
  466. "internal error, bad magic number on cg %u", cgno);
  467. ucg->cg_time = cpu_to_fs32(sb, CURRENT_TIME);
  468. if (count == uspi->s_fpb) {
  469. result = ufs_alloccg_block (inode, ucpi, goal, err);
  470. if (result == (unsigned)-1)
  471. return 0;
  472. goto succed;
  473. }
  474. for (allocsize = count; allocsize < uspi->s_fpb; allocsize++)
  475. if (fs32_to_cpu(sb, ucg->cg_frsum[allocsize]) != 0)
  476. break;
  477. if (allocsize == uspi->s_fpb) {
  478. result = ufs_alloccg_block (inode, ucpi, goal, err);
  479. if (result == (unsigned)-1)
  480. return 0;
  481. goal = ufs_dtogd (result);
  482. for (i = count; i < uspi->s_fpb; i++)
  483. ubh_setbit (UCPI_UBH, ucpi->c_freeoff, goal + i);
  484. i = uspi->s_fpb - count;
  485. DQUOT_FREE_BLOCK(inode, i);
  486. fs32_add(sb, &ucg->cg_cs.cs_nffree, i);
  487. fs32_add(sb, &usb1->fs_cstotal.cs_nffree, i);
  488. fs32_add(sb, &sb->fs_cs(cgno).cs_nffree, i);
  489. fs32_add(sb, &ucg->cg_frsum[i], 1);
  490. goto succed;
  491. }
  492. result = ufs_bitmap_search (sb, ucpi, goal, allocsize);
  493. if (result == (unsigned)-1)
  494. return 0;
  495. if(DQUOT_ALLOC_BLOCK(inode, count)) {
  496. *err = -EDQUOT;
  497. return 0;
  498. }
  499. for (i = 0; i < count; i++)
  500. ubh_clrbit (UCPI_UBH, ucpi->c_freeoff, result + i);
  501. fs32_sub(sb, &ucg->cg_cs.cs_nffree, count);
  502. fs32_sub(sb, &usb1->fs_cstotal.cs_nffree, count);
  503. fs32_sub(sb, &sb->fs_cs(cgno).cs_nffree, count);
  504. fs32_sub(sb, &ucg->cg_frsum[allocsize], 1);
  505. if (count != allocsize)
  506. fs32_add(sb, &ucg->cg_frsum[allocsize - count], 1);
  507. succed:
  508. ubh_mark_buffer_dirty (USPI_UBH);
  509. ubh_mark_buffer_dirty (UCPI_UBH);
  510. if (sb->s_flags & MS_SYNCHRONOUS) {
  511. ubh_ll_rw_block (WRITE, 1, (struct ufs_buffer_head **)&ucpi);
  512. ubh_wait_on_buffer (UCPI_UBH);
  513. }
  514. sb->s_dirt = 1;
  515. result += cgno * uspi->s_fpg;
  516. UFSD(("EXIT3, result %un", result))
  517. return result;
  518. }
  519. unsigned ufs_alloccg_block (struct inode * inode,
  520. struct ufs_cg_private_info * ucpi, unsigned goal, int * err)
  521. {
  522. struct super_block * sb;
  523. struct ufs_sb_private_info * uspi;
  524. struct ufs_super_block_first * usb1;
  525. struct ufs_cylinder_group * ucg;
  526. unsigned result, cylno, blkno;
  527. UFSD(("ENTER, goal %un", goal))
  528. sb = inode->i_sb;
  529. uspi = sb->u.ufs_sb.s_uspi;
  530. usb1 = ubh_get_usb_first(USPI_UBH);
  531. ucg = ubh_get_ucg(UCPI_UBH);
  532. if (goal == 0) {
  533. goal = ucpi->c_rotor;
  534. goto norot;
  535. }
  536. goal = ufs_blknum (goal);
  537. goal = ufs_dtogd (goal);
  538. /*
  539.  * If the requested block is available, use it.
  540.  */
  541. if (ubh_isblockset(UCPI_UBH, ucpi->c_freeoff, ufs_fragstoblks(goal))) {
  542. result = goal;
  543. goto gotit;
  544. }
  545. norot:
  546. result = ufs_bitmap_search (sb, ucpi, goal, uspi->s_fpb);
  547. if (result == (unsigned)-1)
  548. return (unsigned)-1;
  549. ucpi->c_rotor = result;
  550. gotit:
  551. blkno = ufs_fragstoblks(result);
  552. ubh_clrblock (UCPI_UBH, ucpi->c_freeoff, blkno);
  553. if ((sb->u.ufs_sb.s_flags & UFS_CG_MASK) == UFS_CG_44BSD)
  554. ufs_clusteracct (sb, ucpi, blkno, -1);
  555. if(DQUOT_ALLOC_BLOCK(inode, uspi->s_fpb)) {
  556. *err = -EDQUOT;
  557. return (unsigned)-1;
  558. }
  559. fs32_sub(sb, &ucg->cg_cs.cs_nbfree, 1);
  560. fs32_sub(sb, &usb1->fs_cstotal.cs_nbfree, 1);
  561. fs32_sub(sb, &sb->fs_cs(ucpi->c_cgx).cs_nbfree, 1);
  562. cylno = ufs_cbtocylno(result);
  563. fs16_sub(sb, &ubh_cg_blks(ucpi, cylno, ufs_cbtorpos(result)), 1);
  564. fs32_sub(sb, &ubh_cg_blktot(ucpi, cylno), 1);
  565. UFSD(("EXIT, result %un", result))
  566. return result;
  567. }
  568. unsigned ufs_bitmap_search (struct super_block * sb,
  569. struct ufs_cg_private_info * ucpi, unsigned goal, unsigned count)
  570. {
  571. struct ufs_sb_private_info * uspi;
  572. struct ufs_super_block_first * usb1;
  573. struct ufs_cylinder_group * ucg;
  574. unsigned start, length, location, result;
  575. unsigned possition, fragsize, blockmap, mask;
  576. UFSD(("ENTER, cg %u, goal %u, count %un", ucpi->c_cgx, goal, count))
  577. uspi = sb->u.ufs_sb.s_uspi;
  578. usb1 = ubh_get_usb_first (USPI_UBH);
  579. ucg = ubh_get_ucg(UCPI_UBH);
  580. if (goal)
  581. start = ufs_dtogd(goal) >> 3;
  582. else
  583. start = ucpi->c_frotor >> 3;
  584. length = ((uspi->s_fpg + 7) >> 3) - start;
  585. location = ubh_scanc(UCPI_UBH, ucpi->c_freeoff + start, length,
  586. (uspi->s_fpb == 8) ? ufs_fragtable_8fpb : ufs_fragtable_other,
  587. 1 << (count - 1 + (uspi->s_fpb & 7))); 
  588. if (location == 0) {
  589. length = start + 1;
  590. location = ubh_scanc(UCPI_UBH, ucpi->c_freeoff, length, 
  591. (uspi->s_fpb == 8) ? ufs_fragtable_8fpb : ufs_fragtable_other,
  592. 1 << (count - 1 + (uspi->s_fpb & 7)));
  593. if (location == 0) {
  594. ufs_error (sb, "ufs_bitmap_search",
  595. "bitmap corrupted on cg %u, start %u, length %u, count %u, freeoff %un",
  596. ucpi->c_cgx, start, length, count, ucpi->c_freeoff);
  597. return (unsigned)-1;
  598. }
  599. start = 0;
  600. }
  601. result = (start + length - location) << 3;
  602. ucpi->c_frotor = result;
  603. /*
  604.  * found the byte in the map
  605.  */
  606. blockmap = ubh_blkmap(UCPI_UBH, ucpi->c_freeoff, result);
  607. fragsize = 0;
  608. for (possition = 0, mask = 1; possition < 8; possition++, mask <<= 1) {
  609. if (blockmap & mask) {
  610. if (!(possition & uspi->s_fpbmask))
  611. fragsize = 1;
  612. else 
  613. fragsize++;
  614. }
  615. else {
  616. if (fragsize == count) {
  617. result += possition - count;
  618. UFSD(("EXIT, result %un", result))
  619. return result;
  620. }
  621. fragsize = 0;
  622. }
  623. }
  624. if (fragsize == count) {
  625. result += possition - count;
  626. UFSD(("EXIT, result %un", result))
  627. return result;
  628. }
  629. ufs_error (sb, "ufs_bitmap_search", "block not in map on cg %un", ucpi->c_cgx);
  630. UFSD(("EXIT (FAILED)n"))
  631. return (unsigned)-1;
  632. }
  633. void ufs_clusteracct(struct super_block * sb, 
  634. struct ufs_cg_private_info * ucpi, unsigned blkno, int cnt)
  635. {
  636. struct ufs_sb_private_info * uspi;
  637. int i, start, end, forw, back;
  638. uspi = sb->u.ufs_sb.s_uspi;
  639. if (uspi->s_contigsumsize <= 0)
  640. return;
  641. if (cnt > 0)
  642. ubh_setbit(UCPI_UBH, ucpi->c_clusteroff, blkno);
  643. else
  644. ubh_clrbit(UCPI_UBH, ucpi->c_clusteroff, blkno);
  645. /*
  646.  * Find the size of the cluster going forward.
  647.  */
  648. start = blkno + 1;
  649. end = start + uspi->s_contigsumsize;
  650. if ( end >= ucpi->c_nclusterblks)
  651. end = ucpi->c_nclusterblks;
  652. i = ubh_find_next_zero_bit (UCPI_UBH, ucpi->c_clusteroff, end, start);
  653. if (i > end)
  654. i = end;
  655. forw = i - start;
  656. /*
  657.  * Find the size of the cluster going backward.
  658.  */
  659. start = blkno - 1;
  660. end = start - uspi->s_contigsumsize;
  661. if (end < 0 ) 
  662. end = -1;
  663. i = ubh_find_last_zero_bit (UCPI_UBH, ucpi->c_clusteroff, start, end);
  664. if ( i < end) 
  665. i = end;
  666. back = start - i;
  667. /*
  668.  * Account for old cluster and the possibly new forward and
  669.  * back clusters.
  670.  */
  671. i = back + forw + 1;
  672. if (i > uspi->s_contigsumsize)
  673. i = uspi->s_contigsumsize;
  674. fs32_add(sb, (u32*)ubh_get_addr(UCPI_UBH, ucpi->c_clustersumoff + (i << 2)), cnt);
  675. if (back > 0)
  676. fs32_sub(sb, (u32*)ubh_get_addr(UCPI_UBH, ucpi->c_clustersumoff + (back << 2)), cnt);
  677. if (forw > 0)
  678. fs32_sub(sb, (u32*)ubh_get_addr(UCPI_UBH, ucpi->c_clustersumoff + (forw << 2)), cnt);
  679. }
  680. static unsigned char ufs_fragtable_8fpb[] = {
  681. 0x00, 0x01, 0x01, 0x02, 0x01, 0x01, 0x02, 0x04, 0x01, 0x01, 0x01, 0x03, 0x02, 0x03, 0x04, 0x08,
  682. 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x02, 0x03, 0x03, 0x02, 0x04, 0x05, 0x08, 0x10,
  683. 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x01, 0x01, 0x01, 0x03, 0x03, 0x03, 0x05, 0x09,
  684. 0x02, 0x03, 0x03, 0x02, 0x03, 0x03, 0x02, 0x06, 0x04, 0x05, 0x05, 0x06, 0x08, 0x09, 0x10, 0x20,
  685. 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x01, 0x01, 0x01, 0x03, 0x03, 0x03, 0x05, 0x09,
  686. 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x03, 0x03, 0x03, 0x03, 0x05, 0x05, 0x09, 0x11,
  687. 0x02, 0x03, 0x03, 0x02, 0x03, 0x03, 0x02, 0x06, 0x03, 0x03, 0x03, 0x03, 0x02, 0x03, 0x06, 0x0A,
  688. 0x04, 0x05, 0x05, 0x06, 0x05, 0x05, 0x06, 0x04, 0x08, 0x09, 0x09, 0x0A, 0x10, 0x11, 0x20, 0x40,
  689. 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x01, 0x01, 0x01, 0x03, 0x03, 0x03, 0x05, 0x09,
  690. 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x03, 0x03, 0x03, 0x03, 0x05, 0x05, 0x09, 0x11,
  691. 0x01, 0x01, 0x01, 0x03, 0x01, 0x01, 0x03, 0x05, 0x01, 0x01, 0x01, 0x03, 0x03, 0x03, 0x05, 0x09,
  692. 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x07, 0x05, 0x05, 0x05, 0x07, 0x09, 0x09, 0x11, 0x21,
  693. 0x02, 0x03, 0x03, 0x02, 0x03, 0x03, 0x02, 0x06, 0x03, 0x03, 0x03, 0x03, 0x02, 0x03, 0x06, 0x0A,
  694. 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x07, 0x02, 0x03, 0x03, 0x02, 0x06, 0x07, 0x0A, 0x12,
  695. 0x04, 0x05, 0x05, 0x06, 0x05, 0x05, 0x06, 0x04, 0x05, 0x05, 0x05, 0x07, 0x06, 0x07, 0x04, 0x0C,
  696. 0x08, 0x09, 0x09, 0x0A, 0x09, 0x09, 0x0A, 0x0C, 0x10, 0x11, 0x11, 0x12, 0x20, 0x21, 0x40, 0x80,
  697. };
  698. static unsigned char ufs_fragtable_other[] = {
  699. 0x00, 0x16, 0x16, 0x2A, 0x16, 0x16, 0x26, 0x4E, 0x16, 0x16, 0x16, 0x3E, 0x2A, 0x3E, 0x4E, 0x8A,
  700. 0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
  701. 0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
  702. 0x2A, 0x3E, 0x3E, 0x2A, 0x3E, 0x3E, 0x2E, 0x6E, 0x3E, 0x3E, 0x3E, 0x3E, 0x2A, 0x3E, 0x6E, 0xAA,
  703. 0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
  704. 0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
  705. 0x26, 0x36, 0x36, 0x2E, 0x36, 0x36, 0x26, 0x6E, 0x36, 0x36, 0x36, 0x3E, 0x2E, 0x3E, 0x6E, 0xAE,
  706. 0x4E, 0x5E, 0x5E, 0x6E, 0x5E, 0x5E, 0x6E, 0x4E, 0x5E, 0x5E, 0x5E, 0x7E, 0x6E, 0x7E, 0x4E, 0xCE,
  707. 0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
  708. 0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
  709. 0x16, 0x16, 0x16, 0x3E, 0x16, 0x16, 0x36, 0x5E, 0x16, 0x16, 0x16, 0x3E, 0x3E, 0x3E, 0x5E, 0x9E,
  710. 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x7E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x7E, 0xBE,
  711. 0x2A, 0x3E, 0x3E, 0x2A, 0x3E, 0x3E, 0x2E, 0x6E, 0x3E, 0x3E, 0x3E, 0x3E, 0x2A, 0x3E, 0x6E, 0xAA,
  712. 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x7E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x3E, 0x7E, 0xBE,
  713. 0x4E, 0x5E, 0x5E, 0x6E, 0x5E, 0x5E, 0x6E, 0x4E, 0x5E, 0x5E, 0x5E, 0x7E, 0x6E, 0x7E, 0x4E, 0xCE,
  714. 0x8A, 0x9E, 0x9E, 0xAA, 0x9E, 0x9E, 0xAE, 0xCE, 0x9E, 0x9E, 0x9E, 0xBE, 0xAA, 0xBE, 0xCE, 0x8A,
  715. };