Lines Matching refs:buffer
236 __be64 *buffer; in register_notification_address() local
242 buffer = kmalloc(2 * 8, GFP_KERNEL); in register_notification_address()
243 if (!buffer) in register_notification_address()
247 buffer[0] = cpu_to_be64(OWNER_NO_OWNER); in register_notification_address()
248 buffer[1] = cpu_to_be64( in register_notification_address()
258 buffer, 2 * 8, in register_notification_address()
263 if (buffer[0] == cpu_to_be64(OWNER_NO_OWNER)) in register_notification_address()
266 if (buffer[0] == buffer[1]) in register_notification_address()
279 kfree(buffer); in register_notification_address()
290 __be64 *buffer; in unregister_notification_address() local
292 buffer = kmalloc(2 * 8, GFP_KERNEL); in unregister_notification_address()
293 if (buffer == NULL) in unregister_notification_address()
296 buffer[0] = cpu_to_be64( in unregister_notification_address()
299 buffer[1] = cpu_to_be64(OWNER_NO_OWNER); in unregister_notification_address()
303 buffer, 2 * 8, FW_QUIET | in unregister_notification_address()
306 kfree(buffer); in unregister_notification_address()