Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751170AbbLBULU (ORCPT ); Wed, 2 Dec 2015 15:11:20 -0500 Received: from smtprelay0021.hostedemail.com ([216.40.44.21]:46305 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1756519AbbLBULQ (ORCPT ); Wed, 2 Dec 2015 15:11:16 -0500 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,joe@perches.com,:::::::::::::::::,RULES_HIT:41:69:355:379:541:599:800:960:973:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1381:1431:1437:1515:1516:1518:1534:1543:1593:1594:1711:1730:1747:1777:1792:2198:2199:2393:2559:2562:2693:2731:2828:3138:3139:3140:3141:3142:3355:3622:3865:3866:3867:3868:3870:3871:3872:3873:4321:5007:6119:6261:7576:7903:10004:10400:10848:11026:11232:11473:11658:11783:11914:12043:12048:12295:12296:12438:12517:12519:12555:12740:13894:14659:21080,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0,LFtime:4,LUA_SUMMARY:none X-HE-Tag: pie62_a4f87a1cab5e X-Filterd-Recvd-Size: 4349 Message-ID: <1449087069.3716.52.camel@perches.com> Subject: Re: [PATCH v3 2/8] android_pipe: don't be clever with #define offsets From: Joe Perches To: Jin Qian , Greg Kroah-Hartman , Greg Hackmann , Christoffer Dall , Peter Senna Tschudin , Jason Hu , Alex =?ISO-8859-1?Q?Benn=E9e?= , Yu Ning , linux-kernel@vger.kernel.org Date: Wed, 02 Dec 2015 12:11:09 -0800 In-Reply-To: <1449084968-30211-2-git-send-email-jinqian@android.com> References: <1449084968-30211-1-git-send-email-jinqian@android.com> <1449084968-30211-2-git-send-email-jinqian@android.com> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.18.2-0ubuntu2 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3373 Lines: 75 On Wed, 2015-12-02 at 11:35 -0800, Jin Qian wrote: > From: Alex Benn?e > > You just make it harder to figure out when commands are being used. > > Signed-off-by: Alex Benn?e > Signed-off-by: Jin Qian > --- > ?drivers/platform/goldfish/goldfish_pipe.c | 16 +++++----------- > ?1 file changed, 5 insertions(+), 11 deletions(-) > > diff --git a/drivers/platform/goldfish/goldfish_pipe.c b/drivers/platform/goldfish/goldfish_pipe.c > index e7a29e2..0fb3a34 100644 > --- a/drivers/platform/goldfish/goldfish_pipe.c > +++ b/drivers/platform/goldfish/goldfish_pipe.c > @@ -90,12 +90,6 @@ > ?#define CMD_WRITE_BUFFER 4??/* send a user buffer to the emulator */ > ?#define CMD_WAKE_ON_WRITE 5??/* tell the emulator to wake us when writing > ? ?????is possible */ > - > -/* The following commands are related to read operations, they must be > - * listed in the same order than the corresponding write ones, since we > - * will use (CMD_READ_BUFFER - CMD_WRITE_BUFFER) as a special offset > - * in goldfish_pipe_read_write() below. > - */ > ?#define CMD_READ_BUFFER????????6??/* receive a user buffer from the emulator */ > ?#define CMD_WAKE_ON_READ???????7??/* tell the emulator to wake us when reading > ? ???* is possible */ > @@ -272,8 +266,6 @@ static ssize_t goldfish_pipe_read_write(struct file *filp, char __user *buffer, > ? unsigned long irq_flags; > ? struct goldfish_pipe *pipe = filp->private_data; > ? struct goldfish_pipe_dev *dev = pipe->dev; > - const int cmd_offset = is_write ? 0 > - : (CMD_READ_BUFFER - CMD_WRITE_BUFFER); This one could be int cmd_type = is_write ? CMD_WRITE_BUFFER : CMD_READ_BUFFER; @@ -325,7 +317,8 @@ static ssize_t goldfish_pipe_read_write(struct file *filp, char __user *buffer, > ? > ? /* Now, try to transfer the bytes in the current page */ > ? spin_lock_irqsave(&dev->lock, irq_flags); > - if (access_with_param(dev, CMD_WRITE_BUFFER + cmd_offset, > + if (access_with_param(dev, > + is_write ? CMD_WRITE_BUFFER : CMD_READ_BUFFER, > ? address, avail, pipe, &status)) { > ? gf_write_ptr(pipe, dev->base + PIPE_REG_CHANNEL, > ? ?????dev->base + PIPE_REG_CHANNEL_HIGH); > @@ -333,7 +326,7 @@ static ssize_t goldfish_pipe_read_write(struct file *filp, char __user *buffer, > ? gf_write_ptr((void *)address, > ? ?????dev->base + PIPE_REG_ADDRESS, > ? ?????dev->base + PIPE_REG_ADDRESS_HIGH); > - writel(CMD_WRITE_BUFFER + cmd_offset, > + writel(is_write ? CMD_WRITE_BUFFER : CMD_READ_BUFFER, > ? dev->base + PIPE_REG_COMMAND); > ? status = readl(dev->base + PIPE_REG_STATUS); > ? } and the loop could use cmd_type instead of the ?: > @@ -370,7 +363,8 @@ static ssize_t goldfish_pipe_read_write(struct file *filp, char __user *buffer, > ? set_bit(wakeBit, &pipe->flags); > ? > ? /* Tell the emulator we're going to wait for a wake event */ > - goldfish_cmd(pipe, CMD_WAKE_ON_WRITE + cmd_offset); > + goldfish_cmd(pipe, > + is_write ? CMD_WAKE_ON_WRITE : CMD_WAKE_ON_READ); > ? > ? /* Unlock the pipe, then wait for the wake signal */ > ? mutex_unlock(&pipe->lock); -- 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/