#ifndef __USBAUDIO_DEBUG_H #define __USBAUDIO_DEBUG_H /* * h/w constraints */ #ifdef HW_CONST_DEBUG #define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args) #else #define hwc_debug(fmt, args...) do { } while(0) #endif #endif /* __USBAUDIO_DEBUG_H */ inux/net-next.git/atom/?h=master' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-01-19 16:55:57 +0100
committerSagi Grimberg <sagi@grimberg.me>2017-01-26 17:49:14 +0200
commit19e420bb4076ace670addc55300e3b8c4a02dfc6 (patch)
treeba40aad7ab4fb28c0eafd0ee84959589f444f58d
parent748ff8408f8e208f279ba221e5c12612fbb4dddb (diff)
nvme-fc: use blk_rq_nr_phys_segments
Without this deallocate won't work properly due to the mismatch of the bio/request size and the actual payload size. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: James Smart <james.smart@broadcom.com> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Signed-off-by: Sagi Grimberg <sagi@grimberg.me>