From: Jan Kiszka <kiszka@domain.hid>
To: xenomai-core <xenomai@xenomai.org>
Subject: [Xenomai-core] ENOMEM detection fix in 16550A driver
Date: Fri, 25 Nov 2005 17:17:06 +0100 [thread overview]
Message-ID: <43873902.5050703@domain.hid> (raw)
[-- Attachment #1: Type: text/plain, Size: 172 bytes --]
Hi all,
that's what reusing drivers also gives us: Paolo found a small but ugly
bug in the 16550A driver, see attached fix and Changelog (for both 2.0.x
and 2.1.x).
Jan
[-- Attachment #2: 16550A-ENOMEM.patch-2.0 --]
[-- Type: text/plain, Size: 1389 bytes --]
Index: ChangeLog
===================================================================
--- ChangeLog (revision 182)
+++ ChangeLog (working copy)
@@ -1,3 +1,8 @@
+2005-11-25 Jan Kiszka <jan.kiszka@domain.hid>
+
+ * drivers/16550A/16550A.c (RTSER_RTIOC_SET_CONFIG): Fix ENOMEM detection
+ (once again). Found by Paolo Mantegazza through cross-usage.
+
2005-11-21 Philippe Gerum <rpm@xenomai.org>
* skins/native, nucleus/pipe.c: Globally replace ENOSPC by
Index: drivers/16550A/16550A.c
===================================================================
--- drivers/16550A/16550A.c (revision 182)
+++ drivers/16550A/16550A.c (working copy)
@@ -587,10 +587,9 @@
else
hist_buf =
rtdm_malloc(IN_BUFFER_SIZE * sizeof(uint64_t));
+ if (!hist_buf)
+ return -ENOMEM;
}
-
- if (!hist_buf)
- return -ENOMEM;
}
rt_16550_set_config(ctx, config, &hist_buf);
@@ -1025,7 +1024,7 @@
device_class: RTDM_CLASS_SERIAL,
device_sub_class: RTDM_SUBCLASS_16550A,
driver_name: "rt_16550A",
- driver_version: RTDM_DRIVER_VER(1, 2, 0),
+ driver_version: RTDM_DRIVER_VER(1, 2, 1),
peripheral_name: "UART 16550A",
provider_name: "Jan Kiszka",
};
[-- Attachment #3: 16550A-ENOMEM.patch-2.1 --]
[-- Type: text/plain, Size: 938 bytes --]
Index: ksrc/drivers/16550A/16550A.c
===================================================================
--- ksrc/drivers/16550A/16550A.c (revision 182)
+++ ksrc/drivers/16550A/16550A.c (working copy)
@@ -589,10 +589,9 @@
else
hist_buf =
rtdm_malloc(IN_BUFFER_SIZE * sizeof(uint64_t));
+ if (!hist_buf)
+ return -ENOMEM;
}
-
- if (!hist_buf)
- return -ENOMEM;
}
rt_16550_set_config(ctx, config, &hist_buf);
@@ -1027,7 +1026,7 @@
device_class: RTDM_CLASS_SERIAL,
device_sub_class: RTDM_SUBCLASS_16550A,
driver_name: "rt_16550A",
- driver_version: RTDM_DRIVER_VER(1, 2, 0),
+ driver_version: RTDM_DRIVER_VER(1, 2, 1),
peripheral_name: "UART 16550A",
provider_name: "Jan Kiszka",
};
next reply other threads:[~2005-11-25 16:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-11-25 16:17 Jan Kiszka [this message]
2005-11-25 18:39 ` [Xenomai-core] ENOMEM detection fix in 16550A driver Philippe Gerum
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=43873902.5050703@domain.hid \
--to=kiszka@domain.hid \
--cc=xenomai@xenomai.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.