Lines Matching refs:buffer
167 __be64 *buffer; in register_notification_address() local
173 buffer = kmalloc(2 * 8, GFP_KERNEL); in register_notification_address()
174 if (!buffer) in register_notification_address()
178 buffer[0] = cpu_to_be64(OWNER_NO_OWNER); in register_notification_address()
179 buffer[1] = cpu_to_be64( in register_notification_address()
189 buffer, 2 * 8, in register_notification_address()
194 if (buffer[0] == cpu_to_be64(OWNER_NO_OWNER)) in register_notification_address()
197 if (buffer[0] == buffer[1]) in register_notification_address()
210 kfree(buffer); in register_notification_address()
221 __be64 *buffer; in unregister_notification_address() local
223 buffer = kmalloc(2 * 8, GFP_KERNEL); in unregister_notification_address()
224 if (buffer == NULL) in unregister_notification_address()
227 buffer[0] = cpu_to_be64( in unregister_notification_address()
230 buffer[1] = cpu_to_be64(OWNER_NO_OWNER); in unregister_notification_address()
234 buffer, 2 * 8, FW_QUIET | in unregister_notification_address()
237 kfree(buffer); in unregister_notification_address()