mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-10-29 05:40:16 -04:00
cursor/os-compatibility: move resizing into a separate function
Signed-off-by: Jan Beich <jbeich@FreeBSD.org>
This commit is contained in:
parent
3a3dd0820d
commit
230885ebb4
3 changed files with 25 additions and 28 deletions
|
|
@ -83,17 +83,7 @@ err_free:
|
|||
static int
|
||||
shm_pool_resize(struct shm_pool *pool, int size)
|
||||
{
|
||||
#ifdef HAVE_POSIX_FALLOCATE
|
||||
/*
|
||||
* Filesystems that do support fallocate will return EINVAL or
|
||||
* EOPNOTSUPP. In this case we need to fall back to ftruncate
|
||||
*/
|
||||
errno = posix_fallocate(pool->fd, 0, size);
|
||||
if (errno != 0 && errno != EINVAL && errno != EOPNOTSUPP)
|
||||
return 0;
|
||||
#endif
|
||||
|
||||
if (ftruncate(pool->fd, size) < 0)
|
||||
if (os_resize_anonymous_file(pool->fd, size) < 0)
|
||||
return 0;
|
||||
|
||||
wl_shm_pool_resize(pool->pool, size);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue