static int submit_gbuf(struct gbuf *gbuf, gfp_t gfp_mask)
{
- struct greybus_host_device *hd = gbuf->operation->connection->hd;
+ struct greybus_host_device *hd = gbuf->hd;
struct es1_ap_dev *es1 = hd_to_es1(hd);
struct usb_device *udev = es1->usb_dev;
int retval;
static void cport_out_callback(struct urb *urb)
{
struct gbuf *gbuf = urb->context;
- struct es1_ap_dev *es1 = hd_to_es1(gbuf->operation->connection->hd);
+ struct es1_ap_dev *es1 = hd_to_es1(gbuf->hd);
unsigned long flags;
int i;
* that the driver can then fill up with the data to be sent out. Curse
* hardware designers for this issue...
*/
-struct gbuf *greybus_alloc_gbuf(struct gb_operation *operation,
+struct gbuf *greybus_alloc_gbuf(struct greybus_host_device *hd,
u16 dest_cport_id,
unsigned int size,
gfp_t gfp_mask)
{
- struct greybus_host_device *hd = operation->connection->hd;
struct gbuf *gbuf;
int retval;
return NULL;
kref_init(&gbuf->kref);
- gbuf->operation = operation;
+ gbuf->hd = hd;
gbuf->dest_cport_id = dest_cport_id;
gbuf->status = -EBADR; /* Initial value--means "never set" */
static void free_gbuf(struct kref *kref)
{
struct gbuf *gbuf = container_of(kref, struct gbuf, kref);
- struct greybus_host_device *hd = gbuf->operation->connection->hd;
- hd->driver->free_gbuf_data(gbuf);
+ gbuf->hd->driver->free_gbuf_data(gbuf);
kmem_cache_free(gbuf_head_cache, gbuf);
mutex_unlock(&gbuf_mutex);
int greybus_submit_gbuf(struct gbuf *gbuf, gfp_t gfp_mask)
{
- struct greybus_host_device *hd = gbuf->operation->connection->hd;
-
gbuf->status = -EINPROGRESS;
- return hd->driver->submit_gbuf(gbuf, gfp_mask);
+ return gbuf->hd->driver->submit_gbuf(gbuf, gfp_mask);
}
void greybus_kill_gbuf(struct gbuf *gbuf)
{
- struct greybus_host_device *hd = gbuf->operation->connection->hd;
-
if (gbuf->status != -EINPROGRESS)
return;
- hd->driver->kill_gbuf(gbuf);
+ gbuf->hd->driver->kill_gbuf(gbuf);
}
void greybus_cport_in(struct greybus_host_device *hd, u16 cport_id,
struct gbuf {
struct kref kref;
- struct gb_operation *operation;
+ struct greybus_host_device *hd;
u16 dest_cport_id; /* Destination CPort id */
int status;
void greybus_cport_in(struct greybus_host_device *hd, u16 cport_id,
u8 *data, size_t length);
-struct gbuf *greybus_alloc_gbuf(struct gb_operation *operation,
+struct gbuf *greybus_alloc_gbuf(struct greybus_host_device *hd,
u16 dest_cport_id, unsigned int size,
gfp_t gfp_mask);
void greybus_free_gbuf(struct gbuf *gbuf);
u8 type, size_t size,
bool data_out)
{
+ struct gb_connection *connection = operation->connection;
struct gb_operation_msg_hdr *header;
struct gbuf *gbuf;
gfp_t gfp_flags = data_out ? GFP_KERNEL : GFP_ATOMIC;
return NULL; /* Message too big */
if (data_out)
- dest_cport_id = operation->connection->interface_cport_id;
+ dest_cport_id = connection->interface_cport_id;
else
dest_cport_id = CPORT_ID_BAD;
size += sizeof(*header);
- gbuf = greybus_alloc_gbuf(operation, dest_cport_id, size, gfp_flags);
+ gbuf = greybus_alloc_gbuf(connection->hd, dest_cport_id,
+ size, gfp_flags);
if (!gbuf)
return NULL;