Re: [PATCH 09/11] firewire-sbp-target: Add sbp_target_agent.{c,h}

From: Stefan Richter
Date: Sat Apr 14 2012 - 06:49:28 EST


On Apr 11 Chris Boot wrote:
> +static int tgt_agent_rw_agent_state(struct fw_card *card, int tcode, void *data,
> + struct sbp_target_agent *agent)
> +{
> + __be32 state;
> +
> + switch (tcode) {
> + case TCODE_READ_QUADLET_REQUEST:
> + pr_debug("tgt_agent AGENT_STATE READ\n");
> +
> + spin_lock_bh(&agent->lock);
> + state = cpu_to_be32(agent->state);
> + spin_unlock_bh(&agent->lock);
> + memcpy(data, &state, sizeof(state));
> +
> + return RCODE_COMPLETE;
> +
> + case TCODE_WRITE_QUADLET_REQUEST:
> + /* ignored */
> + return RCODE_COMPLETE;
> +
> + default:
> + return RCODE_TYPE_ERROR;
> + }
> +}

agent->state is an int; reading an int is atomic. Hence the access on
its own does not benefit from lock acquisition.

The memcpy can be simplified to

*(__be32 *)data = cpu_to_be32(agent->state);

if data is always at least quadlet aligned. Thy type cast is only to tell
code checkers like sparse that we know what we are doing. If data may be
unaligned, you could use

put_unaligned_be32(agent->state, data);
--
Stefan Richter
-=====-===-- -=-- -===-
http://arcgraph.de/sr/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/