Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757334Ab2FGAkY (ORCPT ); Wed, 6 Jun 2012 20:40:24 -0400 Received: from mail-wi0-f178.google.com ([209.85.212.178]:56232 "EHLO mail-wi0-f178.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756817Ab2FGAkU (ORCPT ); Wed, 6 Jun 2012 20:40:20 -0400 MIME-Version: 1.0 In-Reply-To: References: <1338985224-9684-1-git-send-email-linkinjeon@gmail.com> Date: Thu, 7 Jun 2012 09:40:19 +0900 Message-ID: Subject: Re: [PATCH 1/3] scsi: set to WCE if usb cache quirk is present. From: Namjae Jeon To: Alan Stern Cc: James.Bottomley@hansenpartnership.com, gregkh@linuxfoundation.org, mdharm-usb@one-eyed-alien.net, linux-usb@vger.kernel.org, linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org, Namjae Jeon , Pankaj Kumar , Amit Sahrawat Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1497 Lines: 39 Hi Alan. I will send patch v2 after chaing code. Thanks for your review. 2012/6/7, Alan Stern : > On Wed, 6 Jun 2012, Namjae Jeon wrote: > >> Make use of USB quirk method to identify such HDD while reading the cache >> status in sd_probe(). If cache quirk is present for the HDD, lets assume >> that cache is enabled and make WCE bit equal to 1. > > Your lines should be wrapped after 72 columns or so. > > Calling this a "quirk" sounds strange. Really, your new flag indicates > that WCE should default to "on" instead of "off". How about calling it > "wce_default_on" instead of "wce_quirk"? > >> --- a/include/scsi/scsi_device.h >> +++ b/include/scsi/scsi_device.h >> @@ -152,6 +152,7 @@ struct scsi_device { >> unsigned no_read_disc_info:1; /* Avoid READ_DISC_INFO cmds */ >> unsigned no_read_capacity_16:1; /* Avoid READ_CAPACITY_16 cmds */ >> unsigned is_visible:1; /* is the device visible in sysfs */ >> + unsigned wce_quirk:1; /* cache read page is not available */ > > The comment is wrong. There's no need for a quirk to indicate the > cache page is unavailable; the driver already knows when the page is > unavailable. Rather, the quirk indicates that WCE should default to > "on". > > Alan Stern > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/