Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 May 2013 23:20:00 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-bugs@FreeBSD.org
Subject:   Re: kern/178040: commit references a PR
Message-ID:  <201305112320.r4BNK0F8027949@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/178040; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: kern/178040: commit references a PR
Date: Sat, 11 May 2013 23:13:57 +0000 (UTC)

 Author: eadler
 Date: Sat May 11 23:13:49 2013
 New Revision: 250532
 URL: http://svnweb.freebsd.org/changeset/base/250532
 
 Log:
   Intel's 320-series and 510-series SSDs advertise 512-byte sectors
   sizes for both logical and physical. Add ADA_Q_4K quirks
   for both.
   
   PR:		kern/178040
   Submitted by:	Jeremy Chadwick <jdc@koitsu.org>
 
 Modified:
   head/sys/cam/ata/ata_da.c
 
 Modified: head/sys/cam/ata/ata_da.c
 ==============================================================================
 --- head/sys/cam/ata/ata_da.c	Sat May 11 22:32:43 2013	(r250531)
 +++ head/sys/cam/ata/ata_da.c	Sat May 11 23:13:49 2013	(r250532)
 @@ -350,6 +350,14 @@ static struct ada_quirk_entry ada_quirk_
  	},
  	{
  		/*
 +		 * Intel 320 Series SSDs
 +		 * 4k optimised & trim only works in 4k requests + 4k aligned
 +		 */
 +		{ T_DIRECT, SIP_MEDIA_FIXED, "*", "INTEL SSDSA2CW*", "*" },
 +		/*quirks*/ADA_Q_4K
 +	},
 +	{
 +		/*
  		 * Intel 330 Series SSDs
  		 * 4k optimised & trim only works in 4k requests + 4k aligned
  		 * Submitted by: Steven Hartland <steven.hartland@multiplay.co.uk>
 @@ -360,6 +368,14 @@ static struct ada_quirk_entry ada_quirk_
  	},
  	{
  		/*
 +		 * Intel 510 Series SSDs
 +		 * 4k optimised & trim only works in 4k requests + 4k aligned
 +		 */
 +		{ T_DIRECT, SIP_MEDIA_FIXED, "*", "INTEL SSDSC2MH*", "*" },
 +		/*quirks*/ADA_Q_4K
 +	},
 +	{
 +		/*
  		 * OCZ Deneva R Series SSDs
  		 * 4k optimised & trim only works in 4k requests + 4k aligned
  		 * Submitted by: Steven Hartland <steven.hartland@multiplay.co.uk>
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305112320.r4BNK0F8027949>