Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 929260 Details for
Bug 1122787
An error message "Memory Error" displayed on RHEL6.5-i386 when test the Emulex 40G CNA card
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch limiting http transfer file size on i386
0001-1122787-Memory-Error-displayed-on-RHEL6.5-X86-when-t.patch (text/plain), 1.90 KB, created by
Greg Nichols
on 2014-08-21 16:22:10 UTC
(
hide
)
Description:
patch limiting http transfer file size on i386
Filename:
MIME Type:
Creator:
Greg Nichols
Created:
2014-08-21 16:22:10 UTC
Size:
1.90 KB
patch
obsolete
>From 2ae7d7065b3a923667dcb95bfd37c8bb49226bb2 Mon Sep 17 00:00:00 2001 >From: Greg Nichols <gnichols@redhat.com> >Date: Thu, 21 Aug 2014 12:20:55 -0400 >Subject: [PATCH] 1122787 - Memory Error displayed on RHEL6.5-X86 when test the > Emulex 40G > >--- > hwcert/networkTest.py | 6 ++++++ > 1 file changed, 6 insertions(+) > >diff --git a/hwcert/networkTest.py b/hwcert/networkTest.py >index e158b06..af5b903 100644 >--- a/hwcert/networkTest.py >+++ b/hwcert/networkTest.py >@@ -24,6 +24,7 @@ from hwcert.hash import hashModule > from hwcert.http import HwCertHttp > from hwcert.localTestServer import LocalTestServer > from hwcert.udevDeviceDetector import UdevDeviceDetector >+from hwcert.redhatrelease import RedHatRelease > > > class NetworkTest(Test): >@@ -46,6 +47,7 @@ class NetworkTest(Test): > self.environment = Environment() > self.enforceSpeed = False > self.bandwidthTarget = 0.8 # 80% >+ self.redHatRelease = RedHatRelease() > > def tags(self): > return [TestTag.noninteractive, TestTag.certification, TestTag.network] >@@ -327,6 +329,9 @@ class NetworkTest(Test): > # use interfaceSpeed/8, creating a file that takes very roughly 10 sec to transfer > count = self.interfaceSpeed/8 > blocksize = 128 # KB >+ # except on i386 for faster interfaces, stay clear of memory limits >+ if self.redHatRelease.getArch() in [Constants.i386, Constants.i686] and count > 2000: >+ count = 2000 > > dd = Command("dd if=/dev/urandom of=%s bs=%uk count=%u" % (self.testFile, blocksize, count)) > try: >@@ -654,6 +659,7 @@ class NetworkTest(Test): > sentFile.close() > sentCheckSum=m.hexdigest() > request = HwCertHttp(self.getTestServer(), "/hwcert/cgi/networkTest.py") >+ print "test file size = %s" % os.path.getsize(self.testFile) > if not request.addFile(self.testFile): > return (None, None) > # otherwise >-- >1.9.3 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1122787
:
920441
|
920442
|
920443
|
923080
|
926273
|
926276
|
926277
|
926279
| 929260