Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ecryptfs/ecryptfs-2.6

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ecryptfs/ecryptfs-2.6:
eCryptfs: Fix min function comparison warning
ecryptfs: fix printk format warning

+2 -2
+2 -2
fs/ecryptfs/inode.c
··· 667 667 lower_buf = kmalloc(lower_bufsiz, GFP_KERNEL); 668 668 if (lower_buf == NULL) { 669 669 printk(KERN_ERR "%s: Out of memory whilst attempting to " 670 - "kmalloc [%d] bytes\n", __func__, lower_bufsiz); 670 + "kmalloc [%zd] bytes\n", __func__, lower_bufsiz); 671 671 rc = -ENOMEM; 672 672 goto out; 673 673 } ··· 690 690 } 691 691 /* Check for bufsiz <= 0 done in sys_readlinkat() */ 692 692 rc = copy_to_user(buf, plaintext_name, 693 - min((unsigned) bufsiz, plaintext_name_size)); 693 + min((size_t) bufsiz, plaintext_name_size)); 694 694 if (rc) 695 695 rc = -EFAULT; 696 696 else