This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tapsets/5231] Setting correct argument for bio_endio in ioblock.stp


------- Additional Comments From srinivasa at in dot ibm dot com  2007-10-29 12:04 -------
Created an attachment (id=2066)
 --> (http://sourceware.org/bugzilla/attachment.cgi?id=2066&action=view)
ioblock.stp

In 2.6.23-rc7
============================
void bio_endio(struct bio *bio, unsigned int bytes_done, int error)
{
	if (error)
		clear_bit(BIO_UPTODATE, &bio->bi_flags);

=========================

In 2.6.24-rc1
=========================
void bio_endio(struct bio *bio, int error)
{
	if (error)
		clear_bit(BIO_UPTODATE, &bio->bi_flags);
================================

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=5231

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]