LinuxQuestions.org
Review your favorite Linux distribution.
Go Back   LinuxQuestions.org > Forums > Other *NIX Forums > *BSD
User Name
Password
*BSD This forum is for the discussion of all BSD variants.
FreeBSD, OpenBSD, NetBSD, etc.

Notices


Reply
  Search this Thread
Old 05-22-2019, 01:57 PM   #46
sevendogsbsd
Senior Member
 
Registered: Sep 2017
Distribution: FreeBSD
Posts: 2,252

Rep: Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011

I agree, I am talking about extreme cases where the CPU is pegged out or the whole system is just sluggish because of ram use. I haven't noticed any difference between performance on Linux compared to FreeBSD but my use is very different on FreeBSD: I do not use a DE at all now and used to use either Gnome or KDE on Linux. KDE was good with performance on Linux, Gnome was horrible, both running on a machine with essentially server sized hardware.

I just meant that to me bloat is referring to performance and not size. Just my opinion though.
 
Old 05-23-2019, 03:28 AM   #47
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Bloat is indeed a performance issue, but the definition of bloat does not simply equate to using more RAM or CPU.

A quick ddg for "code bloat" revealed some fairly useful results, but the wikipedia article gets straight to the point and sums it up in a paragraph: https://en.wikipedia.org/wiki/Code_bloat
Quote:
In computer programming, code bloat is the production of program code (source code or machine code) that is perceived as unnecessarily long, slow, or otherwise wasteful of resources. Code bloat can be caused by inadequacies in the programming language in which the code is written, the compiler used to compile it, or the programmer writing it. Thus, while code bloat generally refers to source code size (as produced by the programmer), it can be used to refer instead to the generated code size or even the binary file size.
A quick read up on the OpenBSD project will show that it's goals are pretty much at odds with that. More specifically, any submitted "bloated" code is very unlikely to be merged.
 
Old 05-23-2019, 03:43 AM   #48
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Quote:
Originally Posted by hitest View Post
I guess. OpenBSD uses more RAM to run XFCE than Linux does, but, typically the BSDs use more RAM than Linux.
I've not encountered this - truth be told, never really thought about it, do you have any actual data to support this?

For example, have you looked at RAM usage on e.g. OpenBSD, NetBSD, FreeBSD compared to a Linux system with similar configuration and the Xfce desktop?
 
Old 05-23-2019, 04:55 AM   #49
jggimi
Member
 
Registered: Jan 2016
Distribution: None. Just OpenBSD.
Posts: 289

Rep: Reputation: 169Reputation: 169
Quote:
Originally Posted by cynwulf View Post
A quick read up on the OpenBSD project will show that it's goals are pretty much at odds with that.
Except this week.

The amdgpu drm code just added to -current (but not yet in the build) adds 1,543,049 lines of code. The src/sys/dev/pci/drm directory grew from 16M to 126M.

Source: conversation on Mastodon between @stsp and @brynet.

Commit log entry:
Code:
----------------------------
revision 1.1
date: 2019/05/21 22:40:06;  author: jsg;  state: Exp;  commitid: bbJhylodHLWDncc6;
add amdgpu from linux 4.19.44 for recent AMD Radeon parts

committing now so this can be worked on in tree

Thanks to the OpenBSD Foundation for sponsoring this work and kettenis@
for helping.
=============================================================================

Last edited by jggimi; 05-23-2019 at 05:05 AM. Reason: added source, commit log entry, and typos. Yes, I added typos.
 
Old 05-23-2019, 05:47 AM   #50
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Heh... that's one of the hazards of porting Linux bloat code - and what is effectively a vendor driver focused primarily on 3D rendering / acceleration - my understanding of the ported Linux drm code is that it was the best solution when compared with the old and deprecated drivers in userspace solution.
 
Old 05-23-2019, 09:46 AM   #51
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Slackware
Posts: 7,342

Rep: Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746
Quote:
Originally Posted by cynwulf View Post
For example, have you looked at RAM usage on e.g. OpenBSD, NetBSD, FreeBSD compared to a Linux system with similar configuration and the Xfce desktop?
I have my experience and a bit of data. At the moment I'm dual booting Slackware64-current and OpenBSD 6.5 on my Dell Optiplex 990. The unit has an i7 CPU @ 3.4 GHz with 8 GB RAM. Both installations are running XFCE. Here are two screenshots taken of top after the unit boots up in OpenBSD and in Slackware. There are some differences in memory usage with XFCE for OpenBSD and Slackware.
Attached Thumbnails
Click image for larger version

Name:	Screenshot_2019-05-23_07-21-17.jpg
Views:	31
Size:	128.9 KB
ID:	30624   Click image for larger version

Name:	snapshot1(1).jpg
Views:	28
Size:	124.0 KB
ID:	30625  
 
Old 05-23-2019, 11:25 AM   #52
cynwulf
Senior Member
 
Registered: Apr 2005
Posts: 2,727

Rep: Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367Reputation: 2367
Due to the differences between GNU top(8) and OpenBSD's top(8), a comparison between ps(1) output for both OS might be more useful, complete and readable but will still be an apples and oranges comparison.

You have to consider a different compiler (llvm/clang) and differences in memory management, etc.

Many ports are compiled with pledge(2) and unveil(2) - I don't know enough about these to know if they - or similar - add any "overhead"?
 
1 members found this post helpful.
Old 05-23-2019, 11:58 AM   #53
jggimi
Member
 
Registered: Jan 2016
Distribution: None. Just OpenBSD.
Posts: 289

Rep: Reputation: 169Reputation: 169
Quote:
Originally Posted by cynwulf View Post
Many ports are compiled with pledge(2) and unveil(2) - I don't know enough about these to know if they - or similar - add any "overhead"?
Excepting Chromium, which added a module to support --enable-unveil and --disable-unveil, the additional code is simply making syscalls at the appropriate points in program flow. As few as one syscall, sometimes several more, depending on application complexity. I added 9 pledge(2) syscalls to archivers/p7zip, when I was its maintainer. It's quite complex ... but the pledges are not.

At this time, there are 94 pledged ports out of 8968 in the tree, which is just over 1%.
 
2 members found this post helpful.
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Antergos – Best Arch based distro for beginners, whoever want to taste arch, give a try LXer Syndicated Linux News 1 05-24-2021 08:13 AM
Wanting to give Arch a try, but having installation issues bret381 Arch 9 02-22-2010 05:25 PM
Which variant of Linux would be best for me? rob92110 Linux - Newbie 13 05-21-2008 09:15 AM
A slacker's perspective: which BSD for learning? randomsel Slackware 11 04-07-2008 02:15 AM
:Pengy: Linux and/or BSD variant on an old mac? cmack Linux - General 2 08-09-2003 01:30 AM

LinuxQuestions.org > Forums > Other *NIX Forums > *BSD

All times are GMT -5. The time now is 08:00 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration