tbd Cluster File Systems, Inc. <info@clusterfs.com>
* version 1.4.1
* bug fixes
- - don't LASSERT in ll_release on NULL lld with NFS export (4655, 5760)
- - hold NS lock when calling handle_ast_error->del_waiting_lock (5746)
- - fix setattr mtime regression from lovcleanup merge (4829, 5669)
- - workaround for 2.6 crash in ll_unhash_aliases (5687, 5210)
- - small ext3 extents cleanups and fixes (5733)
- - improved mballoc code, several small races and bugs fixed (5733, 5638)
- - kernel version 43: fix remove_suid bugs in both 2.4 and 2.6 (5695)
- - avoid needless client->OST connect, fix handle mismatch (5317)
- - fix DLM error path that led to out-of-sync client, long delays (5779)
- - support common vfs-enforced mount options (nodev,nosuid,noexec) (5637)
- - fix several locking issues related to i_size (5492,5624,5654,5672)
+ - don't LASSERT in ll_release on NULL lld with NFS export (4655, 5760)
+ - hold NS lock when calling handle_ast_error->del_waiting_lock (5746)
+ - fix setattr mtime regression from lovcleanup merge (4829, 5669)
+ - workaround for 2.6 crash in ll_unhash_aliases (5687, 5210)
+ - small ext3 extents cleanups and fixes (5733)
+ - improved mballoc code, several small races and bugs fixed (5733, 5638)
+ - kernel version 43 - fix remove_suid bugs in both 2.4 and 2.6 (5695)
+ - avoid needless client->OST connect, fix handle mismatch (5317)
+ - fix DLM error path that led to out-of-sync client, long delays (5779)
+ - support common vfs-enforced mount options (nodev,nosuid,noexec) (5637)
+ - fix several locking issues related to i_size (5492,5624,5654,5672)
- don't move pending lock onto export if it is already evicted (5683)
- fix kernel oops when creating .foo in unlinked directory (5548)
+ - fix deadlock in obdfilter statistics vs. object create (5811)
* miscellania
- - fix lustre/lustrefs init scripts for SuSE (patch from Scali, 5702)
- - don't hold the pinger_sem in ptlrpc_pinger_sending_on_import
- - change obd_increase_kms to obd_adjust_kms (up or down) (5654)
+ - fix lustre/lustrefs init scripts for SuSE (patch from Scali, 5702)
+ - don't hold the pinger_sem in ptlrpc_pinger_sending_on_import
+ - change obd_increase_kms to obd_adjust_kms (up or down) (5654)
- lconf, lmc search both /usr/lib and /usr/lib64 for Python libs (5800)
- - by default create 1 inode per 4kB space on MDS, per 16kB on OSTs
+ - by default create 1 inode per 4kB space on MDS, per 16kB on OSTs
2005-02-18 Cluster File Systems, Inc. <info@clusterfs.com>
* version 1.4.0.10 (1.4.1 release candidate 1)
spin_lock_init(&filter->fo_translock);
spin_lock_init(&filter->fo_objidlock);
+ spin_lock_init(&filter->fo_stats_lock);
INIT_LIST_HEAD(&filter->fo_export_list);
sema_init(&filter->fo_alloc_lock, 1);
spin_lock_init(&filter->fo_r_pages.oh_lock);
CERROR("PUNCH not supported, only truncate: end = "LPX64"\n",
end);
- CDEBUG(D_INODE, "calling truncate for object "LPU64", valid = %x, "
+ CDEBUG(D_INODE, "calling truncate for object "LPU64", valid = %x, ",
"o_size = "LPD64"\n", oa->o_id, oa->o_valid, start);
oa->o_size = start;
error = filter_setattr(exp, oa, NULL, oti);
filter->fo_w_in_flight);
lprocfs_oh_tally_log2(&filter->fo_w_disk_iosize, size);
}
- spin_lock_irqsave(&filter->fo_objidlock, flags);
+ spin_lock_irqsave(&filter->fo_stats_lock, flags);
if (rw == OBD_BRW_READ)
filter->fo_r_in_flight++;
else
filter->fo_w_in_flight++;
- spin_unlock_irqrestore(&filter->fo_objidlock, flags);
+ spin_unlock_irqrestore(&filter->fo_stats_lock, flags);
dreq->dr_start_time = jiffies;
}
struct filter_obd *filter = dreq->dr_filter;
unsigned long flags, stop_time = jiffies;
- spin_lock_irqsave(&filter->fo_objidlock, flags);
+ spin_lock_irqsave(&filter->fo_stats_lock, flags);
if (rw == OBD_BRW_READ)
filter->fo_r_in_flight--;
else
filter->fo_w_in_flight--;
- spin_unlock_irqrestore(&filter->fo_objidlock, flags);
+ spin_unlock_irqrestore(&filter->fo_stats_lock, flags);
if (atomic_dec_and_test(&dreq->dr_numreqs))
wake_up(&dreq->dr_wait);