From 44ae2f5509bdd4b4c217837d00123e092fae02ff Mon Sep 17 00:00:00 2001
From: Sarangdhar Joshi <spjoshi@codeaurora.org>
Date: Thu, 5 Mar 2015 14:15:16 -0800
Subject: [PATCH] linux-ramdump-parser-v2: Print workqueue info for 3.14 kernel

Print the workqueue information for 3.14 kernel.

Change-Id: Id40503c9f8ad2fc23cff587553e66e0a6a0406fd
---
 linux-ramdump-parser-v2/parsers/workqueue.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/linux-ramdump-parser-v2/parsers/workqueue.py b/linux-ramdump-parser-v2/parsers/workqueue.py
index 51f07e6..0fd3f21 100644
--- a/linux-ramdump-parser-v2/parsers/workqueue.py
+++ b/linux-ramdump-parser-v2/parsers/workqueue.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
+# Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License version 2 and
@@ -456,3 +456,5 @@ class Workqueues(RamParser):
                     self.print_workqueue_state_3_7(self.ramdump)
             if re.search('3.10.\d', ver) is not None:
                     self.print_workqueue_state_3_10(self.ramdump)
+            if re.search('3.14.\d', ver) is not None:
+                    self.print_workqueue_state_3_10(self.ramdump)
-- 
GitLab