public inbox for collecty@lists.ipfire.org
 help / color / mirror / Atom feed
From: Arne Fitzenreiter <arne_f@ipfire.org>
To: collecty@lists.ipfire.org
Subject: [PATCH] disk: Catch error for SMART devices w/o tmp sensors
Date: Wed, 19 Oct 2016 20:55:23 +0000	[thread overview]
Message-ID: <1476910523-14901-1-git-send-email-arne_f@ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 1295 bytes --]

Signed-off-by: Arne Fitzenreiter <arne_f(a)ipfire.org>
---
 src/_collecty/blockdev.c     | 8 +++++++-
 src/collecty/plugins/disk.py | 5 ++++-
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/src/_collecty/blockdev.c b/src/_collecty/blockdev.c
index 2c715b9..09d3994 100644
--- a/src/_collecty/blockdev.c
+++ b/src/_collecty/blockdev.c
@@ -296,8 +296,14 @@ PyObject* BlockDevice_get_temperature(PyObject* self) {
 
 	uint64_t mkelvin;
 	int r = sk_disk_smart_get_temperature(device->disk, &mkelvin);
-	if (r)
+	if (r) {
+		// Temperature not available but SMART is supported
+		if (errno == ENOENT) {
+			PyErr_Format(PyExc_OSError, "Device does not have a temperature");
+		}
+
 		return NULL;
+	}
 
 	// Convert the temperature to Kelvin
 	return PyFloat_FromDouble((double)mkelvin / 1000.0);
diff --git a/src/collecty/plugins/disk.py b/src/collecty/plugins/disk.py
index 1b12c5c..a822eb2 100644
--- a/src/collecty/plugins/disk.py
+++ b/src/collecty/plugins/disk.py
@@ -267,7 +267,10 @@ class DiskObject(base.Object):
 		if not self.is_smart_supported():
 			return "NaN"
 
-		return self.device.get_temperature()
+		try:
+			return self.device.get_temperature()
+		except OSError:
+			return "NaN"
 
 	def get_bad_sectors(self):
 		if not self.is_smart_supported():
-- 
2.6.3


                 reply	other threads:[~2016-10-19 20:55 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=1476910523-14901-1-git-send-email-arne_f@ipfire.org \
    --to=arne_f@ipfire.org \
    --cc=collecty@lists.ipfire.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox