The following reply was made to PR kern/25733; it has been noted by GNATS.

From: [email protected] (dfilter service)
To: [email protected]
Cc:  
Subject: Re: kern/25733: commit references a PR
Date: Sun,  8 Apr 2012 20:48:48 +0000 (UTC)

 Author: avg
 Date: Sun Apr  8 20:48:39 2012
 New Revision: 234043
 URL: http://svn.freebsd.org/changeset/base/234043
 
 Log:
   intpm: return only SMB bus error codes from SMB methods
   
   PR:          kern/25733
   MFC after:   5 days
 
 Modified:
   head/sys/pci/intpm.c
 
 Modified: head/sys/pci/intpm.c
 ==============================================================================
 --- head/sys/pci/intpm.c       Sun Apr  8 20:44:57 2012        (r234042)
 +++ head/sys/pci/intpm.c       Sun Apr  8 20:48:39 2012        (r234043)
 @@ -272,7 +272,7 @@ intsmb_callback(device_t dev, int index,
        case SMB_RELEASE_BUS:
                break;
        default:
 -              error = EINVAL;
 +              error = SMB_EINVAL;
        }
  
        return (error);
 @@ -519,7 +519,7 @@ intsmb_quick(device_t dev, u_char slave,
                data |= LSB;
                break;
        default:
 -              return (EINVAL);
 +              return (SMB_EINVAL);
        }
  
        INTSMB_LOCK(sc);
 @@ -774,7 +774,7 @@ intsmb_bread(device_t dev, u_char slave,
                        }
                        *count = nread;
                } else
 -                      error = EIO;
 +                      error = SMB_EBUSERR;
        }
        INTSMB_UNLOCK(sc);
        return (error);
 _______________________________________________
 [email protected] mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "[email protected]"
 
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"

Reply via email to