search for: bh

Displaying 20 results from an estimated 700 matches for "bh".

Did you mean: bhs
2001 Mar 30
1
Re: Bug in __invalidate_buffers?
...> (modulo the fact that it was missing a ')' at the end of the line) > but it hasn't really fixed the whole problem. If a file write is in > progress when invalidate_buffers() is called, I get an oops: > The oops is caused from __invalidate_buffers() calling put_last_free(bh) > on the device buffers (for buffers with b_count == 0 and not dirty), which > must conflict somehow with what jfs expects of the state of a buffer. It > seems we would not have this problem if bh->b_count was non-zero. I'm having a bit of a one-sided conversation here, but that&...
2000 Jan 27
6
EGD requirement a show stopper for me
On Thu, Jan 13, 2000 at 17:34:10, Andre Lucas wrote: > Subject: /dev/urandom > On Thu, Jan 13, 2000 at 09:24:01AM -0700, SysProg - Nathan Paul Simons wrote: > > On Thu, 13 Jan 2000, Ben Taylor wrote: > > > > > On Thu, 13 Jan 2000, Max Shaposhnikov wrote: > > > > why ssh1.27 doesn't requre /dev/urandom on solaris? > > > > i think the
2014 Nov 04
1
Linking to the BH package introduces CRAN warnings
Dear all, I'm working on a project that links to the BH package (http://cran.r-project.org/web/packages/BH/index.html). My packages doesn't call entry points which might terminate R nor write to stdout/stderr instead of to the console. However, it seems some of the codes in the BH package might. At any rate, when I include some boost headers such...
2004 Jun 06
1
[PATCH] use sb_getblk
...the latest 2.4 defintion, but I don't care for obsolete junk). Index: src/super.c =================================================================== --- src/super.c (revision 1014) +++ src/super.c (working copy) @@ -799,7 +799,7 @@ /* get first two blocks */ for (i=0; i<2; i++) { - bhs[i] = getblk (OCFS_GET_BLOCKDEV(sb), i, 512); + bhs[i] = sb_getblk(sb, i); if (bhs[i] == NULL) { LOG_ERROR_STATUS(status = -EIO); goto leave; Index: src/journal.c =================================================================== --- src/journal.c (revision 1014) +++ src/journal.c (wor...
2003 Jan 16
0
[PATCH] Using qstr in ext3_get_parent()
...* back to userspace. */ static struct dx_frame * -dx_probe(struct dentry *dentry, struct inode *dir, +dx_probe(struct qstr *entry, struct inode *dir, struct dx_hash_info *hinfo, struct dx_frame *frame_in, int *err) { unsigned count, indirect; @@ -328,8 +329,6 @@ u32 hash; frame->bh = NULL; - if (dentry) - dir = dentry->d_parent->d_inode; if (!(bh = ext3_bread (NULL,dir, 0, 0, err))) goto fail; root = (struct dx_root *) bh->b_data; @@ -345,8 +344,8 @@ } hinfo->hash_version = root->info.hash_version; hinfo->seed = EXT3_SB(dir->i_sb)->s_hash...
2023 Feb 27
0
[ANNOUNCE] font-bh-lucidatypewriter-100dpi 1.0.4
...Update configure.ac bug URL for gitlab migration gitlab CI: add a basic build test Build xz tarballs instead of bzip2 gitlab CI: stop requiring Signed-off-by in commits Switch to XORG_DEFAULT_NOCODE_OPTIONS Use COMPRESS_FLAGS to improve build reproducibility font-bh-lucidatypewriter-100dpi 1.0.4 Emil Velikov (1): autogen.sh: use quoted string variables Gaetan Nadon (2): config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES config: update AC_PREREQ statement to 2.60 Matthieu Herrb (1): Typo: font.dir -> fonts.dir Mihail...
2023 Feb 27
0
[ANNOUNCE] font-bh-lucidatypewriter-75dpi 1.0.4
...gration gitlab CI: add a basic build test Build xz tarballs instead of bzip2 Update README for gitlab migration gitlab CI: stop requiring Signed-off-by in commits Switch to XORG_DEFAULT_NOCODE_OPTIONS Use COMPRESS_FLAGS to improve build reproducibility font-bh-lucidatypewriter-75dpi 1.0.4 Emil Velikov (1): autogen.sh: use quoted string variables Gaetan Nadon (2): config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES config: update AC_PREREQ statement to 2.60 Matthieu Herrb (1): Typo: font.dir -> fonts.dir Mihail...
2023 Feb 27
0
[ANNOUNCE] font-bh-ttf 1.0.4
...ONFIGURE=1 Update README for gitlab migration Update configure.ac bug URL for gitlab migration gitlab CI: add a basic build test Build xz tarballs instead of bzip2 gitlab CI: stop requiring Signed-off-by in commits Switch to XORG_DEFAULT_NOCODE_OPTIONS font-bh-ttf 1.0.4 Emil Velikov (1): autogen.sh: use quoted string variables Gaetan Nadon (2): config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES config: update AC_PREREQ statement to 2.60 Matthieu Herrb (1): Typo: font.dir -> fonts.dir Mihail Konev (1): au...
2011 Mar 02
3
[LLVMdev] Compile C files to one .bc file
Hi I'm trying to compile the "bh" C program from the Olden benchmark to one bc file. # compile source files into an LLVM bitcode file llvm-gcc -emit-llvm -c args.c -o args.bc -w -DTORONTO llvm-gcc -emit-llvm -c newbh.c -o newbh.bc -w -DTORONTO llvm-gcc -emit-llvm -c util.c -o util.bc -w -DTORONTO llvm-gcc -emit-llvm -c walks...
2004 Jun 20
2
[PATCH] fixup journal-related ifdef mess
...start journal_start -#define ocfs_journal_stop journal_stop + +#define journal_start(journal, nblocks) \ + ocfs_journal_start(journal, nblocks) +#define journal_stop(handle) \ + ocfs_journal_stop(handle) + +/* these two gained another argument during 2.6 */ +#define journal_get_write_access(handle, bh, credits) \ + journal_get_write_access(handle, bh) +#define journal_get_undo_access(handle, bh, credits) \ + journal_get_undo_access(handle, bh) #endif @@ -165,7 +173,7 @@ down_read(&osb->journal->trans_barrier); /* actually start the transaction now */ - retval->k_handle =...
2009 Feb 12
2
[PATCH 1/1] OCFS2: add IO error check in ocfs2_get_sector() -v2
...y: Wengang wang <wen.gang.wang at oracle.com> -- Index: fs/ocfs2/super.c =================================================================== --- fs/ocfs2/super.c (revision 128) +++ fs/ocfs2/super.c (working copy) @@ -1203,6 +1203,12 @@ static int ocfs2_get_sector(struct super unlock_buffer(*bh); ll_rw_block(READ, 1, bh); wait_on_buffer(*bh); + if (!buffer_uptodate(*bh)) { + mlog_errno(-EIO); + brelse(*bh); + return -EIO; + } + return 0; }
2010 Nov 15
0
[ANNOUNCE] font releases, second and final part
...0.3.tar.bz2 http://xorg.freedesktop.org/archive/individual/font/font-arabic-misc-1.0.3.tar.gz MD5: 918457df65ef93f09969c6ab01071789 font-arabic-misc-1.0.3.tar.gz SHA1: 186b05721e6fea0c1b0d600704c67fdb0d777e55 font-arabic-misc-1.0.3.tar.gz http://xorg.freedesktop.org/archive/individual/font/font-bh-100dpi-1.0.3.tar.bz2 MD5: 9f11ade089d689b9d59e0f47d26f39cd font-bh-100dpi-1.0.3.tar.bz2 SHA1: 47d5e50be9e78695017650a088da52bfcf1eeb40 font-bh-100dpi-1.0.3.tar.bz2 http://xorg.freedesktop.org/archive/individual/font/font-bh-100dpi-1.0.3.tar.gz MD5: 09e63a5608000531179e1ab068a35878 font-bh-100...
2010 Mar 03
1
Help with multtest (rawp2adjp)
Hello R experts, I am trying to analyze this dataset and am stuck on this problem for quite some time now. I am using mt.rawp2adjp. the output that came out was a matrix with two colums since I had asked it to calculate the adjusted p values using one method. so it has the two columns as: rawp BH I combined these using cbind with my actual dataframe. checked using head all was fine. thereafter I am trying to extract the rows where the values in BH are below a particular value(alpha say 0.05): by the command: partMult <- subset(multData,BH < 0.05) this gives a error saying that the o...
2011 Oct 04
1
a question about sort and BH
...hsa-let-7a--PAPOLA 0.470451884 0.000221774 hsa-let-7a--NF2 0.469280186 0.000231065 hsa-let-7a--SLC17A5 0.454597978 0.000381713 hsa-let-7a--THOC2 0.447714054 0.000479322 hsa-let-7a--SMG7 0.444972282 0.000524129 2. I got the p.adjust.R from R source. In the method "BH", I am not clear with the code: i <- lp:1L o <- order(p, decreasing = TRUE) ro <- order(o) pmin(1, cummin( n / i * p[o] ))[ro] How to explain the first and the fourth row. ====================p.adjust.R======================================...
2001 May 16
1
Re: [linux-lvm] lvm deadlock with 2.4.x kernel?
...s related directly to invalidate_buffers() being called which then triggers refile_buffer() on a journaled buffer, which appears clean in all other ways according to the checks in refile_buffer(). The following is what I've got in __invalidate_buffers() right now. if (!bh->b_count && !buffer_journaled(bh) && (destroy_dirty_buffers || !buffer_dirty(bh))) put_last_free(bh); if (slept) goto again; Stephen suggested something along the...
2009 Apr 17
1
[PATCH 1/1] OCFS2: Log -EIO errors just when hit them.
...uild/fs/ocfs2/buffer_head_io.c --- ./linux-2.6.29.y.build/fs/ocfs2/buffer_head_io.c.orig 2009-04-17 13:55:52.000000000 +0800 +++ ./linux-2.6.29.y.build/fs/ocfs2/buffer_head_io.c 2009-04-17 14:19:54.000000000 +0800 @@ -91,6 +91,8 @@ int ocfs2_write_block(struct ocfs2_super * information for this bh as it's not marked locally * uptodate. */ ret = -EIO; + mlog(ML_ERROR, "writing block %llu failed with %d\n", + (u64)bh->b_blocknr, ret); put_bh(bh); } @@ -168,6 +170,8 @@ int ocfs2_read_blocks_sync(struct ocfs2_ * so we can safely record this and loop bac...
2018 Oct 25
1
Questions on Blocklinear Mipmaps and auto-sizing
...test/hw/memory/g80-surface.html#textures-mipmapping-and-arrays the texture unit auto resizes mipmaps' blocks but how do I know how many blocks each one uses? I'm currently using this algorithm: u32 height = MipHeight(mip_level); u32 gobs_in_y = (height + 7) / 8; u32 bh = block_height; // Magical block resizing algorithm, needs more testing. while (bh > 1 && (gobs_in_y + bh - 1) / bh <= 2) { bh >>= 1; } return bh; it works 95% of the time but doesn't fit the correct block size all the time. Do you...
2009 Feb 13
1
[PATCH 1/1] OCFS2: add IO error check in ocfs2_get_sector() -v3
...Wang <wen.gang.wang at oracle.com> -- diff -up ./fs/ocfs2/super.c.orig ./fs/ocfs2/super.c --- ./fs/ocfs2/super.c.orig 2009-02-12 18:05:19.023685000 -0800 +++ ./fs/ocfs2/super.c 2009-02-12 18:07:13.995623000 -0800 @@ -1537,6 +1537,13 @@ static int ocfs2_get_sector(struct super unlock_buffer(*bh); ll_rw_block(READ, 1, bh); wait_on_buffer(*bh); + if (!buffer_uptodate(*bh)) { + mlog_errno(-EIO); + brelse(*bh); + *bh = NULL; + return -EIO; + } + return 0; }
2009 Jul 22
8
[PATCH 0/7] OCFS2 quota fixes (version 2)
Hi, here is the second version of OCFS2 quota fixes with Joel's comments fixed. Also I've added a patch defining counts of credits for quota operations as Joel asked. Honza
2008 Oct 15
1
[PATCH] ocfs2: Wrap inode block reads in a dedicated function.
...gt; + mlog_exit_void(); > } > > static int ocfs2_read_locked_inode(struct inode *inode, > @@ -460,11 +448,15 @@ static int ocfs2_read_locked_inode(struct inode *inode, > } > } > > - if (can_lock) > - status = ocfs2_read_blocks(inode, args->fi_blkno, 1, &bh, > - OCFS2_BH_IGNORE_CACHE); > - else > + if (can_lock) { > + status = ocfs2_read_inode_block_full(inode, args->fi_blkno, > + &bh, > + OCFS2_BH_IGNORE_CACHE); > + } else { > status = ocfs2_read_blocks_sync(osb, args->fi_blkno, 1, &amp...