search for: id_count

Displaying 12 results from an estimated 12 matches for "id_count".

Did you mean: uid_count
2010 Dec 21
3
Text Proccessing script - advice?
Hello, I have a log file with the following input: X , ID , Date, Time, Y 01,01368,2010-12-02,09:07:00,Pass 01,01368,2010-12-02,10:54:00,Pass 01,01368,2010-12-02,13:07:04,Pass 01,01368,2010-12-02,18:54:01,Pass 01,01368,2010-12-03,09:02:00,Pass 01,01368,2010-12-03,13:53:00,Pass 01,01368,2010-12-03,16:07:00,Pass My goal is to get the number of times ID has a TIME that's after 09:00:00 each
2009 Mar 04
5
[PATCH 0/2] ocfs2: two bug fixes about xattr and inline-data
...o serious bugs about xattr and inline-data. the first bug: in ocfs2_mknod(), we check and found the ACL or security xattr entry could be set into inode in ocfs2_calc_xattr_init(), then don't reserve block for them. But in ocfs2_mknod_locked(), if we found ocfs2 support inline-data, then set id_count with the max_inline_data. After that, we set acl/security xattr entry in ocfs2_init_acl() or ocfs2_init_security_set(), but in there we found inode is full, then panic at ocfs2_claim_metadata in ocfs2_xattr_block_set. the second bug: we don't check inline xattr in ocfs2_try_to_write_inline_...
2009 Jul 21
1
[PATCH 1/1] ocfs2: adds mlogs to aops.c -V2
...} } wc->w_handle = handle; out: + mlog_exit(ret); return ret; } @@ -1542,8 +1659,14 @@ int ocfs2_size_fits_inline_data(struct buffer_head *di_bh, u64 new_size) { struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; - if (new_size <= le16_to_cpu(di->id2.i_data.id_count)) + mlog_entry("(%llu, %llu)\n", + di_bh->b_blocknr, (unsigned long long)new_size); + + if (new_size <= le16_to_cpu(di->id2.i_data.id_count)) { + mlog_exit(1); return 1; + } + mlog_exit(0); return 0; } @@ -1552,14 +1675,14 @@ static int ocfs2_try_to_write_inline_data...
2008 Nov 04
2
Problem: Sweave and math environments
...lem now is that I sometimes have an unequal number of $ signs in an input line, so that LaTex thinks that all of the following "normal" text is still part of the math environment, and formats it accordingly. This is an example input line: Pre_Year <- MyMain3$Con_Stat[MyMain3$MyID==ID_Count[i] & MyMain3$MyYear==Count_Years[y-1]] where I have three $ sings, and LaTex thinks that everything following the last $ sign is still part of a formula. I have two question now: 1. Is there any way to solve the problem within Sweave itself, e.g. through setting options? 2. If not: is ther...
2007 Feb 20
1
Reshape (pivot) question
...ID1564269 5646 13.5.2006 17:02 3333 3 10 ID1564270 7561 13.5.200617:02 6666 1 10 ID1564271 1676 15.5.2006 20:41 2222 2 20 How can I do a new (pivot?) data.frame in R which I can achieve by MS SQL: select eala, datepart(month, date) as month, datepart(year, date) as year, count(distinct id) as id_count, count(distinct patient_id) as patient_count, count(distinct(case when class = 1 then code else null end)) as count_1, count(distinct(case when class = 2 then code else null end)) as count_2, count(distinct(case when class = 3 then code else null end)) as count_3, into temp2 from temp1 group by...
2009 Mar 05
3
[PATCH 0/2] ocfs2: two bug fixes about xattr and inline-data V2
Hi, Thanks Tao and Joel's review, These are the second version of the patches. Mark and Joel, you can correct my comments if you find they don't suitable. thanks, tiger
2009 Jul 13
1
[PATCH 1/1] adds mlogs to aops.c
...} } wc->w_handle = handle; out: + mlog_exit(ret); return ret; } @@ -1542,8 +1651,14 @@ int ocfs2_size_fits_inline_data(struct buffer_head *di_bh, u64 new_size) { struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; - if (new_size <= le16_to_cpu(di->id2.i_data.id_count)) + mlog_entry("(%llu, %llu)\n", + di_bh->b_blocknr, (unsigned long long)new_size); + + if (new_size <= le16_to_cpu(di->id2.i_data.id_count)) { + mlog_exit(1); return 1; + } + mlog_exit(0); return 0; } @@ -1552,14 +1667,14 @@ static int ocfs2_try_to_write_inline_data...
2009 Jul 21
1
(no subject)
...} } wc->w_handle = handle; out: + mlog_exit(ret); return ret; } @@ -1542,8 +1659,14 @@ int ocfs2_size_fits_inline_data(struct buffer_head *di_bh, u64 new_size) { struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data; - if (new_size <= le16_to_cpu(di->id2.i_data.id_count)) + mlog_entry("(%llu, %llu)\n", + di_bh->b_blocknr, (unsigned long long)new_size); + + if (new_size <= le16_to_cpu(di->id2.i_data.id_count)) { + mlog_exit(1); return 1; + } + mlog_exit(0); return 0; } @@ -1552,14 +1675,14 @@ static int ocfs2_try_to_write_inline_data...
2009 May 13
9
PXELINUX, pxechain.com and Etherboot
Hi, Anyone has tried to use pxechain with Etherboot? Here is my problem: The Etherboot client had no problem to get the list of install servers manual from the pxechain. But didn't matter which server was chosen, Etherboot client always tried to use the first server to do the installation. Etherboot 5.4 was used. What the problem may be? PXEchain or Etherboot? Thanks, Joyce --
2009 Jan 30
8
[PATCH 0/7] ocfs2: Directory indexing support
The following patches implement indexed directory support in Ocfs2, mostly according to the design doc I wrote up a while ago: http://oss.oracle.com/osswiki/OCFS2/DesignDocs/IndexedDirectories The patches have been rebased on top of 2.6.29-rc2. It should be trivial to put them into merge_window. Things are what I'd call complete now. I'd like to get these into the merge_window branch
2009 Feb 13
44
[PATCH 0/40] ocfs2: Detach ocfs2 metadata I/O from struct inode
The following series of patches attempts to detach metadata I/O from struct inode. They are currently tied together pretty tightly. Metadata reads happen via the ocfs2_read_blocks() functions, writes via both jbd2 and ocfs2_write_blocks(). - Each inode has a cache of associated metadata blocks stored on its ip_metadata_cache member. The ocfs2_read/write_blocks() functions take a struct
2009 Mar 17
33
[git patches] Ocfs2 updates for 2.6.30
Hi, The following patches comprise the bulk of Ocfs2 updates for the 2.6.30 merge window. Aside from larger, more involved fixes, we're adding the following features, which I will describe in the order their patches are mailed. Sunil's exported some more state to our debugfs files, and consolidated some other aspects of our debugfs infrastructure. This will further aid us in debugging