[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#267227: marked as done (Minor efficiency improvement for scsi device search)



Your message dated Fri, 28 Feb 2014 21:11:48 +0100
with message-id <20140228201148.GA31492@mraw.org>
and subject line Re: Bug#267227: Minor efficiency improvement for scsi device search
has caused the Debian Bug report #267227,
regarding Minor efficiency improvement for scsi device search
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
267227: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=267227
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: rootskel
Version: 0.79
Severity: wishlist
Tags: patch

Hi,

When playing with bugreporter-udeb, I had a good look at init code
in this package's src-bootfloppy directory.

  find /dev/scsi

This list many useless entries.  Assuming no one wish to use partition 
after part9, changing above with

  find /dev/scsi -name 'part?'||true

may improve code.  (Or I should say, I did so in bugreporter-udeb.)

Does this make sense or it is bad idea.  If bad tell me so.  Then I will
fix bugreporter-udeb patch too.

Osamu

--- init.org	2004-08-21 11:08:22.000000000 +0200
+++ init	2004-08-21 11:09:51.000000000 +0200
@@ -96,7 +96,7 @@
 				DEVS=/dev/floppy/?
 			fi
 			if [ -d /dev/scsi ]; then
-				DEVS="$DEVS `find /dev/scsi`"
+				DEVS="$DEVS `find /dev/scsi -name 'part?' || true`"
 			fi
 		else
 			DEVS="`find $INSTALL_MEDIA_DEV`"

--- End Message ---
--- Begin Message ---
Version: 1.40

Osamu Aoki <osamu@debian.org> (2004-08-21):
> Package: rootskel
> Version: 0.79
> Severity: wishlist
> Tags: patch
> 
> Hi,
> 
> When playing with bugreporter-udeb, I had a good look at init code
> in this package's src-bootfloppy directory.
> 
>   find /dev/scsi

The relevant code was rewritten in the above-mentioned version, so
closing this bug report accordingly.

Mraw,
KiBi.

Attachment: signature.asc
Description: Digital signature


--- End Message ---

Reply to: