diff options
Diffstat (limited to 'include/scsi/fc_frame.h')
-rw-r--r-- | include/scsi/fc_frame.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/include/scsi/fc_frame.h b/include/scsi/fc_frame.h index ab2f8d41761b..4d3e9c7b7c57 100644 --- a/include/scsi/fc_frame.h +++ b/include/scsi/fc_frame.h | |||
@@ -100,17 +100,7 @@ static inline void fc_frame_init(struct fc_frame *fp) | |||
100 | } | 100 | } |
101 | 101 | ||
102 | struct fc_frame *fc_frame_alloc_fill(struct fc_lport *, size_t payload_len); | 102 | struct fc_frame *fc_frame_alloc_fill(struct fc_lport *, size_t payload_len); |
103 | 103 | struct fc_frame *_fc_frame_alloc(size_t payload_len); | |
104 | struct fc_frame *__fc_frame_alloc(size_t payload_len); | ||
105 | |||
106 | /* | ||
107 | * Get frame for sending via port. | ||
108 | */ | ||
109 | static inline struct fc_frame *_fc_frame_alloc(struct fc_lport *dev, | ||
110 | size_t payload_len) | ||
111 | { | ||
112 | return __fc_frame_alloc(payload_len); | ||
113 | } | ||
114 | 104 | ||
115 | /* | 105 | /* |
116 | * Allocate fc_frame structure and buffer. Set the initial length to | 106 | * Allocate fc_frame structure and buffer. Set the initial length to |
@@ -124,10 +114,10 @@ static inline struct fc_frame *fc_frame_alloc(struct fc_lport *dev, size_t len) | |||
124 | * Note: Since len will often be a constant multiple of 4, | 114 | * Note: Since len will often be a constant multiple of 4, |
125 | * this check will usually be evaluated and eliminated at compile time. | 115 | * this check will usually be evaluated and eliminated at compile time. |
126 | */ | 116 | */ |
127 | if ((len % 4) != 0) | 117 | if (len && len % 4) |
128 | fp = fc_frame_alloc_fill(dev, len); | 118 | fp = fc_frame_alloc_fill(dev, len); |
129 | else | 119 | else |
130 | fp = _fc_frame_alloc(dev, len); | 120 | fp = _fc_frame_alloc(len); |
131 | return fp; | 121 | return fp; |
132 | } | 122 | } |
133 | 123 | ||