Displaying 4 results from an estimated 4 matches for "i_count".
Did you mean:
in_count
2005 Sep 27
4
dynamic lists (data frames?)
Can someone please show me what I need to get something like this to
work
for(a in c(1:5)){
data$a<-c(a:10)
}
so that i end up with a structure
data$1<-[1,2,3,4,5,6,7,8,9,10]
data$2<-[2,3,4,5,67,8,9,10]
data$3<-[3,4,5,67,8,9,10]
data$4<-[4,5,67,8,9,10]
data$5<-[5,67,8,9,10]
thanks loads
Tom
2004 Sep 04
0
[PATCH] remove ocfs_put_inode
.../*
- * ocfs_put_inode()
- *
- */
-void ocfs_put_inode (struct inode *inode)
-{
- ocfs_super *osb;
-
- LOG_SET_CONTEXT(PUT_INODE);
-
- LOG_ENTRY_ARGS ("(0x%p, i_ino=%llu)\n", inode, OCFS_I(inode)->ip_blkno);
- LOG_TRACE_ARGS ("put_inode: count=%d\n", atomic_read(&inode->i_count));
- osb = OCFS_SB(inode->i_sb);
- LOG_EXIT ();
-
- LOG_CLEAR_CONTEXT();
- return;
-} /* ocfs_put_inode */
-
-
void ocfs_sync_blockdev(struct super_block *sb)
{
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
Index: src/inode.h
===========================================================...
2002 Dec 15
0
[patch] ext3 use-after-free bugfix
...node *
}
inode->u.ext3_i.i_disksize = inode->i_size;
err = ext3_add_nondir(handle, dentry, inode);
- ext3_mark_inode_dirty(handle, inode);
out_stop:
ext3_journal_stop(handle, dir);
return err;
@@ -971,7 +971,6 @@ static int ext3_link (struct dentry * ol
atomic_inc(&inode->i_count);
err = ext3_add_nondir(handle, dentry, inode);
- ext3_mark_inode_dirty(handle, inode);
ext3_journal_stop(handle, dir);
return err;
}
_
2009 Aug 24
0
[PATCH] Btrfs: proper metadata -ENOSPC handling
...goto fail;
- trans = btrfs_start_transaction(root, 1);
+ /*
+ * 1 items for inode ref
+ * 2 items for dir items
+ */
+ trans = btrfs_start_transaction(root, 3);
+ err = PTR_ERR(trans);
+ if (IS_ERR(trans))
+ goto fail;
btrfs_set_trans_block_group(trans, dir);
atomic_inc(&inode->i_count);
@@ -3912,18 +3970,16 @@ static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
u64 index = 0;
unsigned long nr = 1;
- err = btrfs_check_metadata_free_space(root);
- if (err)
- goto out_unlock;
-
- trans = btrfs_start_transaction(root, 1);
+ /*
+ * 2 items for inode and...